{"id":"6a7be00094f5e908026e06d66f95acb8","_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.1.0) (interfaces/draft-IERC6093.sol)\npragma solidity ^0.8.20;\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.0.0) (interfaces/IERC5267.sol)\n\npragma solidity ^0.8.20;\n\ninterface IERC5267 {\n    /**\n     * @dev MAY be emitted to signal that the domain could have changed.\n     */\n    event EIP712DomainChanged();\n\n    /**\n     * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712\n     * signature.\n     */\n    function eip712Domain()\n        external\n        view\n        returns (\n            bytes1 fields,\n            string memory name,\n            string memory version,\n            uint256 chainId,\n            address verifyingContract,\n            bytes32 salt,\n            uint256[] memory extensions\n        );\n}\n"},"@openzeppelin/contracts/token/ERC20/ERC20.sol":{"content":"// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.3.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    /**\n     * @dev See {IERC20-totalSupply}.\n     */\n    function totalSupply() public view virtual returns (uint256) {\n        return _totalSupply;\n    }\n\n    /**\n     * @dev See {IERC20-balanceOf}.\n     */\n    function balanceOf(address account) public view virtual returns (uint256) {\n        return _balances[account];\n    }\n\n    /**\n     * @dev See {IERC20-transfer}.\n     *\n     * Requirements:\n     *\n     * - `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    /**\n     * @dev See {IERC20-allowance}.\n     */\n    function allowance(address owner, address spender) public view virtual returns (uint256) {\n        return _allowances[owner][spender];\n    }\n\n    /**\n     * @dev See {IERC20-approve}.\n     *\n     * 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.1.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    /**\n     * @inheritdoc IERC20Permit\n     */\n    function permit(\n        address owner,\n        address spender,\n        uint256 value,\n        uint256 deadline,\n        uint8 v,\n        bytes32 r,\n        bytes32 s\n    ) public virtual {\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    /**\n     * @inheritdoc IERC20Permit\n     */\n    function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) {\n        return super.nonces(owner);\n    }\n\n    /**\n     * @inheritdoc IERC20Permit\n     */\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.1.0) (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the 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.1.0) (token/ERC20/extensions/IERC20Permit.sol)\n\npragma solidity ^0.8.20;\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.1.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.20;\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.3.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    /**\n     * @inheritdoc IERC5267\n     */\n    function eip712Domain()\n        public\n        view\n        virtual\n        returns (\n            bytes1 fields,\n            string memory name,\n            string memory version,\n            uint256 chainId,\n            address verifyingContract,\n            bytes32 salt,\n            uint256[] memory extensions\n        )\n    {\n        return (\n            hex\"0f\", // 01111\n            _EIP712Name(),\n            _EIP712Version(),\n            block.chainid,\n            address(this),\n            bytes32(0),\n            new uint256[](0)\n        );\n    }\n\n    /**\n     * @dev The name parameter for the EIP712 domain.\n     *\n     * NOTE: By default this function reads _name which is an immutable value.\n     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function _EIP712Name() internal view returns (string memory) {\n        return _name.toStringWithFallback(_nameFallback);\n    }\n\n    /**\n     * @dev The version parameter for the EIP712 domain.\n     *\n     * NOTE: By default this function reads _version which is an immutable value.\n     * It only reads from storage if necessary (in case the value is too large to fit in a ShortString).\n     */\n    // solhint-disable-next-line func-name-mixedcase\n    function _EIP712Version() internal view returns (string memory) {\n        return _version.toStringWithFallback(_versionFallback);\n    }\n}\n"},"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol":{"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.1.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    /**\n     * @dev See {IERC165-supportsInterface}.\n     */\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.1.0) (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.20;\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.3.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(buffer, add(32, 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(buffer, add(0x20, offset)))\n        }\n    }\n}\n"},"contracts/Create3.sol":{"content":"// SPDX-License-Identifier: AGPL-3.0-only\r\n\r\npragma solidity >=0.8.0 <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.28;\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 NewUnwrapper(string witUnwrapper);\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    }\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 totalReserve() external view returns (uint256);\r\n    function totalUnwraps() external view returns (uint256);\r\n    \r\n    function witCustodian() external view returns (string memory);\r\n    function witUnwrapper() external view returns (string memory);\r\n    \r\n    function witOracleEstimateWrappingFee(uint256) external view returns (uint256);\r\n    function witOracleProofOfReserveRadonBytecode() external view returns (bytes memory);\r\n    function witOracleQuerySettings() external view returns (WitOracleSettings memory);\r\n    \r\n    /// --- Authoritative methods -------------------------------------------------------------------------------------\r\n    function settleWitOracleSettings(WitOracleSettings calldata) external;\r\n    function settleWitRpcProviders(string[] calldata) external;\r\n    function settleWitUnwrapper(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.28;\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    \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 __witCustodian;\r\n    bytes32 internal immutable __witCustodianBech32Hash;\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        __witCustodian = Witnet.fromBech32(_witCustodianBech32, block.chainid == _CANONICAL_CHAIN_ID);\r\n        __witCustodianBech32Hash = 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 _witUnwrapperBech32\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 / 5, \r\n            unitaryRewardNanowits: _WIT_ORACLE_QUERIABLE_CONSUMER_MIN_UNITARY_REWARD\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        __settleWitUnwrapper(_witUnwrapperBech32);\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 external 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 totalReserve() 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 witCustodian() override public view returns (string memory) {\r\n        return __witCustodian.toBech32(block.chainid == _CANONICAL_CHAIN_ID);\r\n    }\r\n\r\n    function witUnwrapper() override public view returns (string memory) {\r\n        return __storage().witUnwrapper.toBech32(block.chainid == _CANONICAL_CHAIN_ID);\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 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 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 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        );\r\n        __storage().witOracleQuerySettings = _settings;\r\n    }\r\n\r\n    function settleWitRpcProviders(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().witUnwrapper.toBech32(block.chainid == _CANONICAL_CHAIN_ID)\r\n        );\r\n    }\r\n\r\n    function settleWitUnwrapper(string calldata _witUnwrapperBech32)\r\n        external\r\n        onlyCurator\r\n    {\r\n        __settleWitUnwrapper(_witUnwrapperBech32);\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(__witCustodian),\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)) == __witCustodianBech32Hash,\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 _witUnwrapperBech32\r\n        )\r\n        internal\r\n    {    \r\n        string[] memory _commonArgs = new string[](2);\r\n        _commonArgs[0] = witCustodian();\r\n        _commonArgs[1] = _witUnwrapperBech32;\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 __settleWitUnwrapper(string memory _witUnwrapperBech32)\r\n        internal\r\n    {\r\n        require(\r\n            keccak256(bytes(_witUnwrapperBech32)) != __witCustodianBech32Hash,\r\n            \"unacceptable unwrapper\"\r\n        );\r\n        emit NewUnwrapper(_witUnwrapperBech32);\r\n        __storage().witUnwrapper = Witnet.fromBech32(_witUnwrapperBech32, block.chainid == _CANONICAL_CHAIN_ID);\r\n        __formallyVerifyRadonAssets(\r\n            __storage().witOracleCrossChainRpcProviders,\r\n            _witUnwrapperBech32\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.28;\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.28;\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 = 185_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        Witnet.Address witUnwrapper;\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        // Also increase the burnable supply, only if the VTT's actual timestamp is greater than the 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: _WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_GAS_LIMIT\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.28;\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":"shanghai","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":"shanghai","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.8",".20"],"nodeType":"PragmaDirective","src":"107:24:5"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC5267","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":673,"linearizedBaseContracts":[673],"name":"IERC5267","nameLocation":"143:8:5","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":651,"nodeType":"StructuredDocumentation","src":"158:84:5","text":" @dev MAY be emitted to signal that the domain could have changed."},"eventSelector":"0a6387c9ea3628b88a633bb4f3b151770f70085117a15f9bf3787cda53f13d31","id":653,"name":"EIP712DomainChanged","nameLocation":"253:19:5","nodeType":"EventDefinition","parameters":{"id":652,"nodeType":"ParameterList","parameters":[],"src":"272:2:5"},"src":"247:28:5"},{"documentation":{"id":654,"nodeType":"StructuredDocumentation","src":"281: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":"435:12:5","nodeType":"FunctionDefinition","parameters":{"id":655,"nodeType":"ParameterList","parameters":[],"src":"447:2:5"},"returnParameters":{"id":671,"nodeType":"ParameterList","parameters":[{"constant":false,"id":657,"mutability":"mutable","name":"fields","nameLocation":"517:6:5","nodeType":"VariableDeclaration","scope":672,"src":"510:13:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":656,"name":"bytes1","nodeType":"ElementaryTypeName","src":"510:6:5","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":659,"mutability":"mutable","name":"name","nameLocation":"551:4:5","nodeType":"VariableDeclaration","scope":672,"src":"537:18:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":658,"name":"string","nodeType":"ElementaryTypeName","src":"537:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":661,"mutability":"mutable","name":"version","nameLocation":"583:7:5","nodeType":"VariableDeclaration","scope":672,"src":"569:21:5","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":660,"name":"string","nodeType":"ElementaryTypeName","src":"569:6:5","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":663,"mutability":"mutable","name":"chainId","nameLocation":"612:7:5","nodeType":"VariableDeclaration","scope":672,"src":"604:15:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":662,"name":"uint256","nodeType":"ElementaryTypeName","src":"604:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":665,"mutability":"mutable","name":"verifyingContract","nameLocation":"641:17:5","nodeType":"VariableDeclaration","scope":672,"src":"633:25:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":664,"name":"address","nodeType":"ElementaryTypeName","src":"633:7:5","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":667,"mutability":"mutable","name":"salt","nameLocation":"680:4:5","nodeType":"VariableDeclaration","scope":672,"src":"672:12:5","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":666,"name":"bytes32","nodeType":"ElementaryTypeName","src":"672:7:5","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":670,"mutability":"mutable","name":"extensions","nameLocation":"715:10:5","nodeType":"VariableDeclaration","scope":672,"src":"698: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":"698:7:5","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":669,"nodeType":"ArrayTypeName","src":"698:9:5","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"496:239:5"},"scope":673,"src":"426:310:5","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":674,"src":"133:605:5","usedErrors":[],"usedEvents":[653]}],"src":"107:632: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",".20"],"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":"2891:36:7","statements":[{"expression":{"id":895,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":841,"src":"2908:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":894,"id":896,"nodeType":"Return","src":"2901:19:7"}]},"documentation":{"id":890,"nodeType":"StructuredDocumentation","src":"2776:49:7","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":898,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"2839:11:7","nodeType":"FunctionDefinition","parameters":{"id":891,"nodeType":"ParameterList","parameters":[],"src":"2850:2:7"},"returnParameters":{"id":894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":893,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":898,"src":"2882:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":892,"name":"uint256","nodeType":"ElementaryTypeName","src":"2882:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2881:9:7"},"scope":1325,"src":"2830:97:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1360],"body":{"id":910,"nodeType":"Block","src":"3059:42:7","statements":[{"expression":{"baseExpression":{"id":906,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":833,"src":"3076: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":"3086:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3076:18:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":905,"id":909,"nodeType":"Return","src":"3069:25:7"}]},"documentation":{"id":899,"nodeType":"StructuredDocumentation","src":"2933:47:7","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":911,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"2994:9:7","nodeType":"FunctionDefinition","parameters":{"id":902,"nodeType":"ParameterList","parameters":[{"constant":false,"id":901,"mutability":"mutable","name":"account","nameLocation":"3012:7:7","nodeType":"VariableDeclaration","scope":911,"src":"3004:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":900,"name":"address","nodeType":"ElementaryTypeName","src":"3004:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3003:17:7"},"returnParameters":{"id":905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":911,"src":"3050:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":903,"name":"uint256","nodeType":"ElementaryTypeName","src":"3050:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3049:9:7"},"scope":1325,"src":"2985:116:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1370],"body":{"id":934,"nodeType":"Block","src":"3371:103:7","statements":[{"assignments":[922],"declarations":[{"constant":false,"id":922,"mutability":"mutable","name":"owner","nameLocation":"3389:5:7","nodeType":"VariableDeclaration","scope":934,"src":"3381:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":921,"name":"address","nodeType":"ElementaryTypeName","src":"3381: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":"3397: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":"3397:12:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"3381:28:7"},{"expression":{"arguments":[{"id":927,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":922,"src":"3429:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":928,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":914,"src":"3436:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":929,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":916,"src":"3440: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":"3419: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":"3419:27:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":931,"nodeType":"ExpressionStatement","src":"3419:27:7"},{"expression":{"hexValue":"74727565","id":932,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"3463:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":920,"id":933,"nodeType":"Return","src":"3456:11:7"}]},"documentation":{"id":912,"nodeType":"StructuredDocumentation","src":"3107: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":"3305:8:7","nodeType":"FunctionDefinition","parameters":{"id":917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":914,"mutability":"mutable","name":"to","nameLocation":"3322:2:7","nodeType":"VariableDeclaration","scope":935,"src":"3314:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":913,"name":"address","nodeType":"ElementaryTypeName","src":"3314:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":916,"mutability":"mutable","name":"value","nameLocation":"3334:5:7","nodeType":"VariableDeclaration","scope":935,"src":"3326:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":915,"name":"uint256","nodeType":"ElementaryTypeName","src":"3326:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3313:27:7"},"returnParameters":{"id":920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":919,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":935,"src":"3365:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":918,"name":"bool","nodeType":"ElementaryTypeName","src":"3365:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"3364:6:7"},"scope":1325,"src":"3296:178:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1380],"body":{"id":951,"nodeType":"Block","src":"3621:51:7","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":945,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":839,"src":"3638: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":"3650:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3638: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":"3657:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3638:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":944,"id":950,"nodeType":"Return","src":"3631:34:7"}]},"documentation":{"id":936,"nodeType":"StructuredDocumentation","src":"3480:47:7","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":952,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"3541:9:7","nodeType":"FunctionDefinition","parameters":{"id":941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":938,"mutability":"mutable","name":"owner","nameLocation":"3559:5:7","nodeType":"VariableDeclaration","scope":952,"src":"3551:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":937,"name":"address","nodeType":"ElementaryTypeName","src":"3551:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":940,"mutability":"mutable","name":"spender","nameLocation":"3574:7:7","nodeType":"VariableDeclaration","scope":952,"src":"3566:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":939,"name":"address","nodeType":"ElementaryTypeName","src":"3566:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3550:32:7"},"returnParameters":{"id":944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":943,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":952,"src":"3612:7:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":942,"name":"uint256","nodeType":"ElementaryTypeName","src":"3612:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3611:9:7"},"scope":1325,"src":"3532:140:7","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1390],"body":{"id":975,"nodeType":"Block","src":"4058:107:7","statements":[{"assignments":[963],"declarations":[{"constant":false,"id":963,"mutability":"mutable","name":"owner","nameLocation":"4076:5:7","nodeType":"VariableDeclaration","scope":975,"src":"4068:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":962,"name":"address","nodeType":"ElementaryTypeName","src":"4068: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":"4084: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":"4084:12:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4068:28:7"},{"expression":{"arguments":[{"id":968,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":963,"src":"4115:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":969,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":955,"src":"4122:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":970,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":957,"src":"4131: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":"4106: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":"4106:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":972,"nodeType":"ExpressionStatement","src":"4106:31:7"},{"expression":{"hexValue":"74727565","id":973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4154:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":961,"id":974,"nodeType":"Return","src":"4147:11:7"}]},"documentation":{"id":953,"nodeType":"StructuredDocumentation","src":"3678: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":"3988:7:7","nodeType":"FunctionDefinition","parameters":{"id":958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":955,"mutability":"mutable","name":"spender","nameLocation":"4004:7:7","nodeType":"VariableDeclaration","scope":976,"src":"3996:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":954,"name":"address","nodeType":"ElementaryTypeName","src":"3996:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":957,"mutability":"mutable","name":"value","nameLocation":"4021:5:7","nodeType":"VariableDeclaration","scope":976,"src":"4013:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":956,"name":"uint256","nodeType":"ElementaryTypeName","src":"4013:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3995:32:7"},"returnParameters":{"id":961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":960,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":976,"src":"4052:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":959,"name":"bool","nodeType":"ElementaryTypeName","src":"4052:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4051:6:7"},"scope":1325,"src":"3979:186:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1402],"body":{"id":1007,"nodeType":"Block","src":"4850:151:7","statements":[{"assignments":[989],"declarations":[{"constant":false,"id":989,"mutability":"mutable","name":"spender","nameLocation":"4868:7:7","nodeType":"VariableDeclaration","scope":1007,"src":"4860:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":988,"name":"address","nodeType":"ElementaryTypeName","src":"4860: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":"4878: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":"4878:12:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"4860:30:7"},{"expression":{"arguments":[{"id":994,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"4916:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":995,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":989,"src":"4922:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":996,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"4931: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":"4900: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":"4900:37:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":998,"nodeType":"ExpressionStatement","src":"4900:37:7"},{"expression":{"arguments":[{"id":1000,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":979,"src":"4957:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1001,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":981,"src":"4963:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1002,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":983,"src":"4967: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":"4947: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":"4947:26:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1004,"nodeType":"ExpressionStatement","src":"4947:26:7"},{"expression":{"hexValue":"74727565","id":1005,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"4990:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":987,"id":1006,"nodeType":"Return","src":"4983:11:7"}]},"documentation":{"id":977,"nodeType":"StructuredDocumentation","src":"4171: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":"4766:12:7","nodeType":"FunctionDefinition","parameters":{"id":984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":979,"mutability":"mutable","name":"from","nameLocation":"4787:4:7","nodeType":"VariableDeclaration","scope":1008,"src":"4779:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":978,"name":"address","nodeType":"ElementaryTypeName","src":"4779:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":981,"mutability":"mutable","name":"to","nameLocation":"4801:2:7","nodeType":"VariableDeclaration","scope":1008,"src":"4793:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":980,"name":"address","nodeType":"ElementaryTypeName","src":"4793:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":983,"mutability":"mutable","name":"value","nameLocation":"4813:5:7","nodeType":"VariableDeclaration","scope":1008,"src":"4805:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":982,"name":"uint256","nodeType":"ElementaryTypeName","src":"4805:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4778:41:7"},"returnParameters":{"id":987,"nodeType":"ParameterList","parameters":[{"constant":false,"id":986,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1008,"src":"4844:4:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":985,"name":"bool","nodeType":"ElementaryTypeName","src":"4844:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4843:6:7"},"scope":1325,"src":"4757:244:7","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":1054,"nodeType":"Block","src":"5443: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":"5457: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":"5473: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":"5465:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1019,"name":"address","nodeType":"ElementaryTypeName","src":"5465:7:7","typeDescriptions":{}}},"id":1022,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5465:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5457:18:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1032,"nodeType":"IfStatement","src":"5453:86:7","trueBody":{"id":1031,"nodeType":"Block","src":"5477:62:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1027,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5525: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":"5517:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1025,"name":"address","nodeType":"ElementaryTypeName","src":"5517:7:7","typeDescriptions":{}}},"id":1028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5517: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":"5498: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":"5498:30:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1030,"nodeType":"RevertStatement","src":"5491: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":"5552: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":"5566: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":"5558:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1034,"name":"address","nodeType":"ElementaryTypeName","src":"5558:7:7","typeDescriptions":{}}},"id":1037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5558:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5552:16:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1047,"nodeType":"IfStatement","src":"5548:86:7","trueBody":{"id":1046,"nodeType":"Block","src":"5570:64:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5620: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":"5612:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1040,"name":"address","nodeType":"ElementaryTypeName","src":"5612:7:7","typeDescriptions":{}}},"id":1043,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5612: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":"5591: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":"5591:32:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1045,"nodeType":"RevertStatement","src":"5584:39:7"}]}},{"expression":{"arguments":[{"id":1049,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1011,"src":"5651:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1050,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1013,"src":"5657:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1051,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1015,"src":"5661: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":"5643: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":"5643:24:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1053,"nodeType":"ExpressionStatement","src":"5643:24:7"}]},"documentation":{"id":1009,"nodeType":"StructuredDocumentation","src":"5007: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":"5383:9:7","nodeType":"FunctionDefinition","parameters":{"id":1016,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1011,"mutability":"mutable","name":"from","nameLocation":"5401:4:7","nodeType":"VariableDeclaration","scope":1055,"src":"5393:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1010,"name":"address","nodeType":"ElementaryTypeName","src":"5393:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1013,"mutability":"mutable","name":"to","nameLocation":"5415:2:7","nodeType":"VariableDeclaration","scope":1055,"src":"5407:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1012,"name":"address","nodeType":"ElementaryTypeName","src":"5407:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1015,"mutability":"mutable","name":"value","nameLocation":"5427:5:7","nodeType":"VariableDeclaration","scope":1055,"src":"5419:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1014,"name":"uint256","nodeType":"ElementaryTypeName","src":"5419:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5392:41:7"},"returnParameters":{"id":1017,"nodeType":"ParameterList","parameters":[],"src":"5443:0:7"},"scope":1325,"src":"5374:300:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1131,"nodeType":"Block","src":"6064: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":"6078: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":"6094: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":"6086:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1066,"name":"address","nodeType":"ElementaryTypeName","src":"6086:7:7","typeDescriptions":{}}},"id":1069,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6086:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6078:18:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1102,"nodeType":"Block","src":"6252:362:7","statements":[{"assignments":[1077],"declarations":[{"constant":false,"id":1077,"mutability":"mutable","name":"fromBalance","nameLocation":"6274:11:7","nodeType":"VariableDeclaration","scope":1102,"src":"6266:19:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1076,"name":"uint256","nodeType":"ElementaryTypeName","src":"6266:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1081,"initialValue":{"baseExpression":{"id":1078,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":833,"src":"6288: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":"6298:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6288:15:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6266: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":"6321:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1083,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"6335:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6321:19:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1092,"nodeType":"IfStatement","src":"6317:115:7","trueBody":{"id":1091,"nodeType":"Block","src":"6342:90:7","statements":[{"errorCall":{"arguments":[{"id":1086,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1058,"src":"6392:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1087,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1077,"src":"6398:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1088,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"6411: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":"6367: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":"6367:50:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1090,"nodeType":"RevertStatement","src":"6360:57:7"}]}},{"id":1101,"nodeType":"UncheckedBlock","src":"6445: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":"6552: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":"6562:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"6552: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":"6570:11:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1097,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"6584:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6570:19:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6552:37:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1100,"nodeType":"ExpressionStatement","src":"6552:37:7"}]}]},"id":1103,"nodeType":"IfStatement","src":"6074:540:7","trueBody":{"id":1075,"nodeType":"Block","src":"6098: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":"6214:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1072,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"6230:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6214:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1074,"nodeType":"ExpressionStatement","src":"6214: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":"6628: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":"6642: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":"6634:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1105,"name":"address","nodeType":"ElementaryTypeName","src":"6634:7:7","typeDescriptions":{}}},"id":1108,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6634:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6628:16:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1123,"nodeType":"Block","src":"6843:206:7","statements":[{"id":1122,"nodeType":"UncheckedBlock","src":"6857: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":"7002: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":"7012:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7002:13:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":1119,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"7019:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7002:22:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1121,"nodeType":"ExpressionStatement","src":"7002:22:7"}]}]},"id":1124,"nodeType":"IfStatement","src":"6624:425:7","trueBody":{"id":1115,"nodeType":"Block","src":"6646:191:7","statements":[{"id":1114,"nodeType":"UncheckedBlock","src":"6660: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":"6791:12:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":1111,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"6807:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6791:21:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1113,"nodeType":"ExpressionStatement","src":"6791:21:7"}]}]}},{"eventCall":{"arguments":[{"id":1126,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1058,"src":"7073:4:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1127,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1060,"src":"7079:2:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1128,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1062,"src":"7083: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":"7064: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":"7064:25:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1130,"nodeType":"EmitStatement","src":"7059:30:7"}]},"documentation":{"id":1056,"nodeType":"StructuredDocumentation","src":"5680: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":"5998:7:7","nodeType":"FunctionDefinition","parameters":{"id":1063,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1058,"mutability":"mutable","name":"from","nameLocation":"6014:4:7","nodeType":"VariableDeclaration","scope":1132,"src":"6006:12:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1057,"name":"address","nodeType":"ElementaryTypeName","src":"6006:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1060,"mutability":"mutable","name":"to","nameLocation":"6028:2:7","nodeType":"VariableDeclaration","scope":1132,"src":"6020:10:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1059,"name":"address","nodeType":"ElementaryTypeName","src":"6020:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1062,"mutability":"mutable","name":"value","nameLocation":"6040:5:7","nodeType":"VariableDeclaration","scope":1132,"src":"6032:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1061,"name":"uint256","nodeType":"ElementaryTypeName","src":"6032:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6005:41:7"},"returnParameters":{"id":1064,"nodeType":"ParameterList","parameters":[],"src":"6064:0:7"},"scope":1325,"src":"5989:1107:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1164,"nodeType":"Block","src":"7495: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":"7509: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":"7528: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":"7520:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1141,"name":"address","nodeType":"ElementaryTypeName","src":"7520:7:7","typeDescriptions":{}}},"id":1144,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7520:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"7509:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1154,"nodeType":"IfStatement","src":"7505:91:7","trueBody":{"id":1153,"nodeType":"Block","src":"7532:64:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1149,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7582: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":"7574:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1147,"name":"address","nodeType":"ElementaryTypeName","src":"7574:7:7","typeDescriptions":{}}},"id":1150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7574: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":"7553: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":"7553:32:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1152,"nodeType":"RevertStatement","src":"7546:39:7"}]}},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":1158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7621: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":"7613:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1156,"name":"address","nodeType":"ElementaryTypeName","src":"7613:7:7","typeDescriptions":{}}},"id":1159,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7613:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1160,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1135,"src":"7625:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1161,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1137,"src":"7634: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":"7605: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":"7605:35:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1163,"nodeType":"ExpressionStatement","src":"7605:35:7"}]},"documentation":{"id":1133,"nodeType":"StructuredDocumentation","src":"7102: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":"7448:5:7","nodeType":"FunctionDefinition","parameters":{"id":1138,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1135,"mutability":"mutable","name":"account","nameLocation":"7462:7:7","nodeType":"VariableDeclaration","scope":1165,"src":"7454:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1134,"name":"address","nodeType":"ElementaryTypeName","src":"7454:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1137,"mutability":"mutable","name":"value","nameLocation":"7479:5:7","nodeType":"VariableDeclaration","scope":1165,"src":"7471:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1136,"name":"uint256","nodeType":"ElementaryTypeName","src":"7471:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7453:32:7"},"returnParameters":{"id":1139,"nodeType":"ParameterList","parameters":[],"src":"7495:0:7"},"scope":1325,"src":"7439:208:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1197,"nodeType":"Block","src":"8021: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":"8035: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":"8054: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":"8046:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1174,"name":"address","nodeType":"ElementaryTypeName","src":"8046:7:7","typeDescriptions":{}}},"id":1177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8046:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"8035:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1187,"nodeType":"IfStatement","src":"8031:89:7","trueBody":{"id":1186,"nodeType":"Block","src":"8058:62:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"8106: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":"8098:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1180,"name":"address","nodeType":"ElementaryTypeName","src":"8098:7:7","typeDescriptions":{}}},"id":1183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8098: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":"8079: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":"8079:30:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1185,"nodeType":"RevertStatement","src":"8072:37:7"}]}},{"expression":{"arguments":[{"id":1189,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1168,"src":"8137: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":"8154: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":"8146:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1190,"name":"address","nodeType":"ElementaryTypeName","src":"8146:7:7","typeDescriptions":{}}},"id":1193,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8146:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1194,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1170,"src":"8158: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":"8129: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":"8129:35:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1196,"nodeType":"ExpressionStatement","src":"8129:35:7"}]},"documentation":{"id":1166,"nodeType":"StructuredDocumentation","src":"7653: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":"7974:5:7","nodeType":"FunctionDefinition","parameters":{"id":1171,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1168,"mutability":"mutable","name":"account","nameLocation":"7988:7:7","nodeType":"VariableDeclaration","scope":1198,"src":"7980:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1167,"name":"address","nodeType":"ElementaryTypeName","src":"7980:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1170,"mutability":"mutable","name":"value","nameLocation":"8005:5:7","nodeType":"VariableDeclaration","scope":1198,"src":"7997:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1169,"name":"uint256","nodeType":"ElementaryTypeName","src":"7997:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7979:32:7"},"returnParameters":{"id":1172,"nodeType":"ParameterList","parameters":[],"src":"8021:0:7"},"scope":1325,"src":"7965:206:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1215,"nodeType":"Block","src":"8781:54:7","statements":[{"expression":{"arguments":[{"id":1209,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1201,"src":"8800:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1210,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1203,"src":"8807:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1211,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1205,"src":"8816: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":"8823: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":"8791: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":"8791:37:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1214,"nodeType":"ExpressionStatement","src":"8791:37:7"}]},"documentation":{"id":1199,"nodeType":"StructuredDocumentation","src":"8177: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":"8716:8:7","nodeType":"FunctionDefinition","parameters":{"id":1206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1201,"mutability":"mutable","name":"owner","nameLocation":"8733:5:7","nodeType":"VariableDeclaration","scope":1216,"src":"8725:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1200,"name":"address","nodeType":"ElementaryTypeName","src":"8725:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1203,"mutability":"mutable","name":"spender","nameLocation":"8748:7:7","nodeType":"VariableDeclaration","scope":1216,"src":"8740:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1202,"name":"address","nodeType":"ElementaryTypeName","src":"8740:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1205,"mutability":"mutable","name":"value","nameLocation":"8765:5:7","nodeType":"VariableDeclaration","scope":1216,"src":"8757:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1204,"name":"uint256","nodeType":"ElementaryTypeName","src":"8757:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8724:47:7"},"returnParameters":{"id":1207,"nodeType":"ParameterList","parameters":[],"src":"8781:0:7"},"scope":1325,"src":"8707:128:7","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1275,"nodeType":"Block","src":"9780: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":"9794: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":"9811: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":"9803:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1229,"name":"address","nodeType":"ElementaryTypeName","src":"9803:7:7","typeDescriptions":{}}},"id":1232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9803:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9794:19:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1242,"nodeType":"IfStatement","src":"9790:89:7","trueBody":{"id":1241,"nodeType":"Block","src":"9815:64:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9865: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":"9857:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1235,"name":"address","nodeType":"ElementaryTypeName","src":"9857:7:7","typeDescriptions":{}}},"id":1238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9857: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":"9836: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":"9836:32:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1240,"nodeType":"RevertStatement","src":"9829: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":"9892: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":"9911: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":"9903:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1244,"name":"address","nodeType":"ElementaryTypeName","src":"9903:7:7","typeDescriptions":{}}},"id":1247,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9903:10:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"9892:21:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1257,"nodeType":"IfStatement","src":"9888:90:7","trueBody":{"id":1256,"nodeType":"Block","src":"9915:63:7","statements":[{"errorCall":{"arguments":[{"arguments":[{"hexValue":"30","id":1252,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9964: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":"9956:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1250,"name":"address","nodeType":"ElementaryTypeName","src":"9956:7:7","typeDescriptions":{}}},"id":1253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9956: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":"9936: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":"9936:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1255,"nodeType":"RevertStatement","src":"9929: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":"9987: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":"9999:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"9987: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":"10006:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"9987:27:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1263,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1223,"src":"10017:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9987:35:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1265,"nodeType":"ExpressionStatement","src":"9987:35:7"},{"condition":{"id":1266,"name":"emitEvent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1225,"src":"10036:9:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1274,"nodeType":"IfStatement","src":"10032:76:7","trueBody":{"id":1273,"nodeType":"Block","src":"10047:61:7","statements":[{"eventCall":{"arguments":[{"id":1268,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1219,"src":"10075:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1269,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1221,"src":"10082:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1270,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1223,"src":"10091: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":"10066: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":"10066:31:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1272,"nodeType":"EmitStatement","src":"10061:36:7"}]}}]},"documentation":{"id":1217,"nodeType":"StructuredDocumentation","src":"8841: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":"9691:8:7","nodeType":"FunctionDefinition","parameters":{"id":1226,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1219,"mutability":"mutable","name":"owner","nameLocation":"9708:5:7","nodeType":"VariableDeclaration","scope":1276,"src":"9700:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1218,"name":"address","nodeType":"ElementaryTypeName","src":"9700:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1221,"mutability":"mutable","name":"spender","nameLocation":"9723:7:7","nodeType":"VariableDeclaration","scope":1276,"src":"9715:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1220,"name":"address","nodeType":"ElementaryTypeName","src":"9715:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1223,"mutability":"mutable","name":"value","nameLocation":"9740:5:7","nodeType":"VariableDeclaration","scope":1276,"src":"9732:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1222,"name":"uint256","nodeType":"ElementaryTypeName","src":"9732:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1225,"mutability":"mutable","name":"emitEvent","nameLocation":"9752:9:7","nodeType":"VariableDeclaration","scope":1276,"src":"9747:14:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1224,"name":"bool","nodeType":"ElementaryTypeName","src":"9747:4:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9699:63:7"},"returnParameters":{"id":1227,"nodeType":"ParameterList","parameters":[],"src":"9780:0:7"},"scope":1325,"src":"9682:432:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1323,"nodeType":"Block","src":"10485:387:7","statements":[{"assignments":[1287],"declarations":[{"constant":false,"id":1287,"mutability":"mutable","name":"currentAllowance","nameLocation":"10503:16:7","nodeType":"VariableDeclaration","scope":1323,"src":"10495:24:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1286,"name":"uint256","nodeType":"ElementaryTypeName","src":"10495:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1292,"initialValue":{"arguments":[{"id":1289,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1279,"src":"10532:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1290,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1281,"src":"10539: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":"10522: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":"10522:25:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10495: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":"10561: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":"10585:7:7","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1295,"name":"uint256","nodeType":"ElementaryTypeName","src":"10585:7:7","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":1294,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10580: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":"10580: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":"10594:3:7","memberName":"max","nodeType":"MemberAccess","src":"10580:17:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10561:36:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1322,"nodeType":"IfStatement","src":"10557:309:7","trueBody":{"id":1321,"nodeType":"Block","src":"10599: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":"10617:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1301,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1283,"src":"10636:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10617:24:7","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1310,"nodeType":"IfStatement","src":"10613:130:7","trueBody":{"id":1309,"nodeType":"Block","src":"10643:100:7","statements":[{"errorCall":{"arguments":[{"id":1304,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1281,"src":"10695:7:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1305,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1287,"src":"10704:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1306,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1283,"src":"10722: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":"10668: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":"10668:60:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1308,"nodeType":"RevertStatement","src":"10661:67:7"}]}},{"id":1320,"nodeType":"UncheckedBlock","src":"10756:100:7","statements":[{"expression":{"arguments":[{"id":1312,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1279,"src":"10793:5:7","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1313,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1281,"src":"10800: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":"10809:16:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1315,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1283,"src":"10828:5:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10809: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":"10835: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":"10784: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":"10784:57:7","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1319,"nodeType":"ExpressionStatement","src":"10784:57:7"}]}]}}]},"documentation":{"id":1277,"nodeType":"StructuredDocumentation","src":"10120: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":"10405:15:7","nodeType":"FunctionDefinition","parameters":{"id":1284,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1279,"mutability":"mutable","name":"owner","nameLocation":"10429:5:7","nodeType":"VariableDeclaration","scope":1324,"src":"10421:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1278,"name":"address","nodeType":"ElementaryTypeName","src":"10421:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1281,"mutability":"mutable","name":"spender","nameLocation":"10444:7:7","nodeType":"VariableDeclaration","scope":1324,"src":"10436:15:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1280,"name":"address","nodeType":"ElementaryTypeName","src":"10436:7:7","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1283,"mutability":"mutable","name":"value","nameLocation":"10461:5:7","nodeType":"VariableDeclaration","scope":1324,"src":"10453:13:7","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1282,"name":"uint256","nodeType":"ElementaryTypeName","src":"10453:7:7","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10420:47:7"},"returnParameters":{"id":1285,"nodeType":"ParameterList","parameters":[],"src":"10485:0:7"},"scope":1325,"src":"10396:476:7","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":1326,"src":"1106:9768:7","usedErrors":[685,690,695,704,709,714],"usedEvents":[1337,1346]}],"src":"105:10770: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.8",".20"],"nodeType":"PragmaDirective","src":"106:24:8"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":1328,"nodeType":"StructuredDocumentation","src":"132:71:8","text":" @dev Interface of the ERC-20 standard as defined in the ERC."},"fullyImplemented":false,"id":1403,"linearizedBaseContracts":[1403],"name":"IERC20","nameLocation":"214:6:8","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":1329,"nodeType":"StructuredDocumentation","src":"227: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":"396:8:8","nodeType":"EventDefinition","parameters":{"id":1336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1331,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"421:4:8","nodeType":"VariableDeclaration","scope":1337,"src":"405:20:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1330,"name":"address","nodeType":"ElementaryTypeName","src":"405:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1333,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"443:2:8","nodeType":"VariableDeclaration","scope":1337,"src":"427:18:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1332,"name":"address","nodeType":"ElementaryTypeName","src":"427:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1335,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"455:5:8","nodeType":"VariableDeclaration","scope":1337,"src":"447:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1334,"name":"uint256","nodeType":"ElementaryTypeName","src":"447:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"404:57:8"},"src":"390:72:8"},{"anonymous":false,"documentation":{"id":1338,"nodeType":"StructuredDocumentation","src":"468: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":"627:8:8","nodeType":"EventDefinition","parameters":{"id":1345,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1340,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"652:5:8","nodeType":"VariableDeclaration","scope":1346,"src":"636:21:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1339,"name":"address","nodeType":"ElementaryTypeName","src":"636:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1342,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"675:7:8","nodeType":"VariableDeclaration","scope":1346,"src":"659:23:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1341,"name":"address","nodeType":"ElementaryTypeName","src":"659:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1344,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"692:5:8","nodeType":"VariableDeclaration","scope":1346,"src":"684:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1343,"name":"uint256","nodeType":"ElementaryTypeName","src":"684:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"635:63:8"},"src":"621:78:8"},{"documentation":{"id":1347,"nodeType":"StructuredDocumentation","src":"705:65:8","text":" @dev Returns the value of tokens in existence."},"functionSelector":"18160ddd","id":1352,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"784:11:8","nodeType":"FunctionDefinition","parameters":{"id":1348,"nodeType":"ParameterList","parameters":[],"src":"795:2:8"},"returnParameters":{"id":1351,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1350,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1352,"src":"821:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1349,"name":"uint256","nodeType":"ElementaryTypeName","src":"821:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"820:9:8"},"scope":1403,"src":"775:55:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1353,"nodeType":"StructuredDocumentation","src":"836:71:8","text":" @dev Returns the value of tokens owned by `account`."},"functionSelector":"70a08231","id":1360,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"921:9:8","nodeType":"FunctionDefinition","parameters":{"id":1356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1355,"mutability":"mutable","name":"account","nameLocation":"939:7:8","nodeType":"VariableDeclaration","scope":1360,"src":"931:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1354,"name":"address","nodeType":"ElementaryTypeName","src":"931:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"930:17:8"},"returnParameters":{"id":1359,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1358,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1360,"src":"971:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1357,"name":"uint256","nodeType":"ElementaryTypeName","src":"971:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"970:9:8"},"scope":1403,"src":"912:68:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1361,"nodeType":"StructuredDocumentation","src":"986: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":"1213:8:8","nodeType":"FunctionDefinition","parameters":{"id":1366,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1363,"mutability":"mutable","name":"to","nameLocation":"1230:2:8","nodeType":"VariableDeclaration","scope":1370,"src":"1222:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1362,"name":"address","nodeType":"ElementaryTypeName","src":"1222:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1365,"mutability":"mutable","name":"value","nameLocation":"1242:5:8","nodeType":"VariableDeclaration","scope":1370,"src":"1234:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1364,"name":"uint256","nodeType":"ElementaryTypeName","src":"1234:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1221:27:8"},"returnParameters":{"id":1369,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1368,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1370,"src":"1267:4:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1367,"name":"bool","nodeType":"ElementaryTypeName","src":"1267:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1266:6:8"},"scope":1403,"src":"1204:69:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1371,"nodeType":"StructuredDocumentation","src":"1279: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":"1557:9:8","nodeType":"FunctionDefinition","parameters":{"id":1376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1373,"mutability":"mutable","name":"owner","nameLocation":"1575:5:8","nodeType":"VariableDeclaration","scope":1380,"src":"1567:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1372,"name":"address","nodeType":"ElementaryTypeName","src":"1567:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1375,"mutability":"mutable","name":"spender","nameLocation":"1590:7:8","nodeType":"VariableDeclaration","scope":1380,"src":"1582:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1374,"name":"address","nodeType":"ElementaryTypeName","src":"1582:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1566:32:8"},"returnParameters":{"id":1379,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1378,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1380,"src":"1622:7:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1377,"name":"uint256","nodeType":"ElementaryTypeName","src":"1622:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1621:9:8"},"scope":1403,"src":"1548:83:8","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1381,"nodeType":"StructuredDocumentation","src":"1637: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":"2318:7:8","nodeType":"FunctionDefinition","parameters":{"id":1386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1383,"mutability":"mutable","name":"spender","nameLocation":"2334:7:8","nodeType":"VariableDeclaration","scope":1390,"src":"2326:15:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1382,"name":"address","nodeType":"ElementaryTypeName","src":"2326:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1385,"mutability":"mutable","name":"value","nameLocation":"2351:5:8","nodeType":"VariableDeclaration","scope":1390,"src":"2343:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1384,"name":"uint256","nodeType":"ElementaryTypeName","src":"2343:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2325:32:8"},"returnParameters":{"id":1389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1388,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1390,"src":"2376:4:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1387,"name":"bool","nodeType":"ElementaryTypeName","src":"2376:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2375:6:8"},"scope":1403,"src":"2309:73:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1391,"nodeType":"StructuredDocumentation","src":"2388: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":"2699:12:8","nodeType":"FunctionDefinition","parameters":{"id":1398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1393,"mutability":"mutable","name":"from","nameLocation":"2720:4:8","nodeType":"VariableDeclaration","scope":1402,"src":"2712:12:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1392,"name":"address","nodeType":"ElementaryTypeName","src":"2712:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1395,"mutability":"mutable","name":"to","nameLocation":"2734:2:8","nodeType":"VariableDeclaration","scope":1402,"src":"2726:10:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1394,"name":"address","nodeType":"ElementaryTypeName","src":"2726:7:8","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1397,"mutability":"mutable","name":"value","nameLocation":"2746:5:8","nodeType":"VariableDeclaration","scope":1402,"src":"2738:13:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1396,"name":"uint256","nodeType":"ElementaryTypeName","src":"2738:7:8","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2711:41:8"},"returnParameters":{"id":1401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1400,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1402,"src":"2771:4:8","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1399,"name":"bool","nodeType":"ElementaryTypeName","src":"2771:4:8","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2770:6:8"},"scope":1403,"src":"2690:87:8","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":1404,"src":"204:2575:8","usedErrors":[],"usedEvents":[1337,1346]}],"src":"106:2674: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":"1872: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":"1886:5:9","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1892:9:9","memberName":"timestamp","nodeType":"MemberAccess","src":"1886:15:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1472,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1461,"src":"1904:8:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1886:26:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1479,"nodeType":"IfStatement","src":"1882:97:9","trueBody":{"id":1478,"nodeType":"Block","src":"1914:65:9","statements":[{"errorCall":{"arguments":[{"id":1475,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1461,"src":"1959: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":"1935: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":"1935:33:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1477,"nodeType":"RevertStatement","src":"1928:40:9"}]}},{"assignments":[1481],"declarations":[{"constant":false,"id":1481,"mutability":"mutable","name":"structHash","nameLocation":"1997:10:9","nodeType":"VariableDeclaration","scope":1528,"src":"1989:18:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1480,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1989: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":"2031:15:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1486,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1455,"src":"2048:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1487,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1457,"src":"2055:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1488,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1459,"src":"2064:5:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":1490,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1455,"src":"2081: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":"2071: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":"2071:16:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1492,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1461,"src":"2089: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":"2020:3:9","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":1484,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2024:6:9","memberName":"encode","nodeType":"MemberAccess","src":"2020: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":"2020: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":"2010: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":"2010:89:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"1989:110:9"},{"assignments":[1497],"declarations":[{"constant":false,"id":1497,"mutability":"mutable","name":"hash","nameLocation":"2118:4:9","nodeType":"VariableDeclaration","scope":1528,"src":"2110:12:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1496,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2110:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":1501,"initialValue":{"arguments":[{"id":1499,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1481,"src":"2142: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":"2125: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":"2125:28:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"2110:43:9"},{"assignments":[1503],"declarations":[{"constant":false,"id":1503,"mutability":"mutable","name":"signer","nameLocation":"2172:6:9","nodeType":"VariableDeclaration","scope":1528,"src":"2164:14:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1502,"name":"address","nodeType":"ElementaryTypeName","src":"2164: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":"2195:4:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1507,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1463,"src":"2201:1:9","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":1508,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1465,"src":"2204:1:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":1509,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1467,"src":"2207: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":"2181: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":"2187:7:9","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":3810,"src":"2181: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":"2181:28:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"2164: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":"2223:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":1513,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1455,"src":"2233:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2223:15:9","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1521,"nodeType":"IfStatement","src":"2219:88:9","trueBody":{"id":1520,"nodeType":"Block","src":"2240:67:9","statements":[{"errorCall":{"arguments":[{"id":1516,"name":"signer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1503,"src":"2282:6:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1517,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1455,"src":"2290: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":"2261: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":"2261:35:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":1519,"nodeType":"RevertStatement","src":"2254:42:9"}]}},{"expression":{"arguments":[{"id":1523,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1455,"src":"2326:5:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1524,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1457,"src":"2333:7:9","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1525,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1459,"src":"2342: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":"2317: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":"2317:31:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1527,"nodeType":"ExpressionStatement","src":"2317:31:9"}]},"documentation":{"id":1453,"nodeType":"StructuredDocumentation","src":"1635:43:9","text":" @inheritdoc IERC20Permit"},"functionSelector":"d505accf","id":1529,"implemented":true,"kind":"function","modifiers":[],"name":"permit","nameLocation":"1692:6:9","nodeType":"FunctionDefinition","parameters":{"id":1468,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1455,"mutability":"mutable","name":"owner","nameLocation":"1716:5:9","nodeType":"VariableDeclaration","scope":1529,"src":"1708:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1454,"name":"address","nodeType":"ElementaryTypeName","src":"1708:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1457,"mutability":"mutable","name":"spender","nameLocation":"1739:7:9","nodeType":"VariableDeclaration","scope":1529,"src":"1731:15:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1456,"name":"address","nodeType":"ElementaryTypeName","src":"1731:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1459,"mutability":"mutable","name":"value","nameLocation":"1764:5:9","nodeType":"VariableDeclaration","scope":1529,"src":"1756:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1458,"name":"uint256","nodeType":"ElementaryTypeName","src":"1756:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1461,"mutability":"mutable","name":"deadline","nameLocation":"1787:8:9","nodeType":"VariableDeclaration","scope":1529,"src":"1779:16:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1460,"name":"uint256","nodeType":"ElementaryTypeName","src":"1779:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1463,"mutability":"mutable","name":"v","nameLocation":"1811:1:9","nodeType":"VariableDeclaration","scope":1529,"src":"1805:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1462,"name":"uint8","nodeType":"ElementaryTypeName","src":"1805:5:9","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1465,"mutability":"mutable","name":"r","nameLocation":"1830:1:9","nodeType":"VariableDeclaration","scope":1529,"src":"1822:9:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1464,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1822:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1467,"mutability":"mutable","name":"s","nameLocation":"1849:1:9","nodeType":"VariableDeclaration","scope":1529,"src":"1841:9:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1466,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1841:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1698:158:9"},"returnParameters":{"id":1469,"nodeType":"ParameterList","parameters":[],"src":"1872:0:9"},"scope":1557,"src":"1683:672:9","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[1612,1676],"body":{"id":1545,"nodeType":"Block","src":"2509:43:9","statements":[{"expression":{"arguments":[{"id":1542,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1532,"src":"2539: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":"2526: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":"2532:6:9","memberName":"nonces","nodeType":"MemberAccess","referencedDeclaration":1676,"src":"2526: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":"2526:19:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1539,"id":1544,"nodeType":"Return","src":"2519:26:9"}]},"documentation":{"id":1530,"nodeType":"StructuredDocumentation","src":"2361:43:9","text":" @inheritdoc IERC20Permit"},"functionSelector":"7ecebe00","id":1546,"implemented":true,"kind":"function","modifiers":[],"name":"nonces","nameLocation":"2418:6:9","nodeType":"FunctionDefinition","overrides":{"id":1536,"nodeType":"OverrideSpecifier","overrides":[{"id":1534,"name":"IERC20Permit","nameLocations":["2469:12:9"],"nodeType":"IdentifierPath","referencedDeclaration":1619,"src":"2469:12:9"},{"id":1535,"name":"Nonces","nameLocations":["2483:6:9"],"nodeType":"IdentifierPath","referencedDeclaration":1717,"src":"2483:6:9"}],"src":"2460:30:9"},"parameters":{"id":1533,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1532,"mutability":"mutable","name":"owner","nameLocation":"2433:5:9","nodeType":"VariableDeclaration","scope":1546,"src":"2425:13:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1531,"name":"address","nodeType":"ElementaryTypeName","src":"2425:7:9","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2424:15:9"},"returnParameters":{"id":1539,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1538,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1546,"src":"2500:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1537,"name":"uint256","nodeType":"ElementaryTypeName","src":"2500:7:9","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2499:9:9"},"scope":1557,"src":"2409:143:9","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[1618],"body":{"id":1555,"nodeType":"Block","src":"2727:44:9","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":1552,"name":"_domainSeparatorV4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3983,"src":"2744: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":"2744:20:9","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":1551,"id":1554,"nodeType":"Return","src":"2737:27:9"}]},"documentation":{"id":1547,"nodeType":"StructuredDocumentation","src":"2558:43:9","text":" @inheritdoc IERC20Permit"},"functionSelector":"3644e515","id":1556,"implemented":true,"kind":"function","modifiers":[],"name":"DOMAIN_SEPARATOR","nameLocation":"2668:16:9","nodeType":"FunctionDefinition","parameters":{"id":1548,"nodeType":"ParameterList","parameters":[],"src":"2684:2:9"},"returnParameters":{"id":1551,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1550,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1556,"src":"2718:7:9","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1549,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2718:7:9","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"2717:9:9"},"scope":1557,"src":"2659:112:9","stateMutability":"view","virtual":true,"visibility":"external"}],"scope":1558,"src":"898:1875:9","usedErrors":[685,690,695,704,709,714,1434,1441,1659,1783,1785,3523,3528,3533],"usedEvents":[653,1337,1346]}],"src":"122:2652: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.8",".20"],"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.8",".20"],"nodeType":"PragmaDirective","src":"123:24:11"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20Permit","contractDependencies":[],"contractKind":"interface","documentation":{"id":1586,"nodeType":"StructuredDocumentation","src":"149: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":"2125:12:11","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":1587,"nodeType":"StructuredDocumentation","src":"2144: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":"3008:6:11","nodeType":"FunctionDefinition","parameters":{"id":1602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1589,"mutability":"mutable","name":"owner","nameLocation":"3032:5:11","nodeType":"VariableDeclaration","scope":1604,"src":"3024:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1588,"name":"address","nodeType":"ElementaryTypeName","src":"3024:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1591,"mutability":"mutable","name":"spender","nameLocation":"3055:7:11","nodeType":"VariableDeclaration","scope":1604,"src":"3047:15:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1590,"name":"address","nodeType":"ElementaryTypeName","src":"3047:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1593,"mutability":"mutable","name":"value","nameLocation":"3080:5:11","nodeType":"VariableDeclaration","scope":1604,"src":"3072:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1592,"name":"uint256","nodeType":"ElementaryTypeName","src":"3072:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1595,"mutability":"mutable","name":"deadline","nameLocation":"3103:8:11","nodeType":"VariableDeclaration","scope":1604,"src":"3095:16:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1594,"name":"uint256","nodeType":"ElementaryTypeName","src":"3095:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1597,"mutability":"mutable","name":"v","nameLocation":"3127:1:11","nodeType":"VariableDeclaration","scope":1604,"src":"3121:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":1596,"name":"uint8","nodeType":"ElementaryTypeName","src":"3121:5:11","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":1599,"mutability":"mutable","name":"r","nameLocation":"3146:1:11","nodeType":"VariableDeclaration","scope":1604,"src":"3138:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1598,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3138:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":1601,"mutability":"mutable","name":"s","nameLocation":"3165:1:11","nodeType":"VariableDeclaration","scope":1604,"src":"3157:9:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1600,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3157:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3014:158:11"},"returnParameters":{"id":1603,"nodeType":"ParameterList","parameters":[],"src":"3181:0:11"},"scope":1619,"src":"2999:183:11","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1605,"nodeType":"StructuredDocumentation","src":"3188: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":"3496:6:11","nodeType":"FunctionDefinition","parameters":{"id":1608,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1607,"mutability":"mutable","name":"owner","nameLocation":"3511:5:11","nodeType":"VariableDeclaration","scope":1612,"src":"3503:13:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1606,"name":"address","nodeType":"ElementaryTypeName","src":"3503:7:11","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3502:15:11"},"returnParameters":{"id":1611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1610,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1612,"src":"3541:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1609,"name":"uint256","nodeType":"ElementaryTypeName","src":"3541:7:11","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3540:9:11"},"scope":1619,"src":"3487:63:11","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1613,"nodeType":"StructuredDocumentation","src":"3556: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":"3751:16:11","nodeType":"FunctionDefinition","parameters":{"id":1614,"nodeType":"ParameterList","parameters":[],"src":"3767:2:11"},"returnParameters":{"id":1617,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1616,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1618,"src":"3793:7:11","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1615,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3793:7:11","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3792:9:11"},"scope":1619,"src":"3742:60:11","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":1620,"src":"2115:1689:11","usedErrors":[],"usedEvents":[]}],"src":"123:3682: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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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:561:17","statements":[{"id":2222,"nodeType":"UncheckedBlock","src":"1389:545: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:67:17","nodeType":"YulBlock","src":"1570:67:17","statements":[{"nativeSrc":"1588:35:17","nodeType":"YulAssignment","src":"1588:35:17","value":{"arguments":[{"name":"buffer","nativeSrc":"1599:6:17","nodeType":"YulIdentifier","src":"1599:6:17"},{"arguments":[{"kind":"number","nativeSrc":"1611:2:17","nodeType":"YulLiteral","src":"1611:2:17","type":"","value":"32"},{"name":"length","nativeSrc":"1615:6:17","nodeType":"YulIdentifier","src":"1615:6:17"}],"functionName":{"name":"add","nativeSrc":"1607:3:17","nodeType":"YulIdentifier","src":"1607:3:17"},"nativeSrc":"1607:15:17","nodeType":"YulFunctionCall","src":"1607:15:17"}],"functionName":{"name":"add","nativeSrc":"1595:3:17","nodeType":"YulIdentifier","src":"1595:3:17"},"nativeSrc":"1595:28:17","nodeType":"YulFunctionCall","src":"1595:28:17"},"variableNames":[{"name":"ptr","nativeSrc":"1588:3:17","nodeType":"YulIdentifier","src":"1588:3:17"}]}]},"evmVersion":"shanghai","externalReferences":[{"declaration":2194,"isOffset":false,"isSlot":false,"src":"1599:6:17","valueSize":1},{"declaration":2185,"isOffset":false,"isSlot":false,"src":"1615: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:92:17"},{"body":{"id":2218,"nodeType":"Block","src":"1663:234:17","statements":[{"expression":{"id":2206,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":false,"src":"1681:5:17","subExpression":{"id":2205,"name":"ptr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2201,"src":"1681:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2207,"nodeType":"ExpressionStatement","src":"1681:5:17"},{"AST":{"nativeSrc":"1729:86:17","nodeType":"YulBlock","src":"1729:86:17","statements":[{"expression":{"arguments":[{"name":"ptr","nativeSrc":"1759:3:17","nodeType":"YulIdentifier","src":"1759:3:17"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1773:5:17","nodeType":"YulIdentifier","src":"1773:5:17"},{"kind":"number","nativeSrc":"1780:2:17","nodeType":"YulLiteral","src":"1780:2:17","type":"","value":"10"}],"functionName":{"name":"mod","nativeSrc":"1769:3:17","nodeType":"YulIdentifier","src":"1769:3:17"},"nativeSrc":"1769:14:17","nodeType":"YulFunctionCall","src":"1769:14:17"},{"name":"HEX_DIGITS","nativeSrc":"1785:10:17","nodeType":"YulIdentifier","src":"1785:10:17"}],"functionName":{"name":"byte","nativeSrc":"1764:4:17","nodeType":"YulIdentifier","src":"1764:4:17"},"nativeSrc":"1764:32:17","nodeType":"YulFunctionCall","src":"1764:32:17"}],"functionName":{"name":"mstore8","nativeSrc":"1751:7:17","nodeType":"YulIdentifier","src":"1751:7:17"},"nativeSrc":"1751:46:17","nodeType":"YulFunctionCall","src":"1751:46:17"},"nativeSrc":"1751:46:17","nodeType":"YulExpressionStatement","src":"1751:46:17"}]},"evmVersion":"shanghai","externalReferences":[{"declaration":2124,"isOffset":false,"isSlot":false,"src":"1785:10:17","valueSize":1},{"declaration":2201,"isOffset":false,"isSlot":false,"src":"1759:3:17","valueSize":1},{"declaration":2179,"isOffset":false,"isSlot":false,"src":"1773:5:17","valueSize":1}],"flags":["memory-safe"],"id":2208,"nodeType":"InlineAssembly","src":"1704:111:17"},{"expression":{"id":2211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2209,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2179,"src":"1832: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":"1841:2:17","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"1832:11:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2212,"nodeType":"ExpressionStatement","src":"1832: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":"1865: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":"1874:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"1865:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2217,"nodeType":"IfStatement","src":"1861:21:17","trueBody":{"id":2216,"nodeType":"Break","src":"1877:5:17"}}]},"condition":{"hexValue":"74727565","id":2204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"1657:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"id":2219,"nodeType":"WhileStatement","src":"1650:247:17"},{"expression":{"id":2220,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2194,"src":"1917:6:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2183,"id":2221,"nodeType":"Return","src":"1910: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:632:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2249,"nodeType":"Block","src":"2116: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":"2147: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":"2155:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"2147: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":"2165:2:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470","typeString":"literal_string \"\""},"value":""},"id":2240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"2147:20:17","trueExpression":{"hexValue":"2d","id":2238,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2159: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":"2193: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":"2178: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":"2189:3:17","memberName":"abs","nodeType":"MemberAccess","referencedDeclaration":7738,"src":"2178: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":"2178: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":"2169: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":"2169: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":"2133:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":2232,"name":"string","nodeType":"ElementaryTypeName","src":"2133:6:17","typeDescriptions":{}}},"id":2234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2140:6:17","memberName":"concat","nodeType":"MemberAccess","src":"2133: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":"2133:68:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2231,"id":2248,"nodeType":"Return","src":"2126:75:17"}]},"documentation":{"id":2225,"nodeType":"StructuredDocumentation","src":"1946:89:17","text":" @dev Converts a `int256` to its ASCII `string` decimal representation."},"id":2250,"implemented":true,"kind":"function","modifiers":[],"name":"toStringSigned","nameLocation":"2049:14:17","nodeType":"FunctionDefinition","parameters":{"id":2228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2227,"mutability":"mutable","name":"value","nameLocation":"2071:5:17","nodeType":"VariableDeclaration","scope":2250,"src":"2064:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2226,"name":"int256","nodeType":"ElementaryTypeName","src":"2064:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"2063:14:17"},"returnParameters":{"id":2231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2230,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2250,"src":"2101:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2229,"name":"string","nodeType":"ElementaryTypeName","src":"2101:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2100:15:17"},"scope":3512,"src":"2040:168:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2269,"nodeType":"Block","src":"2387:100:17","statements":[{"id":2268,"nodeType":"UncheckedBlock","src":"2397:84:17","statements":[{"expression":{"arguments":[{"id":2259,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2253,"src":"2440: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":"2459: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":"2447: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":"2452:6:17","memberName":"log256","nodeType":"MemberAccess","referencedDeclaration":5773,"src":"2447: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":"2447: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":"2468:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2447: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":"2428: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":"2428:42:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2257,"id":2267,"nodeType":"Return","src":"2421:49:17"}]}]},"documentation":{"id":2251,"nodeType":"StructuredDocumentation","src":"2214:94:17","text":" @dev Converts a `uint256` to its ASCII `string` hexadecimal representation."},"id":2270,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"2322:11:17","nodeType":"FunctionDefinition","parameters":{"id":2254,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2253,"mutability":"mutable","name":"value","nameLocation":"2342:5:17","nodeType":"VariableDeclaration","scope":2270,"src":"2334:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2252,"name":"uint256","nodeType":"ElementaryTypeName","src":"2334:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2333:15:17"},"returnParameters":{"id":2257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2256,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2270,"src":"2372:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2255,"name":"string","nodeType":"ElementaryTypeName","src":"2372:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2371:15:17"},"scope":3512,"src":"2313:174:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2352,"nodeType":"Block","src":"2700:435:17","statements":[{"assignments":[2281],"declarations":[{"constant":false,"id":2281,"mutability":"mutable","name":"localValue","nameLocation":"2718:10:17","nodeType":"VariableDeclaration","scope":2352,"src":"2710:18:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2280,"name":"uint256","nodeType":"ElementaryTypeName","src":"2710:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2283,"initialValue":{"id":2282,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2273,"src":"2731:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2710:26:17"},{"assignments":[2285],"declarations":[{"constant":false,"id":2285,"mutability":"mutable","name":"buffer","nameLocation":"2759:6:17","nodeType":"VariableDeclaration","scope":2352,"src":"2746:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2284,"name":"bytes","nodeType":"ElementaryTypeName","src":"2746: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":"2778: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":"2782:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2778: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":"2791:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"2778: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":"2768: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":"2772: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":"2768:25:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"2746: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":"2803: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":"2810: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":"2803: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":"2815:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d","typeString":"literal_string \"0\""},"value":"0"},"src":"2803:15:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":2300,"nodeType":"ExpressionStatement","src":"2803: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":"2828: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":"2835: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":"2828: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":"2840:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_7521d1cadbcfa91eec65aa16715b94ffc1c9654ba57ea2ef1a2127bca1127a83","typeString":"literal_string \"x\""},"value":"x"},"src":"2828:15:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":2306,"nodeType":"ExpressionStatement","src":"2828:15:17"},{"body":{"id":2335,"nodeType":"Block","src":"2898: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":"2912:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2323,"indexExpression":{"id":2322,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2308,"src":"2919:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"2912:9:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":2324,"name":"HEX_DIGITS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2124,"src":"2924: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":"2935: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":"2948:3:17","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"2935:16:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"2924:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"2912:40:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":2330,"nodeType":"ExpressionStatement","src":"2912:40:17"},{"expression":{"id":2333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2331,"name":"localValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2281,"src":"2966: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":"2981:1:17","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"2966:16:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2334,"nodeType":"ExpressionStatement","src":"2966: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":"2886: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":"2890:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2886:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2336,"initializationExpression":{"assignments":[2308],"declarations":[{"constant":false,"id":2308,"mutability":"mutable","name":"i","nameLocation":"2866:1:17","nodeType":"VariableDeclaration","scope":2336,"src":"2858:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2307,"name":"uint256","nodeType":"ElementaryTypeName","src":"2858: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":"2870: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":"2874:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2870: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":"2883:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"2870:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"2858:26:17"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":2319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"2893:3:17","subExpression":{"id":2318,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2308,"src":"2895:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2320,"nodeType":"ExpressionStatement","src":"2893:3:17"},"nodeType":"ForStatement","src":"2853: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":"3006: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":"3020:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3006:15:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2346,"nodeType":"IfStatement","src":"3002:96:17","trueBody":{"id":2345,"nodeType":"Block","src":"3023:75:17","statements":[{"errorCall":{"arguments":[{"id":2341,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2273,"src":"3073:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2342,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2275,"src":"3080: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":"3044: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":"3044:43:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2344,"nodeType":"RevertStatement","src":"3037:50:17"}]}},{"expression":{"arguments":[{"id":2349,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2285,"src":"3121: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":"3114:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":2347,"name":"string","nodeType":"ElementaryTypeName","src":"3114:6:17","typeDescriptions":{}}},"id":2350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3114:14:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2279,"id":2351,"nodeType":"Return","src":"3107:21:17"}]},"documentation":{"id":2271,"nodeType":"StructuredDocumentation","src":"2493: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":"2619:11:17","nodeType":"FunctionDefinition","parameters":{"id":2276,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2273,"mutability":"mutable","name":"value","nameLocation":"2639:5:17","nodeType":"VariableDeclaration","scope":2353,"src":"2631:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2272,"name":"uint256","nodeType":"ElementaryTypeName","src":"2631:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2275,"mutability":"mutable","name":"length","nameLocation":"2654:6:17","nodeType":"VariableDeclaration","scope":2353,"src":"2646:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2274,"name":"uint256","nodeType":"ElementaryTypeName","src":"2646:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2630:31:17"},"returnParameters":{"id":2279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2278,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2353,"src":"2685:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2277,"name":"string","nodeType":"ElementaryTypeName","src":"2685:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2684:15:17"},"scope":3512,"src":"2610:525:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2372,"nodeType":"Block","src":"3367:75:17","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":2366,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2356,"src":"3412: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":"3404:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":2364,"name":"uint160","nodeType":"ElementaryTypeName","src":"3404:7:17","typeDescriptions":{}}},"id":2367,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3404: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":"3396:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2362,"name":"uint256","nodeType":"ElementaryTypeName","src":"3396:7:17","typeDescriptions":{}}},"id":2368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3396:22:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2369,"name":"ADDRESS_LENGTH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2127,"src":"3420: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":"3384: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":"3384:51:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2360,"id":2371,"nodeType":"Return","src":"3377:58:17"}]},"documentation":{"id":2354,"nodeType":"StructuredDocumentation","src":"3141: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":"3303:11:17","nodeType":"FunctionDefinition","parameters":{"id":2357,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2356,"mutability":"mutable","name":"addr","nameLocation":"3323:4:17","nodeType":"VariableDeclaration","scope":2373,"src":"3315:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2355,"name":"address","nodeType":"ElementaryTypeName","src":"3315:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3314:14:17"},"returnParameters":{"id":2360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2359,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2373,"src":"3352:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2358,"name":"string","nodeType":"ElementaryTypeName","src":"3352:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3351:15:17"},"scope":3512,"src":"3294:148:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2437,"nodeType":"Block","src":"3699:642:17","statements":[{"assignments":[2382],"declarations":[{"constant":false,"id":2382,"mutability":"mutable","name":"buffer","nameLocation":"3722:6:17","nodeType":"VariableDeclaration","scope":2437,"src":"3709:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2381,"name":"bytes","nodeType":"ElementaryTypeName","src":"3709: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":"3749: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":"3737: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":"3737: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":"3731:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2383,"name":"bytes","nodeType":"ElementaryTypeName","src":"3731:5:17","typeDescriptions":{}}},"id":2388,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3731:24:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3709:46:17"},{"assignments":[2391],"declarations":[{"constant":false,"id":2391,"mutability":"mutable","name":"hashValue","nameLocation":"3848:9:17","nodeType":"VariableDeclaration","scope":2437,"src":"3840:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2390,"name":"uint256","nodeType":"ElementaryTypeName","src":"3840:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2392,"nodeType":"VariableDeclarationStatement","src":"3840:17:17"},{"AST":{"nativeSrc":"3892:78:17","nodeType":"YulBlock","src":"3892:78:17","statements":[{"nativeSrc":"3906:54:17","nodeType":"YulAssignment","src":"3906:54:17","value":{"arguments":[{"kind":"number","nativeSrc":"3923:2:17","nodeType":"YulLiteral","src":"3923:2:17","type":"","value":"96"},{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"3941:6:17","nodeType":"YulIdentifier","src":"3941:6:17"},{"kind":"number","nativeSrc":"3949:4:17","nodeType":"YulLiteral","src":"3949:4:17","type":"","value":"0x22"}],"functionName":{"name":"add","nativeSrc":"3937:3:17","nodeType":"YulIdentifier","src":"3937:3:17"},"nativeSrc":"3937:17:17","nodeType":"YulFunctionCall","src":"3937:17:17"},{"kind":"number","nativeSrc":"3956:2:17","nodeType":"YulLiteral","src":"3956:2:17","type":"","value":"40"}],"functionName":{"name":"keccak256","nativeSrc":"3927:9:17","nodeType":"YulIdentifier","src":"3927:9:17"},"nativeSrc":"3927:32:17","nodeType":"YulFunctionCall","src":"3927:32:17"}],"functionName":{"name":"shr","nativeSrc":"3919:3:17","nodeType":"YulIdentifier","src":"3919:3:17"},"nativeSrc":"3919:41:17","nodeType":"YulFunctionCall","src":"3919:41:17"},"variableNames":[{"name":"hashValue","nativeSrc":"3906:9:17","nodeType":"YulIdentifier","src":"3906:9:17"}]}]},"evmVersion":"shanghai","externalReferences":[{"declaration":2382,"isOffset":false,"isSlot":false,"src":"3941:6:17","valueSize":1},{"declaration":2391,"isOffset":false,"isSlot":false,"src":"3906:9:17","valueSize":1}],"flags":["memory-safe"],"id":2393,"nodeType":"InlineAssembly","src":"3867:103:17"},{"body":{"id":2430,"nodeType":"Block","src":"4013: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":"4119: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":"4131:3:17","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"0xf"},"src":"4119: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":"4137:1:17","typeDescriptions":{"typeIdentifier":"t_rational_7_by_1","typeString":"int_const 7"},"value":"7"},"src":"4119: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":"4148:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2413,"indexExpression":{"id":2412,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2395,"src":"4155:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"4148: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":"4142:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":2409,"name":"uint8","nodeType":"ElementaryTypeName","src":"4142:5:17","typeDescriptions":{}}},"id":2414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4142: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":"4161:2:17","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"4142:21:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4119:44:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2425,"nodeType":"IfStatement","src":"4115:150:17","trueBody":{"id":2424,"nodeType":"Block","src":"4165: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":"4233:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2420,"indexExpression":{"id":2419,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2395,"src":"4240:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4233: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":"4246:4:17","typeDescriptions":{"typeIdentifier":"t_rational_32_by_1","typeString":"int_const 32"},"value":"0x20"},"src":"4233:17:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":2423,"nodeType":"ExpressionStatement","src":"4233:17:17"}]}},{"expression":{"id":2428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2426,"name":"hashValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2391,"src":"4278: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":"4292:1:17","typeDescriptions":{"typeIdentifier":"t_rational_4_by_1","typeString":"int_const 4"},"value":"4"},"src":"4278:15:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2429,"nodeType":"ExpressionStatement","src":"4278: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":"4001: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":"4005:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"4001:5:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2431,"initializationExpression":{"assignments":[2395],"declarations":[{"constant":false,"id":2395,"mutability":"mutable","name":"i","nameLocation":"3993:1:17","nodeType":"VariableDeclaration","scope":2431,"src":"3985:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2394,"name":"uint256","nodeType":"ElementaryTypeName","src":"3985: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":"3997:2:17","typeDescriptions":{"typeIdentifier":"t_rational_41_by_1","typeString":"int_const 41"},"value":"41"},"nodeType":"VariableDeclarationStatement","src":"3985:14:17"},"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":2402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"--","prefix":true,"src":"4008:3:17","subExpression":{"id":2401,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2395,"src":"4010:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2403,"nodeType":"ExpressionStatement","src":"4008:3:17"},"nodeType":"ForStatement","src":"3980:324:17"},{"expression":{"arguments":[{"id":2434,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2382,"src":"4327: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":"4320:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":2432,"name":"string","nodeType":"ElementaryTypeName","src":"4320:6:17","typeDescriptions":{}}},"id":2435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4320:14:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":2380,"id":2436,"nodeType":"Return","src":"4313:21:17"}]},"documentation":{"id":2374,"nodeType":"StructuredDocumentation","src":"3448: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":"3627:19:17","nodeType":"FunctionDefinition","parameters":{"id":2377,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2376,"mutability":"mutable","name":"addr","nameLocation":"3655:4:17","nodeType":"VariableDeclaration","scope":2438,"src":"3647:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2375,"name":"address","nodeType":"ElementaryTypeName","src":"3647:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3646:14:17"},"returnParameters":{"id":2380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2379,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2438,"src":"3684:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2378,"name":"string","nodeType":"ElementaryTypeName","src":"3684:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3683:15:17"},"scope":3512,"src":"3618:723:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2474,"nodeType":"Block","src":"4496: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":"4519: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":"4513:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2448,"name":"bytes","nodeType":"ElementaryTypeName","src":"4513:5:17","typeDescriptions":{}}},"id":2451,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4513:8:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4522:6:17","memberName":"length","nodeType":"MemberAccess","src":"4513:15:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":2455,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2443,"src":"4538: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":"4532:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2453,"name":"bytes","nodeType":"ElementaryTypeName","src":"4532:5:17","typeDescriptions":{}}},"id":2456,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4532:8:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2457,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4541:6:17","memberName":"length","nodeType":"MemberAccess","src":"4532:15:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4513: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":"4567: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":"4561:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2460,"name":"bytes","nodeType":"ElementaryTypeName","src":"4561:5:17","typeDescriptions":{}}},"id":2463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4561: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":"4551: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":"4551: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":"4590: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":"4584:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2466,"name":"bytes","nodeType":"ElementaryTypeName","src":"4584:5:17","typeDescriptions":{}}},"id":2469,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4584: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":"4574: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":"4574:19:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"4551:42:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4513:80:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":2447,"id":2473,"nodeType":"Return","src":"4506:87:17"}]},"documentation":{"id":2439,"nodeType":"StructuredDocumentation","src":"4347:66:17","text":" @dev Returns true if the two strings are equal."},"id":2475,"implemented":true,"kind":"function","modifiers":[],"name":"equal","nameLocation":"4427:5:17","nodeType":"FunctionDefinition","parameters":{"id":2444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2441,"mutability":"mutable","name":"a","nameLocation":"4447:1:17","nodeType":"VariableDeclaration","scope":2475,"src":"4433:15:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2440,"name":"string","nodeType":"ElementaryTypeName","src":"4433:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2443,"mutability":"mutable","name":"b","nameLocation":"4464:1:17","nodeType":"VariableDeclaration","scope":2475,"src":"4450:15:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2442,"name":"string","nodeType":"ElementaryTypeName","src":"4450:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4432:34:17"},"returnParameters":{"id":2447,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2446,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2475,"src":"4490:4:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2445,"name":"bool","nodeType":"ElementaryTypeName","src":"4490:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"4489:6:17"},"scope":3512,"src":"4418:182:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2493,"nodeType":"Block","src":"4897:64:17","statements":[{"expression":{"arguments":[{"id":2484,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2478,"src":"4924: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":"4931: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":"4940: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":"4934:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2486,"name":"bytes","nodeType":"ElementaryTypeName","src":"4934:5:17","typeDescriptions":{}}},"id":2489,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4934:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2490,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4947:6:17","memberName":"length","nodeType":"MemberAccess","src":"4934: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":"4914: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":"4914:40:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2482,"id":2492,"nodeType":"Return","src":"4907:47:17"}]},"documentation":{"id":2476,"nodeType":"StructuredDocumentation","src":"4606: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":"4834:9:17","nodeType":"FunctionDefinition","parameters":{"id":2479,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2478,"mutability":"mutable","name":"input","nameLocation":"4858:5:17","nodeType":"VariableDeclaration","scope":2494,"src":"4844:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2477,"name":"string","nodeType":"ElementaryTypeName","src":"4844:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4843:21:17"},"returnParameters":{"id":2482,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2481,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2494,"src":"4888:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2480,"name":"uint256","nodeType":"ElementaryTypeName","src":"4888:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4887:9:17"},"scope":3512,"src":"4825:136:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2524,"nodeType":"Block","src":"5366:153:17","statements":[{"assignments":[2507,2509],"declarations":[{"constant":false,"id":2507,"mutability":"mutable","name":"success","nameLocation":"5382:7:17","nodeType":"VariableDeclaration","scope":2524,"src":"5377:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2506,"name":"bool","nodeType":"ElementaryTypeName","src":"5377:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2509,"mutability":"mutable","name":"value","nameLocation":"5399:5:17","nodeType":"VariableDeclaration","scope":2524,"src":"5391:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2508,"name":"uint256","nodeType":"ElementaryTypeName","src":"5391:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2515,"initialValue":{"arguments":[{"id":2511,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2497,"src":"5421:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2512,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2499,"src":"5428:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2513,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2501,"src":"5435: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":"5408: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":"5408:31:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"5376:63:17"},{"condition":{"id":2517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"5453:8:17","subExpression":{"id":2516,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2507,"src":"5454:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2521,"nodeType":"IfStatement","src":"5449:41:17","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":2518,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2173,"src":"5470: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":"5470:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2520,"nodeType":"RevertStatement","src":"5463:27:17"}},{"expression":{"id":2522,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2509,"src":"5507:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2505,"id":2523,"nodeType":"Return","src":"5500:12:17"}]},"documentation":{"id":2495,"nodeType":"StructuredDocumentation","src":"4967: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":"5275:9:17","nodeType":"FunctionDefinition","parameters":{"id":2502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2497,"mutability":"mutable","name":"input","nameLocation":"5299:5:17","nodeType":"VariableDeclaration","scope":2525,"src":"5285:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2496,"name":"string","nodeType":"ElementaryTypeName","src":"5285:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2499,"mutability":"mutable","name":"begin","nameLocation":"5314:5:17","nodeType":"VariableDeclaration","scope":2525,"src":"5306:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2498,"name":"uint256","nodeType":"ElementaryTypeName","src":"5306:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2501,"mutability":"mutable","name":"end","nameLocation":"5329:3:17","nodeType":"VariableDeclaration","scope":2525,"src":"5321:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2500,"name":"uint256","nodeType":"ElementaryTypeName","src":"5321:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5284:49:17"},"returnParameters":{"id":2505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2504,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2525,"src":"5357:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2503,"name":"uint256","nodeType":"ElementaryTypeName","src":"5357:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5356:9:17"},"scope":3512,"src":"5266:253:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2545,"nodeType":"Block","src":"5840:83:17","statements":[{"expression":{"arguments":[{"id":2536,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2528,"src":"5886: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":"5893: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":"5902: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":"5896:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2538,"name":"bytes","nodeType":"ElementaryTypeName","src":"5896:5:17","typeDescriptions":{}}},"id":2541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5896:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5909:6:17","memberName":"length","nodeType":"MemberAccess","src":"5896: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":"5857: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":"5857:59:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":2534,"id":2544,"nodeType":"Return","src":"5850:66:17"}]},"documentation":{"id":2526,"nodeType":"StructuredDocumentation","src":"5525: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":"5754:12:17","nodeType":"FunctionDefinition","parameters":{"id":2529,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2528,"mutability":"mutable","name":"input","nameLocation":"5781:5:17","nodeType":"VariableDeclaration","scope":2546,"src":"5767:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2527,"name":"string","nodeType":"ElementaryTypeName","src":"5767:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"5766:21:17"},"returnParameters":{"id":2534,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2531,"mutability":"mutable","name":"success","nameLocation":"5816:7:17","nodeType":"VariableDeclaration","scope":2546,"src":"5811:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2530,"name":"bool","nodeType":"ElementaryTypeName","src":"5811:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2533,"mutability":"mutable","name":"value","nameLocation":"5833:5:17","nodeType":"VariableDeclaration","scope":2546,"src":"5825:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2532,"name":"uint256","nodeType":"ElementaryTypeName","src":"5825:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5810:29:17"},"scope":3512,"src":"5745:178:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2582,"nodeType":"Block","src":"6325: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":"6339:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":2563,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2549,"src":"6351: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":"6345:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2561,"name":"bytes","nodeType":"ElementaryTypeName","src":"6345:5:17","typeDescriptions":{}}},"id":2564,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6345:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6358:6:17","memberName":"length","nodeType":"MemberAccess","src":"6345:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6339: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":"6368:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":2568,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2553,"src":"6376:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6368:11:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"6339:40:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2575,"nodeType":"IfStatement","src":"6335:63:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":2571,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"6389: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":"6396: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":"6388: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":"6381:17:17"}},{"expression":{"arguments":[{"id":2577,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2549,"src":"6444:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2578,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2551,"src":"6451:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2579,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2553,"src":"6458: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":"6415: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":"6415:47:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":2559,"id":2581,"nodeType":"Return","src":"6408:54:17"}]},"documentation":{"id":2547,"nodeType":"StructuredDocumentation","src":"5929: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":"6181:12:17","nodeType":"FunctionDefinition","parameters":{"id":2554,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2549,"mutability":"mutable","name":"input","nameLocation":"6217:5:17","nodeType":"VariableDeclaration","scope":2583,"src":"6203:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2548,"name":"string","nodeType":"ElementaryTypeName","src":"6203:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2551,"mutability":"mutable","name":"begin","nameLocation":"6240:5:17","nodeType":"VariableDeclaration","scope":2583,"src":"6232:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2550,"name":"uint256","nodeType":"ElementaryTypeName","src":"6232:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2553,"mutability":"mutable","name":"end","nameLocation":"6263:3:17","nodeType":"VariableDeclaration","scope":2583,"src":"6255:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2552,"name":"uint256","nodeType":"ElementaryTypeName","src":"6255:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6193:79:17"},"returnParameters":{"id":2559,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2556,"mutability":"mutable","name":"success","nameLocation":"6301:7:17","nodeType":"VariableDeclaration","scope":2583,"src":"6296:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2555,"name":"bool","nodeType":"ElementaryTypeName","src":"6296:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2558,"mutability":"mutable","name":"value","nameLocation":"6318:5:17","nodeType":"VariableDeclaration","scope":2583,"src":"6310:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2557,"name":"uint256","nodeType":"ElementaryTypeName","src":"6310:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6295:29:17"},"scope":3512,"src":"6172:297:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2652,"nodeType":"Block","src":"6872:347:17","statements":[{"assignments":[2598],"declarations":[{"constant":false,"id":2598,"mutability":"mutable","name":"buffer","nameLocation":"6895:6:17","nodeType":"VariableDeclaration","scope":2652,"src":"6882:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2597,"name":"bytes","nodeType":"ElementaryTypeName","src":"6882: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":"6910: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":"6904:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2599,"name":"bytes","nodeType":"ElementaryTypeName","src":"6904:5:17","typeDescriptions":{}}},"id":2602,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6904:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"6882:34:17"},{"assignments":[2605],"declarations":[{"constant":false,"id":2605,"mutability":"mutable","name":"result","nameLocation":"6935:6:17","nodeType":"VariableDeclaration","scope":2652,"src":"6927:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2604,"name":"uint256","nodeType":"ElementaryTypeName","src":"6927: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":"6944:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"6927:18:17"},{"body":{"id":2646,"nodeType":"Block","src":"6993:189:17","statements":[{"assignments":[2619],"declarations":[{"constant":false,"id":2619,"mutability":"mutable","name":"chr","nameLocation":"7013:3:17","nodeType":"VariableDeclaration","scope":2646,"src":"7007:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2618,"name":"uint8","nodeType":"ElementaryTypeName","src":"7007: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":"7062:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2625,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2609,"src":"7070: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":"7039: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":"7039: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":"7032:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":2621,"name":"bytes1","nodeType":"ElementaryTypeName","src":"7032:6:17","typeDescriptions":{}}},"id":2627,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7032: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":"7019: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":"7019:55:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"7007: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":"7092: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":"7098:1:17","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"src":"7092:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2637,"nodeType":"IfStatement","src":"7088:30:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":2633,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7109: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":"7116: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":"7108: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":"7101:17:17"}},{"expression":{"id":2640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2638,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2605,"src":"7132: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":"7142:2:17","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"src":"7132:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2641,"nodeType":"ExpressionStatement","src":"7132:12:17"},{"expression":{"id":2644,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2642,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2605,"src":"7158:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":2643,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2619,"src":"7168:3:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"7158:13:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2645,"nodeType":"ExpressionStatement","src":"7158: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":"6979:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2613,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2590,"src":"6983:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6979:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2647,"initializationExpression":{"assignments":[2609],"declarations":[{"constant":false,"id":2609,"mutability":"mutable","name":"i","nameLocation":"6968:1:17","nodeType":"VariableDeclaration","scope":2647,"src":"6960:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2608,"name":"uint256","nodeType":"ElementaryTypeName","src":"6960:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2611,"initialValue":{"id":2610,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2588,"src":"6972:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6960:17:17"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":2616,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6988:3:17","subExpression":{"id":2615,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2609,"src":"6990:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2617,"nodeType":"ExpressionStatement","src":"6988:3:17"},"nodeType":"ForStatement","src":"6955:227:17"},{"expression":{"components":[{"hexValue":"74727565","id":2648,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"7199:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":2649,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2605,"src":"7205:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2650,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"7198:14:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":2596,"id":2651,"nodeType":"Return","src":"7191:21:17"}]},"documentation":{"id":2584,"nodeType":"StructuredDocumentation","src":"6475: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":"6713:28:17","nodeType":"FunctionDefinition","parameters":{"id":2591,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2586,"mutability":"mutable","name":"input","nameLocation":"6765:5:17","nodeType":"VariableDeclaration","scope":2653,"src":"6751:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2585,"name":"string","nodeType":"ElementaryTypeName","src":"6751:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2588,"mutability":"mutable","name":"begin","nameLocation":"6788:5:17","nodeType":"VariableDeclaration","scope":2653,"src":"6780:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2587,"name":"uint256","nodeType":"ElementaryTypeName","src":"6780:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2590,"mutability":"mutable","name":"end","nameLocation":"6811:3:17","nodeType":"VariableDeclaration","scope":2653,"src":"6803:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2589,"name":"uint256","nodeType":"ElementaryTypeName","src":"6803:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6741:79:17"},"returnParameters":{"id":2596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2593,"mutability":"mutable","name":"success","nameLocation":"6848:7:17","nodeType":"VariableDeclaration","scope":2653,"src":"6843:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2592,"name":"bool","nodeType":"ElementaryTypeName","src":"6843:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2595,"mutability":"mutable","name":"value","nameLocation":"6865:5:17","nodeType":"VariableDeclaration","scope":2653,"src":"6857:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2594,"name":"uint256","nodeType":"ElementaryTypeName","src":"6857:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6842:29:17"},"scope":3512,"src":"6704:515:17","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":2671,"nodeType":"Block","src":"7516:63:17","statements":[{"expression":{"arguments":[{"id":2662,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2656,"src":"7542: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":"7549: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":"7558: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":"7552:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2664,"name":"bytes","nodeType":"ElementaryTypeName","src":"7552:5:17","typeDescriptions":{}}},"id":2667,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7552:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2668,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7565:6:17","memberName":"length","nodeType":"MemberAccess","src":"7552: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":"7533: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":"7533:39:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":2660,"id":2670,"nodeType":"Return","src":"7526:46:17"}]},"documentation":{"id":2654,"nodeType":"StructuredDocumentation","src":"7225: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":"7455:8:17","nodeType":"FunctionDefinition","parameters":{"id":2657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2656,"mutability":"mutable","name":"input","nameLocation":"7478:5:17","nodeType":"VariableDeclaration","scope":2672,"src":"7464:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2655,"name":"string","nodeType":"ElementaryTypeName","src":"7464:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"7463:21:17"},"returnParameters":{"id":2660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2659,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2672,"src":"7508:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2658,"name":"int256","nodeType":"ElementaryTypeName","src":"7508:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7507:8:17"},"scope":3512,"src":"7446:133:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2702,"nodeType":"Block","src":"7984:151:17","statements":[{"assignments":[2685,2687],"declarations":[{"constant":false,"id":2685,"mutability":"mutable","name":"success","nameLocation":"8000:7:17","nodeType":"VariableDeclaration","scope":2702,"src":"7995:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2684,"name":"bool","nodeType":"ElementaryTypeName","src":"7995:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2687,"mutability":"mutable","name":"value","nameLocation":"8016:5:17","nodeType":"VariableDeclaration","scope":2702,"src":"8009:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2686,"name":"int256","nodeType":"ElementaryTypeName","src":"8009:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":2693,"initialValue":{"arguments":[{"id":2689,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2675,"src":"8037:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2690,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2677,"src":"8044:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2691,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2679,"src":"8051: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":"8025: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":"8025:30:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"nodeType":"VariableDeclarationStatement","src":"7994:61:17"},{"condition":{"id":2695,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"8069:8:17","subExpression":{"id":2694,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2685,"src":"8070:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2699,"nodeType":"IfStatement","src":"8065:41:17","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":2696,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2173,"src":"8086: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":"8086:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2698,"nodeType":"RevertStatement","src":"8079:27:17"}},{"expression":{"id":2700,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"8123:5:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":2683,"id":2701,"nodeType":"Return","src":"8116:12:17"}]},"documentation":{"id":2673,"nodeType":"StructuredDocumentation","src":"7585: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":"7895:8:17","nodeType":"FunctionDefinition","parameters":{"id":2680,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2675,"mutability":"mutable","name":"input","nameLocation":"7918:5:17","nodeType":"VariableDeclaration","scope":2703,"src":"7904:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2674,"name":"string","nodeType":"ElementaryTypeName","src":"7904:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2677,"mutability":"mutable","name":"begin","nameLocation":"7933:5:17","nodeType":"VariableDeclaration","scope":2703,"src":"7925:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2676,"name":"uint256","nodeType":"ElementaryTypeName","src":"7925:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2679,"mutability":"mutable","name":"end","nameLocation":"7948:3:17","nodeType":"VariableDeclaration","scope":2703,"src":"7940:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2678,"name":"uint256","nodeType":"ElementaryTypeName","src":"7940:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7903:49:17"},"returnParameters":{"id":2683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2682,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2703,"src":"7976:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2681,"name":"int256","nodeType":"ElementaryTypeName","src":"7976:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"7975:8:17"},"scope":3512,"src":"7886:249:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2723,"nodeType":"Block","src":"8526:82:17","statements":[{"expression":{"arguments":[{"id":2714,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2706,"src":"8571: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":"8578: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":"8587: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":"8581:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2716,"name":"bytes","nodeType":"ElementaryTypeName","src":"8581:5:17","typeDescriptions":{}}},"id":2719,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8581:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8594:6:17","memberName":"length","nodeType":"MemberAccess","src":"8581: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":"8543: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":"8543:58:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":2712,"id":2722,"nodeType":"Return","src":"8536:65:17"}]},"documentation":{"id":2704,"nodeType":"StructuredDocumentation","src":"8141: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":"8442:11:17","nodeType":"FunctionDefinition","parameters":{"id":2707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2706,"mutability":"mutable","name":"input","nameLocation":"8468:5:17","nodeType":"VariableDeclaration","scope":2724,"src":"8454:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2705,"name":"string","nodeType":"ElementaryTypeName","src":"8454:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8453:21:17"},"returnParameters":{"id":2712,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2709,"mutability":"mutable","name":"success","nameLocation":"8503:7:17","nodeType":"VariableDeclaration","scope":2724,"src":"8498:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2708,"name":"bool","nodeType":"ElementaryTypeName","src":"8498:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2711,"mutability":"mutable","name":"value","nameLocation":"8519:5:17","nodeType":"VariableDeclaration","scope":2724,"src":"8512:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2710,"name":"int256","nodeType":"ElementaryTypeName","src":"8512:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"8497:28:17"},"scope":3512,"src":"8433:175:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":2729,"mutability":"constant","name":"ABS_MIN_INT256","nameLocation":"8639:14:17","nodeType":"VariableDeclaration","scope":3512,"src":"8614:50:17","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2725,"name":"uint256","nodeType":"ElementaryTypeName","src":"8614: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":"8656: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":"8661:3:17","typeDescriptions":{"typeIdentifier":"t_rational_255_by_1","typeString":"int_const 255"},"value":"255"},"src":"8656: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":"9130: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":"9144:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":2746,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2732,"src":"9156: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":"9150:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2744,"name":"bytes","nodeType":"ElementaryTypeName","src":"9150:5:17","typeDescriptions":{}}},"id":2747,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9150:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2748,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9163:6:17","memberName":"length","nodeType":"MemberAccess","src":"9150:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9144: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":"9173:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":2751,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2736,"src":"9181:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9173:11:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"9144:40:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2758,"nodeType":"IfStatement","src":"9140:63:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":2754,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"9194: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":"9201: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":"9193: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":"9186:17:17"}},{"expression":{"arguments":[{"id":2760,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2732,"src":"9248:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2761,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2734,"src":"9255:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2762,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2736,"src":"9262: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":"9220: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":"9220:46:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":2742,"id":2764,"nodeType":"Return","src":"9213:53:17"}]},"documentation":{"id":2730,"nodeType":"StructuredDocumentation","src":"8671: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":"8988:11:17","nodeType":"FunctionDefinition","parameters":{"id":2737,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2732,"mutability":"mutable","name":"input","nameLocation":"9023:5:17","nodeType":"VariableDeclaration","scope":2766,"src":"9009:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2731,"name":"string","nodeType":"ElementaryTypeName","src":"9009:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2734,"mutability":"mutable","name":"begin","nameLocation":"9046:5:17","nodeType":"VariableDeclaration","scope":2766,"src":"9038:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2733,"name":"uint256","nodeType":"ElementaryTypeName","src":"9038:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2736,"mutability":"mutable","name":"end","nameLocation":"9069:3:17","nodeType":"VariableDeclaration","scope":2766,"src":"9061:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2735,"name":"uint256","nodeType":"ElementaryTypeName","src":"9061:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8999:79:17"},"returnParameters":{"id":2742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2739,"mutability":"mutable","name":"success","nameLocation":"9107:7:17","nodeType":"VariableDeclaration","scope":2766,"src":"9102:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2738,"name":"bool","nodeType":"ElementaryTypeName","src":"9102:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2741,"mutability":"mutable","name":"value","nameLocation":"9123:5:17","nodeType":"VariableDeclaration","scope":2766,"src":"9116:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2740,"name":"int256","nodeType":"ElementaryTypeName","src":"9116:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9101:28:17"},"scope":3512,"src":"8979:294:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2886,"nodeType":"Block","src":"9673:812:17","statements":[{"assignments":[2781],"declarations":[{"constant":false,"id":2781,"mutability":"mutable","name":"buffer","nameLocation":"9696:6:17","nodeType":"VariableDeclaration","scope":2886,"src":"9683:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2780,"name":"bytes","nodeType":"ElementaryTypeName","src":"9683: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":"9711: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":"9705:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2782,"name":"bytes","nodeType":"ElementaryTypeName","src":"9705:5:17","typeDescriptions":{}}},"id":2785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9705:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"9683:34:17"},{"assignments":[2788],"declarations":[{"constant":false,"id":2788,"mutability":"mutable","name":"sign","nameLocation":"9781:4:17","nodeType":"VariableDeclaration","scope":2886,"src":"9774:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":2787,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9774: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":"9788:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2790,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2773,"src":"9797:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9788:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"arguments":[{"id":2799,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2781,"src":"9845:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2800,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2771,"src":"9853: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":"9822: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":"9822: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":"9815:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":2796,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9815:6:17","typeDescriptions":{}}},"id":2802,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9815:45:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":2803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9788:72:17","trueExpression":{"arguments":[{"hexValue":"30","id":2794,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"9810: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":"9803:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":2792,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9803:6:17","typeDescriptions":{}}},"id":2795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9803:9:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"9774:86:17"},{"assignments":[2806],"declarations":[{"constant":false,"id":2806,"mutability":"mutable","name":"positiveSign","nameLocation":"9946:12:17","nodeType":"VariableDeclaration","scope":2886,"src":"9941:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2805,"name":"bool","nodeType":"ElementaryTypeName","src":"9941: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":"9961: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":"9976: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":"9969:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":2808,"name":"bytes1","nodeType":"ElementaryTypeName","src":"9969:6:17","typeDescriptions":{}}},"id":2811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9969:11:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"9961:19:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9941:39:17"},{"assignments":[2815],"declarations":[{"constant":false,"id":2815,"mutability":"mutable","name":"negativeSign","nameLocation":"9995:12:17","nodeType":"VariableDeclaration","scope":2886,"src":"9990:17:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2814,"name":"bool","nodeType":"ElementaryTypeName","src":"9990: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":"10010: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":"10025: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":"10018:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":2817,"name":"bytes1","nodeType":"ElementaryTypeName","src":"10018:6:17","typeDescriptions":{}}},"id":2820,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10018:11:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"10010:19:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"9990:39:17"},{"assignments":[2824],"declarations":[{"constant":false,"id":2824,"mutability":"mutable","name":"offset","nameLocation":"10047:6:17","nodeType":"VariableDeclaration","scope":2886,"src":"10039:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2823,"name":"uint256","nodeType":"ElementaryTypeName","src":"10039: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":"10057:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"id":2826,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2815,"src":"10073:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10057:28:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":2828,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10056:30:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10087:6:17","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"10056: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":"10056:39:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10039:56:17"},{"assignments":[2833,2835],"declarations":[{"constant":false,"id":2833,"mutability":"mutable","name":"absSuccess","nameLocation":"10112:10:17","nodeType":"VariableDeclaration","scope":2886,"src":"10107:15:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2832,"name":"bool","nodeType":"ElementaryTypeName","src":"10107:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2835,"mutability":"mutable","name":"absValue","nameLocation":"10132:8:17","nodeType":"VariableDeclaration","scope":2886,"src":"10124:16:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2834,"name":"uint256","nodeType":"ElementaryTypeName","src":"10124:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2843,"initialValue":{"arguments":[{"id":2837,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2769,"src":"10157: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":"10164:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2839,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2824,"src":"10172:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10164:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2841,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2773,"src":"10180: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":"10144: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":"10144:40:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"10106: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":"10199: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":"10213:8:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":2846,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2729,"src":"10224:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10213:25:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10199: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":"10341:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":2865,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2815,"src":"10355:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10341: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":"10371:8:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2868,"name":"ABS_MIN_INT256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2729,"src":"10383:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10371:26:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10341: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":"10469: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":"10476: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":"10468: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":"10461:17:17"},"id":2884,"nodeType":"IfStatement","src":"10337:141:17","trueBody":{"id":2879,"nodeType":"Block","src":"10399:56:17","statements":[{"expression":{"components":[{"hexValue":"74727565","id":2871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10421: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":"10432:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":2873,"name":"int256","nodeType":"ElementaryTypeName","src":"10432:6:17","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":2872,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"10427: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":"10427: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":"10440:3:17","memberName":"min","nodeType":"MemberAccess","src":"10427:16:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":2877,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"10420:24:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":2779,"id":2878,"nodeType":"Return","src":"10413:31:17"}]}},"id":2885,"nodeType":"IfStatement","src":"10195:283:17","trueBody":{"id":2863,"nodeType":"Block","src":"10240:91:17","statements":[{"expression":{"components":[{"hexValue":"74727565","id":2849,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"10262:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"condition":{"id":2850,"name":"negativeSign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2815,"src":"10268:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":2858,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2835,"src":"10310: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":"10303:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":2856,"name":"int256","nodeType":"ElementaryTypeName","src":"10303:6:17","typeDescriptions":{}}},"id":2859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10303:16:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"id":2860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"10268:51:17","trueExpression":{"id":2855,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10283:17:17","subExpression":{"arguments":[{"id":2853,"name":"absValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2835,"src":"10291: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":"10284:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":2851,"name":"int256","nodeType":"ElementaryTypeName","src":"10284:6:17","typeDescriptions":{}}},"id":2854,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10284: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":"10261:59:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_int256_$","typeString":"tuple(bool,int256)"}},"functionReturnParameters":2779,"id":2862,"nodeType":"Return","src":"10254:66:17"}]}}]},"documentation":{"id":2767,"nodeType":"StructuredDocumentation","src":"9279: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":"9516:27:17","nodeType":"FunctionDefinition","parameters":{"id":2774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2769,"mutability":"mutable","name":"input","nameLocation":"9567:5:17","nodeType":"VariableDeclaration","scope":2887,"src":"9553:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2768,"name":"string","nodeType":"ElementaryTypeName","src":"9553:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2771,"mutability":"mutable","name":"begin","nameLocation":"9590:5:17","nodeType":"VariableDeclaration","scope":2887,"src":"9582:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2770,"name":"uint256","nodeType":"ElementaryTypeName","src":"9582:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2773,"mutability":"mutable","name":"end","nameLocation":"9613:3:17","nodeType":"VariableDeclaration","scope":2887,"src":"9605:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2772,"name":"uint256","nodeType":"ElementaryTypeName","src":"9605:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9543:79:17"},"returnParameters":{"id":2779,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2776,"mutability":"mutable","name":"success","nameLocation":"9650:7:17","nodeType":"VariableDeclaration","scope":2887,"src":"9645:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2775,"name":"bool","nodeType":"ElementaryTypeName","src":"9645:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2778,"mutability":"mutable","name":"value","nameLocation":"9666:5:17","nodeType":"VariableDeclaration","scope":2887,"src":"9659:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":2777,"name":"int256","nodeType":"ElementaryTypeName","src":"9659:6:17","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9644:28:17"},"scope":3512,"src":"9507:978:17","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":2905,"nodeType":"Block","src":"10830:67:17","statements":[{"expression":{"arguments":[{"id":2896,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2890,"src":"10860: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":"10867: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":"10876: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":"10870:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2898,"name":"bytes","nodeType":"ElementaryTypeName","src":"10870:5:17","typeDescriptions":{}}},"id":2901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10870:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10883:6:17","memberName":"length","nodeType":"MemberAccess","src":"10870: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":"10847: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":"10847:43:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2894,"id":2904,"nodeType":"Return","src":"10840:50:17"}]},"documentation":{"id":2888,"nodeType":"StructuredDocumentation","src":"10491: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":"10764:12:17","nodeType":"FunctionDefinition","parameters":{"id":2891,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2890,"mutability":"mutable","name":"input","nameLocation":"10791:5:17","nodeType":"VariableDeclaration","scope":2906,"src":"10777:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2889,"name":"string","nodeType":"ElementaryTypeName","src":"10777:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"10776:21:17"},"returnParameters":{"id":2894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2893,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2906,"src":"10821:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2892,"name":"uint256","nodeType":"ElementaryTypeName","src":"10821:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10820:9:17"},"scope":3512,"src":"10755:142:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2936,"nodeType":"Block","src":"11318:156:17","statements":[{"assignments":[2919,2921],"declarations":[{"constant":false,"id":2919,"mutability":"mutable","name":"success","nameLocation":"11334:7:17","nodeType":"VariableDeclaration","scope":2936,"src":"11329:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2918,"name":"bool","nodeType":"ElementaryTypeName","src":"11329:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2921,"mutability":"mutable","name":"value","nameLocation":"11351:5:17","nodeType":"VariableDeclaration","scope":2936,"src":"11343:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2920,"name":"uint256","nodeType":"ElementaryTypeName","src":"11343:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2927,"initialValue":{"arguments":[{"id":2923,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2909,"src":"11376:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2924,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2911,"src":"11383:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2925,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2913,"src":"11390: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":"11360: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":"11360:34:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"11328:66:17"},{"condition":{"id":2929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"11408:8:17","subExpression":{"id":2928,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2919,"src":"11409:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2933,"nodeType":"IfStatement","src":"11404:41:17","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":2930,"name":"StringsInvalidChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2173,"src":"11425: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":"11425:20:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":2932,"nodeType":"RevertStatement","src":"11418:27:17"}},{"expression":{"id":2934,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2921,"src":"11462:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2917,"id":2935,"nodeType":"Return","src":"11455:12:17"}]},"documentation":{"id":2907,"nodeType":"StructuredDocumentation","src":"10903: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":"11224:12:17","nodeType":"FunctionDefinition","parameters":{"id":2914,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2909,"mutability":"mutable","name":"input","nameLocation":"11251:5:17","nodeType":"VariableDeclaration","scope":2937,"src":"11237:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2908,"name":"string","nodeType":"ElementaryTypeName","src":"11237:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2911,"mutability":"mutable","name":"begin","nameLocation":"11266:5:17","nodeType":"VariableDeclaration","scope":2937,"src":"11258:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2910,"name":"uint256","nodeType":"ElementaryTypeName","src":"11258:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2913,"mutability":"mutable","name":"end","nameLocation":"11281:3:17","nodeType":"VariableDeclaration","scope":2937,"src":"11273:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2912,"name":"uint256","nodeType":"ElementaryTypeName","src":"11273:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11236:49:17"},"returnParameters":{"id":2917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2916,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2937,"src":"11309:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2915,"name":"uint256","nodeType":"ElementaryTypeName","src":"11309:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11308:9:17"},"scope":3512,"src":"11215:259:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2957,"nodeType":"Block","src":"11801:86:17","statements":[{"expression":{"arguments":[{"id":2948,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2940,"src":"11850: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":"11857: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":"11866: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":"11860:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2950,"name":"bytes","nodeType":"ElementaryTypeName","src":"11860:5:17","typeDescriptions":{}}},"id":2953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11860:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2954,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11873:6:17","memberName":"length","nodeType":"MemberAccess","src":"11860: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":"11818: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":"11818:62:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":2946,"id":2956,"nodeType":"Return","src":"11811:69:17"}]},"documentation":{"id":2938,"nodeType":"StructuredDocumentation","src":"11480: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":"11712:15:17","nodeType":"FunctionDefinition","parameters":{"id":2941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2940,"mutability":"mutable","name":"input","nameLocation":"11742:5:17","nodeType":"VariableDeclaration","scope":2958,"src":"11728:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2939,"name":"string","nodeType":"ElementaryTypeName","src":"11728:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"11727:21:17"},"returnParameters":{"id":2946,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2943,"mutability":"mutable","name":"success","nameLocation":"11777:7:17","nodeType":"VariableDeclaration","scope":2958,"src":"11772:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2942,"name":"bool","nodeType":"ElementaryTypeName","src":"11772:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2945,"mutability":"mutable","name":"value","nameLocation":"11794:5:17","nodeType":"VariableDeclaration","scope":2958,"src":"11786:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2944,"name":"uint256","nodeType":"ElementaryTypeName","src":"11786:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11771:29:17"},"scope":3512,"src":"11703:184:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2994,"nodeType":"Block","src":"12295: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":"12309:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":2975,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2961,"src":"12321: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":"12315:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":2973,"name":"bytes","nodeType":"ElementaryTypeName","src":"12315:5:17","typeDescriptions":{}}},"id":2976,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12315:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12328:6:17","memberName":"length","nodeType":"MemberAccess","src":"12315:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12309: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":"12338:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":2980,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"12346:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12338:11:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12309:40:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2987,"nodeType":"IfStatement","src":"12305:63:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":2983,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"12359: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":"12366: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":"12358: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":"12351:17:17"}},{"expression":{"arguments":[{"id":2989,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2961,"src":"12417:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":2990,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2963,"src":"12424:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2991,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2965,"src":"12431: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":"12385: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":"12385:50:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":2971,"id":2993,"nodeType":"Return","src":"12378:57:17"}]},"documentation":{"id":2959,"nodeType":"StructuredDocumentation","src":"11893: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":"12148:15:17","nodeType":"FunctionDefinition","parameters":{"id":2966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2961,"mutability":"mutable","name":"input","nameLocation":"12187:5:17","nodeType":"VariableDeclaration","scope":2995,"src":"12173:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2960,"name":"string","nodeType":"ElementaryTypeName","src":"12173:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":2963,"mutability":"mutable","name":"begin","nameLocation":"12210:5:17","nodeType":"VariableDeclaration","scope":2995,"src":"12202:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2962,"name":"uint256","nodeType":"ElementaryTypeName","src":"12202:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2965,"mutability":"mutable","name":"end","nameLocation":"12233:3:17","nodeType":"VariableDeclaration","scope":2995,"src":"12225:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2964,"name":"uint256","nodeType":"ElementaryTypeName","src":"12225:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12163:79:17"},"returnParameters":{"id":2971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2968,"mutability":"mutable","name":"success","nameLocation":"12271:7:17","nodeType":"VariableDeclaration","scope":2995,"src":"12266:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2967,"name":"bool","nodeType":"ElementaryTypeName","src":"12266:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2970,"mutability":"mutable","name":"value","nameLocation":"12288:5:17","nodeType":"VariableDeclaration","scope":2995,"src":"12280:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2969,"name":"uint256","nodeType":"ElementaryTypeName","src":"12280:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12265:29:17"},"scope":3512,"src":"12139:303:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3097,"nodeType":"Block","src":"12851:881:17","statements":[{"assignments":[3010],"declarations":[{"constant":false,"id":3010,"mutability":"mutable","name":"buffer","nameLocation":"12874:6:17","nodeType":"VariableDeclaration","scope":3097,"src":"12861:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3009,"name":"bytes","nodeType":"ElementaryTypeName","src":"12861: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":"12889: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":"12883:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3011,"name":"bytes","nodeType":"ElementaryTypeName","src":"12883:5:17","typeDescriptions":{}}},"id":3014,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12883:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"12861:34:17"},{"assignments":[3017],"declarations":[{"constant":false,"id":3017,"mutability":"mutable","name":"hasPrefix","nameLocation":"12948:9:17","nodeType":"VariableDeclaration","scope":3097,"src":"12943:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3016,"name":"bool","nodeType":"ElementaryTypeName","src":"12943: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":"12961: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":"12967: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":"12975:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"12967:9:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12961:15:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":3023,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"12960: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":"13011:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3028,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3000,"src":"13019: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":"12988: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":"12988: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":"12981:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":3024,"name":"bytes2","nodeType":"ElementaryTypeName","src":"12981:6:17","typeDescriptions":{}}},"id":3030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12981: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":"13037: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":"13030:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":3031,"name":"bytes2","nodeType":"ElementaryTypeName","src":"13030:6:17","typeDescriptions":{}}},"id":3034,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13030:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"12981:61:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"12960:82:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"12943:99:17"},{"assignments":[3039],"declarations":[{"constant":false,"id":3039,"mutability":"mutable","name":"offset","nameLocation":"13131:6:17","nodeType":"VariableDeclaration","scope":3097,"src":"13123:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3038,"name":"uint256","nodeType":"ElementaryTypeName","src":"13123: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":"13140:9:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"13150:6:17","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"13140: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":"13140: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":"13161:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"13140:22:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13123:39:17"},{"assignments":[3047],"declarations":[{"constant":false,"id":3047,"mutability":"mutable","name":"result","nameLocation":"13181:6:17","nodeType":"VariableDeclaration","scope":3097,"src":"13173:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3046,"name":"uint256","nodeType":"ElementaryTypeName","src":"13173: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":"13190:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"13173:18:17"},{"body":{"id":3091,"nodeType":"Block","src":"13248:447:17","statements":[{"assignments":[3063],"declarations":[{"constant":false,"id":3063,"mutability":"mutable","name":"chr","nameLocation":"13268:3:17","nodeType":"VariableDeclaration","scope":3091,"src":"13262:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3062,"name":"uint8","nodeType":"ElementaryTypeName","src":"13262: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":"13317:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3069,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3051,"src":"13325: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":"13294: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":"13294: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":"13287:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":3065,"name":"bytes1","nodeType":"ElementaryTypeName","src":"13287:6:17","typeDescriptions":{}}},"id":3071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13287: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":"13274: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":"13274:55:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"13262: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":"13347: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":"13353:2:17","typeDescriptions":{"typeIdentifier":"t_rational_15_by_1","typeString":"int_const 15"},"value":"15"},"src":"13347:8:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3081,"nodeType":"IfStatement","src":"13343:31:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":3077,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13365: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":"13372: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":"13364: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":"13357:17:17"}},{"expression":{"id":3084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3082,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3047,"src":"13388: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":"13398:2:17","typeDescriptions":{"typeIdentifier":"t_rational_16_by_1","typeString":"int_const 16"},"value":"16"},"src":"13388:12:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3085,"nodeType":"ExpressionStatement","src":"13388:12:17"},{"id":3090,"nodeType":"UncheckedBlock","src":"13414: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":"13657:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":3087,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3063,"src":"13667:3:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"13657:13:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3089,"nodeType":"ExpressionStatement","src":"13657: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":"13234:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":3057,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3002,"src":"13238:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13234:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3092,"initializationExpression":{"assignments":[3051],"declarations":[{"constant":false,"id":3051,"mutability":"mutable","name":"i","nameLocation":"13214:1:17","nodeType":"VariableDeclaration","scope":3092,"src":"13206:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3050,"name":"uint256","nodeType":"ElementaryTypeName","src":"13206: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":"13218:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":3053,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3039,"src":"13226:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13218:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"13206:26:17"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":3060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"13243:3:17","subExpression":{"id":3059,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3051,"src":"13245:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3061,"nodeType":"ExpressionStatement","src":"13243:3:17"},"nodeType":"ForStatement","src":"13201:494:17"},{"expression":{"components":[{"hexValue":"74727565","id":3093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"13712:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},{"id":3094,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3047,"src":"13718:6:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3095,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"13711:14:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"functionReturnParameters":3008,"id":3096,"nodeType":"Return","src":"13704:21:17"}]},"documentation":{"id":2996,"nodeType":"StructuredDocumentation","src":"12448: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":"12689:31:17","nodeType":"FunctionDefinition","parameters":{"id":3003,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2998,"mutability":"mutable","name":"input","nameLocation":"12744:5:17","nodeType":"VariableDeclaration","scope":3098,"src":"12730:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2997,"name":"string","nodeType":"ElementaryTypeName","src":"12730:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3000,"mutability":"mutable","name":"begin","nameLocation":"12767:5:17","nodeType":"VariableDeclaration","scope":3098,"src":"12759:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2999,"name":"uint256","nodeType":"ElementaryTypeName","src":"12759:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3002,"mutability":"mutable","name":"end","nameLocation":"12790:3:17","nodeType":"VariableDeclaration","scope":3098,"src":"12782:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3001,"name":"uint256","nodeType":"ElementaryTypeName","src":"12782:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12720:79:17"},"returnParameters":{"id":3008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3005,"mutability":"mutable","name":"success","nameLocation":"12827:7:17","nodeType":"VariableDeclaration","scope":3098,"src":"12822:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3004,"name":"bool","nodeType":"ElementaryTypeName","src":"12822:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3007,"mutability":"mutable","name":"value","nameLocation":"12844:5:17","nodeType":"VariableDeclaration","scope":3098,"src":"12836:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3006,"name":"uint256","nodeType":"ElementaryTypeName","src":"12836:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12821:29:17"},"scope":3512,"src":"12680:1052:17","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":3116,"nodeType":"Block","src":"14030:67:17","statements":[{"expression":{"arguments":[{"id":3107,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3101,"src":"14060: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":"14067: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":"14076: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":"14070:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3109,"name":"bytes","nodeType":"ElementaryTypeName","src":"14070:5:17","typeDescriptions":{}}},"id":3112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14070:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3113,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14083:6:17","memberName":"length","nodeType":"MemberAccess","src":"14070: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":"14047: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":"14047:43:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":3105,"id":3115,"nodeType":"Return","src":"14040:50:17"}]},"documentation":{"id":3099,"nodeType":"StructuredDocumentation","src":"13738: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":"13964:12:17","nodeType":"FunctionDefinition","parameters":{"id":3102,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3101,"mutability":"mutable","name":"input","nameLocation":"13991:5:17","nodeType":"VariableDeclaration","scope":3117,"src":"13977:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3100,"name":"string","nodeType":"ElementaryTypeName","src":"13977:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"13976:21:17"},"returnParameters":{"id":3105,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3104,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3117,"src":"14021:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3103,"name":"address","nodeType":"ElementaryTypeName","src":"14021:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14020:9:17"},"scope":3512,"src":"13955:142:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3147,"nodeType":"Block","src":"14470:165:17","statements":[{"assignments":[3130,3132],"declarations":[{"constant":false,"id":3130,"mutability":"mutable","name":"success","nameLocation":"14486:7:17","nodeType":"VariableDeclaration","scope":3147,"src":"14481:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3129,"name":"bool","nodeType":"ElementaryTypeName","src":"14481:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3132,"mutability":"mutable","name":"value","nameLocation":"14503:5:17","nodeType":"VariableDeclaration","scope":3147,"src":"14495:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3131,"name":"address","nodeType":"ElementaryTypeName","src":"14495: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":"14528:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":3135,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3122,"src":"14535:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3136,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3124,"src":"14542: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":"14512: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":"14512:34:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"nodeType":"VariableDeclarationStatement","src":"14480:66:17"},{"condition":{"id":3140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"14560:8:17","subExpression":{"id":3139,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3130,"src":"14561:7:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3144,"nodeType":"IfStatement","src":"14556:50:17","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":3141,"name":"StringsInvalidAddressFormat","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2176,"src":"14577: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":"14577:29:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":3143,"nodeType":"RevertStatement","src":"14570:36:17"}},{"expression":{"id":3145,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3132,"src":"14623:5:17","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":3128,"id":3146,"nodeType":"Return","src":"14616:12:17"}]},"documentation":{"id":3118,"nodeType":"StructuredDocumentation","src":"14103: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":"14376:12:17","nodeType":"FunctionDefinition","parameters":{"id":3125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3120,"mutability":"mutable","name":"input","nameLocation":"14403:5:17","nodeType":"VariableDeclaration","scope":3148,"src":"14389:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3119,"name":"string","nodeType":"ElementaryTypeName","src":"14389:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3122,"mutability":"mutable","name":"begin","nameLocation":"14418:5:17","nodeType":"VariableDeclaration","scope":3148,"src":"14410:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3121,"name":"uint256","nodeType":"ElementaryTypeName","src":"14410:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3124,"mutability":"mutable","name":"end","nameLocation":"14433:3:17","nodeType":"VariableDeclaration","scope":3148,"src":"14425:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3123,"name":"uint256","nodeType":"ElementaryTypeName","src":"14425:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14388:49:17"},"returnParameters":{"id":3128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3127,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3148,"src":"14461:7:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3126,"name":"address","nodeType":"ElementaryTypeName","src":"14461:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14460:9:17"},"scope":3512,"src":"14367:268:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3168,"nodeType":"Block","src":"14942:70:17","statements":[{"expression":{"arguments":[{"id":3159,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3151,"src":"14975: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":"14982: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":"14991: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":"14985:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3161,"name":"bytes","nodeType":"ElementaryTypeName","src":"14985:5:17","typeDescriptions":{}}},"id":3164,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14985:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14998:6:17","memberName":"length","nodeType":"MemberAccess","src":"14985: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":"14959: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":"14959:46:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":3157,"id":3167,"nodeType":"Return","src":"14952:53:17"}]},"documentation":{"id":3149,"nodeType":"StructuredDocumentation","src":"14641: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":"14853:15:17","nodeType":"FunctionDefinition","parameters":{"id":3152,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3151,"mutability":"mutable","name":"input","nameLocation":"14883:5:17","nodeType":"VariableDeclaration","scope":3169,"src":"14869:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3150,"name":"string","nodeType":"ElementaryTypeName","src":"14869:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"14868:21:17"},"returnParameters":{"id":3157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3154,"mutability":"mutable","name":"success","nameLocation":"14918:7:17","nodeType":"VariableDeclaration","scope":3169,"src":"14913:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3153,"name":"bool","nodeType":"ElementaryTypeName","src":"14913:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3156,"mutability":"mutable","name":"value","nameLocation":"14935:5:17","nodeType":"VariableDeclaration","scope":3169,"src":"14927:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3155,"name":"address","nodeType":"ElementaryTypeName","src":"14927:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"14912:29:17"},"scope":3512,"src":"14844:168:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3272,"nodeType":"Block","src":"15405: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":"15419:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"expression":{"arguments":[{"id":3186,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3172,"src":"15431: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":"15425:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3184,"name":"bytes","nodeType":"ElementaryTypeName","src":"15425:5:17","typeDescriptions":{}}},"id":3187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15425:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15438:6:17","memberName":"length","nodeType":"MemberAccess","src":"15425:19:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15419: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":"15448:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":3191,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3176,"src":"15456:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15448:11:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15419:40:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3201,"nodeType":"IfStatement","src":"15415:72:17","trueBody":{"expression":{"components":[{"hexValue":"66616c7365","id":3194,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"15469: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":"15484: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":"15476:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3195,"name":"address","nodeType":"ElementaryTypeName","src":"15476:7:17","typeDescriptions":{}}},"id":3198,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15476: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":"15468:19:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":3182,"id":3200,"nodeType":"Return","src":"15461:26:17"}},{"assignments":[3203],"declarations":[{"constant":false,"id":3203,"mutability":"mutable","name":"hasPrefix","nameLocation":"15503:9:17","nodeType":"VariableDeclaration","scope":3272,"src":"15498:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3202,"name":"bool","nodeType":"ElementaryTypeName","src":"15498: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":"15516: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":"15522: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":"15530:1:17","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"15522:9:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15516:15:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":3209,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"15515: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":"15572: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":"15566:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3213,"name":"bytes","nodeType":"ElementaryTypeName","src":"15566:5:17","typeDescriptions":{}}},"id":3216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15566:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3217,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"15580: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":"15543: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":"15543: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":"15536:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":3210,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15536:6:17","typeDescriptions":{}}},"id":3219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15536: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":"15598: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":"15591:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes2_$","typeString":"type(bytes2)"},"typeName":{"id":3220,"name":"bytes2","nodeType":"ElementaryTypeName","src":"15591:6:17","typeDescriptions":{}}},"id":3223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15591:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes2","typeString":"bytes2"}},"src":"15536:67:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"15515:88:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"VariableDeclarationStatement","src":"15498:105:17"},{"assignments":[3228],"declarations":[{"constant":false,"id":3228,"mutability":"mutable","name":"expectedLength","nameLocation":"15692:14:17","nodeType":"VariableDeclaration","scope":3272,"src":"15684:22:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3227,"name":"uint256","nodeType":"ElementaryTypeName","src":"15684: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":"15709: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":"15714:9:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15724:6:17","memberName":"toUint","nodeType":"MemberAccess","referencedDeclaration":7594,"src":"15714: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":"15714: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":"15735:1:17","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"15714:22:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15709:27:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"15684: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":"15801:3:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":3238,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"15807:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15801:11:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3240,"name":"expectedLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3228,"src":"15816:14:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"15801:29:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3270,"nodeType":"Block","src":"16081:51:17","statements":[{"expression":{"components":[{"hexValue":"66616c7365","id":3263,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"16103: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":"16118: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":"16110:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3264,"name":"address","nodeType":"ElementaryTypeName","src":"16110:7:17","typeDescriptions":{}}},"id":3267,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16110: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":"16102:19:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":3182,"id":3269,"nodeType":"Return","src":"16095:26:17"}]},"id":3271,"nodeType":"IfStatement","src":"15797:335:17","trueBody":{"id":3262,"nodeType":"Block","src":"15832:243:17","statements":[{"assignments":[3243,3245],"declarations":[{"constant":false,"id":3243,"mutability":"mutable","name":"s","nameLocation":"15953:1:17","nodeType":"VariableDeclaration","scope":3262,"src":"15948:6:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3242,"name":"bool","nodeType":"ElementaryTypeName","src":"15948:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3245,"mutability":"mutable","name":"v","nameLocation":"15964:1:17","nodeType":"VariableDeclaration","scope":3262,"src":"15956:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3244,"name":"uint256","nodeType":"ElementaryTypeName","src":"15956:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3251,"initialValue":{"arguments":[{"id":3247,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3172,"src":"16001:5:17","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":3248,"name":"begin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3174,"src":"16008:5:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":3249,"name":"end","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3176,"src":"16015: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":"15969: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":"15969:50:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_uint256_$","typeString":"tuple(bool,uint256)"}},"nodeType":"VariableDeclarationStatement","src":"15947:72:17"},{"expression":{"components":[{"id":3252,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3243,"src":"16041:1:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[{"arguments":[{"id":3257,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3245,"src":"16060: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":"16052:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":3255,"name":"uint160","nodeType":"ElementaryTypeName","src":"16052:7:17","typeDescriptions":{}}},"id":3258,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16052: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":"16044:7:17","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":3253,"name":"address","nodeType":"ElementaryTypeName","src":"16044:7:17","typeDescriptions":{}}},"id":3259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16044: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":"16040:24:17","typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_address_$","typeString":"tuple(bool,address)"}},"functionReturnParameters":3182,"id":3261,"nodeType":"Return","src":"16033:31:17"}]}}]},"documentation":{"id":3170,"nodeType":"StructuredDocumentation","src":"15018: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":"15258:15:17","nodeType":"FunctionDefinition","parameters":{"id":3177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3172,"mutability":"mutable","name":"input","nameLocation":"15297:5:17","nodeType":"VariableDeclaration","scope":3273,"src":"15283:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3171,"name":"string","nodeType":"ElementaryTypeName","src":"15283:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":3174,"mutability":"mutable","name":"begin","nameLocation":"15320:5:17","nodeType":"VariableDeclaration","scope":3273,"src":"15312:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3173,"name":"uint256","nodeType":"ElementaryTypeName","src":"15312:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":3176,"mutability":"mutable","name":"end","nameLocation":"15343:3:17","nodeType":"VariableDeclaration","scope":3273,"src":"15335:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3175,"name":"uint256","nodeType":"ElementaryTypeName","src":"15335:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"15273:79:17"},"returnParameters":{"id":3182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3179,"mutability":"mutable","name":"success","nameLocation":"15381:7:17","nodeType":"VariableDeclaration","scope":3273,"src":"15376:12:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":3178,"name":"bool","nodeType":"ElementaryTypeName","src":"15376:4:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":3181,"mutability":"mutable","name":"value","nameLocation":"15398:5:17","nodeType":"VariableDeclaration","scope":3273,"src":"15390:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":3180,"name":"address","nodeType":"ElementaryTypeName","src":"15390:7:17","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"15375:29:17"},"scope":3512,"src":"15249:889:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3332,"nodeType":"Block","src":"16207:461:17","statements":[{"assignments":[3281],"declarations":[{"constant":false,"id":3281,"mutability":"mutable","name":"value","nameLocation":"16223:5:17","nodeType":"VariableDeclaration","scope":3332,"src":"16217:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3280,"name":"uint8","nodeType":"ElementaryTypeName","src":"16217:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":3286,"initialValue":{"arguments":[{"id":3284,"name":"chr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3275,"src":"16237: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":"16231:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3282,"name":"uint8","nodeType":"ElementaryTypeName","src":"16231:5:17","typeDescriptions":{}}},"id":3285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16231:10:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"16217:24:17"},{"id":3329,"nodeType":"UncheckedBlock","src":"16401: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":"16429: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":"16437:2:17","typeDescriptions":{"typeIdentifier":"t_rational_47_by_1","typeString":"int_const 47"},"value":"47"},"src":"16429: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":"16443: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":"16451:2:17","typeDescriptions":{"typeIdentifier":"t_rational_58_by_1","typeString":"int_const 58"},"value":"58"},"src":"16443:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16429: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":"16489: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":"16497:2:17","typeDescriptions":{"typeIdentifier":"t_rational_96_by_1","typeString":"int_const 96"},"value":"96"},"src":"16489: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":"16503: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":"16511:3:17","typeDescriptions":{"typeIdentifier":"t_rational_103_by_1","typeString":"int_const 103"},"value":"103"},"src":"16503:11:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16489: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":"16550: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":"16558:2:17","typeDescriptions":{"typeIdentifier":"t_rational_64_by_1","typeString":"int_const 64"},"value":"64"},"src":"16550: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":"16564: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":"16572:2:17","typeDescriptions":{"typeIdentifier":"t_rational_71_by_1","typeString":"int_const 71"},"value":"71"},"src":"16564:10:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"16550: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":"16618:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3321,"name":"uint8","nodeType":"ElementaryTypeName","src":"16618:5:17","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":3320,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"16613: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":"16613: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":"16625:3:17","memberName":"max","nodeType":"MemberAccess","src":"16613:15:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":3279,"id":3325,"nodeType":"Return","src":"16606:22:17"},"id":3326,"nodeType":"IfStatement","src":"16546: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":"16576: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":"16585:2:17","typeDescriptions":{"typeIdentifier":"t_rational_55_by_1","typeString":"int_const 55"},"value":"55"},"src":"16576:11:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":3319,"nodeType":"ExpressionStatement","src":"16576:11:17"}},"id":3327,"nodeType":"IfStatement","src":"16485: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":"16516: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":"16525:2:17","typeDescriptions":{"typeIdentifier":"t_rational_87_by_1","typeString":"int_const 87"},"value":"87"},"src":"16516:11:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":3308,"nodeType":"ExpressionStatement","src":"16516:11:17"}},"id":3328,"nodeType":"IfStatement","src":"16425: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":"16455: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":"16464:2:17","typeDescriptions":{"typeIdentifier":"t_rational_48_by_1","typeString":"int_const 48"},"value":"48"},"src":"16455:11:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":3297,"nodeType":"ExpressionStatement","src":"16455:11:17"}}]},{"expression":{"id":3330,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3281,"src":"16656:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":3279,"id":3331,"nodeType":"Return","src":"16649:12:17"}]},"id":3333,"implemented":true,"kind":"function","modifiers":[],"name":"_tryParseChr","nameLocation":"16153:12:17","nodeType":"FunctionDefinition","parameters":{"id":3276,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3275,"mutability":"mutable","name":"chr","nameLocation":"16173:3:17","nodeType":"VariableDeclaration","scope":3333,"src":"16166:10:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":3274,"name":"bytes1","nodeType":"ElementaryTypeName","src":"16166:6:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"16165:12:17"},"returnParameters":{"id":3279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3278,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3333,"src":"16200:5:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3277,"name":"uint8","nodeType":"ElementaryTypeName","src":"16200:5:17","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"16199:7:17"},"scope":3512,"src":"16144:524:17","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":3498,"nodeType":"Block","src":"17334:1331:17","statements":[{"assignments":[3342],"declarations":[{"constant":false,"id":3342,"mutability":"mutable","name":"buffer","nameLocation":"17357:6:17","nodeType":"VariableDeclaration","scope":3498,"src":"17344:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3341,"name":"bytes","nodeType":"ElementaryTypeName","src":"17344: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":"17372: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":"17366:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":3343,"name":"bytes","nodeType":"ElementaryTypeName","src":"17366:5:17","typeDescriptions":{}}},"id":3346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17366:12:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"17344:34:17"},{"assignments":[3349],"declarations":[{"constant":false,"id":3349,"mutability":"mutable","name":"output","nameLocation":"17401:6:17","nodeType":"VariableDeclaration","scope":3498,"src":"17388:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3348,"name":"bytes","nodeType":"ElementaryTypeName","src":"17388: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":"17420: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":"17424:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17431:6:17","memberName":"length","nodeType":"MemberAccess","src":"17424:13:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17420: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":"17410: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":"17414: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":"17410:28:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"17388:50:17"},{"assignments":[3359],"declarations":[{"constant":false,"id":3359,"mutability":"mutable","name":"outputLength","nameLocation":"17479:12:17","nodeType":"VariableDeclaration","scope":3498,"src":"17471:20:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3358,"name":"uint256","nodeType":"ElementaryTypeName","src":"17471: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":"17494:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"17471:24:17"},{"body":{"id":3490,"nodeType":"Block","src":"17546:854:17","statements":[{"assignments":[3373],"declarations":[{"constant":false,"id":3373,"mutability":"mutable","name":"char","nameLocation":"17567:4:17","nodeType":"VariableDeclaration","scope":3490,"src":"17560:11:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":3372,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17560: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":"17604:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":3378,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3363,"src":"17612: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":"17581: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":"17581: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":"17574:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes1_$","typeString":"type(bytes1)"},"typeName":{"id":3374,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17574:6:17","typeDescriptions":{}}},"id":3380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17574:41:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"VariableDeclarationStatement","src":"17560: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":"17635: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":"17659: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":"17670: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":"17664:5:17","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3384,"name":"uint8","nodeType":"ElementaryTypeName","src":"17664:5:17","typeDescriptions":{}}},"id":3387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17664:11:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"17659:16:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3389,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17658:18:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17635:41:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":3391,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17634: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":"17681:1:17","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"17634:48:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":3394,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"17633:50:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":3488,"nodeType":"Block","src":"18328: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":"18346: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":"18353:14:17","subExpression":{"id":3482,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"18353: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":"18346:22:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":3485,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3373,"src":"18371:4:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"src":"18346:29:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3487,"nodeType":"ExpressionStatement","src":"18346:29:17"}]},"id":3489,"nodeType":"IfStatement","src":"17629:761:17","trueBody":{"id":3480,"nodeType":"Block","src":"17685: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":"17703: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":"17710:14:17","subExpression":{"id":3396,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"17710: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":"17703: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":"17728:4:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"},"src":"17703:29:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3401,"nodeType":"ExpressionStatement","src":"17703: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":"17754: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":"17762:4:17","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"0x08"},"src":"17754: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":"17823: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":"17831:4:17","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"0x09"},"src":"17823: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":"17892: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":"17900:4:17","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"0x0a"},"src":"17892: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":"17961: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":"17969:4:17","typeDescriptions":{"typeIdentifier":"t_rational_12_by_1","typeString":"int_const 12"},"value":"0x0c"},"src":"17961: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":"18030: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":"18038:4:17","typeDescriptions":{"typeIdentifier":"t_rational_13_by_1","typeString":"int_const 13"},"value":"0x0d"},"src":"18030: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":"18099: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":"18107:4:17","typeDescriptions":{"typeIdentifier":"t_rational_92_by_1","typeString":"int_const 92"},"value":"0x5c"},"src":"18099: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":"18169: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":"18177:4:17","typeDescriptions":{"typeIdentifier":"t_rational_34_by_1","typeString":"int_const 34"},"value":"0x22"},"src":"18169:12:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3473,"nodeType":"IfStatement","src":"18165:143:17","trueBody":{"id":3472,"nodeType":"Block","src":"18183: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":"18261: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":"18268:14:17","subExpression":{"id":3466,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"18268: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":"18261: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":"18286:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_6e9f33448a4153023cdaf3eb759f1afdc24aba433a3e18b683f8c04a6eaa69f0","typeString":"literal_string \"\"\""},"value":"\""},"src":"18261:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3471,"nodeType":"ExpressionStatement","src":"18261:28:17"}]}},"id":3474,"nodeType":"IfStatement","src":"18095: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":"18113: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":"18120:14:17","subExpression":{"id":3456,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"18120: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":"18113: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":"18138:4:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_731553fa98541ade8b78284229adfe09a819380dee9244baac20dd1e0aa24095","typeString":"literal_string \"\\\""},"value":"\\"},"src":"18113:29:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3461,"nodeType":"ExpressionStatement","src":"18113:29:17"}},"id":3475,"nodeType":"IfStatement","src":"18026: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":"18044: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":"18051:14:17","subExpression":{"id":3446,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"18051: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":"18044: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":"18069:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_414f72a4d550cad29f17d9d99a4af64b3776ec5538cd440cef0f03fef2e9e010","typeString":"literal_string \"r\""},"value":"r"},"src":"18044:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3451,"nodeType":"ExpressionStatement","src":"18044:28:17"}},"id":3476,"nodeType":"IfStatement","src":"17957: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":"17975: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":"17982:14:17","subExpression":{"id":3436,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"17982: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":"17975: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":"18000:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_d1e8aeb79500496ef3dc2e57ba746a8315d048b7a664a2bf948db4fa91960483","typeString":"literal_string \"f\""},"value":"f"},"src":"17975:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3441,"nodeType":"ExpressionStatement","src":"17975:28:17"}},"id":3477,"nodeType":"IfStatement","src":"17888: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":"17906: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":"17913:14:17","subExpression":{"id":3426,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"17913: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":"17906: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":"17931:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_4b4ecedb4964a40fe416b16c7bd8b46092040ec42ef0aa69e59f09872f105cf3","typeString":"literal_string \"n\""},"value":"n"},"src":"17906:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3431,"nodeType":"ExpressionStatement","src":"17906:28:17"}},"id":3478,"nodeType":"IfStatement","src":"17819: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":"17837: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":"17844:14:17","subExpression":{"id":3416,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"17844: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":"17837: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":"17862:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_cac1bb71f0a97c8ac94ca9546b43178a9ad254c7b757ac07433aa6df35cd8089","typeString":"literal_string \"t\""},"value":"t"},"src":"17837:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3421,"nodeType":"ExpressionStatement","src":"17837:28:17"}},"id":3479,"nodeType":"IfStatement","src":"17750: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":"17768: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":"17775:14:17","subExpression":{"id":3406,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3359,"src":"17775: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":"17768: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":"17793:3:17","typeDescriptions":{"typeIdentifier":"t_stringliteral_b5553de315e0edf504d9150af82dafa5c4667fa618ed0a6f19c69b41166c5510","typeString":"literal_string \"b\""},"value":"b"},"src":"17768:28:17","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"id":3411,"nodeType":"ExpressionStatement","src":"17768: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":"17522:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":3366,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3342,"src":"17526:6:17","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":3367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"17533:6:17","memberName":"length","nodeType":"MemberAccess","src":"17526:13:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17522:17:17","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":3491,"initializationExpression":{"assignments":[3363],"declarations":[{"constant":false,"id":3363,"mutability":"mutable","name":"i","nameLocation":"17519:1:17","nodeType":"VariableDeclaration","scope":3491,"src":"17511:9:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3362,"name":"uint256","nodeType":"ElementaryTypeName","src":"17511:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":3364,"nodeType":"VariableDeclarationStatement","src":"17511:9:17"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":3370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"17541:3:17","subExpression":{"id":3369,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3363,"src":"17543:1:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":3371,"nodeType":"ExpressionStatement","src":"17541:3:17"},"nodeType":"ForStatement","src":"17506:894:17"},{"AST":{"nativeSrc":"18498:129:17","nodeType":"YulBlock","src":"18498:129:17","statements":[{"expression":{"arguments":[{"name":"output","nativeSrc":"18519:6:17","nodeType":"YulIdentifier","src":"18519:6:17"},{"name":"outputLength","nativeSrc":"18527:12:17","nodeType":"YulIdentifier","src":"18527:12:17"}],"functionName":{"name":"mstore","nativeSrc":"18512:6:17","nodeType":"YulIdentifier","src":"18512:6:17"},"nativeSrc":"18512:28:17","nodeType":"YulFunctionCall","src":"18512:28:17"},"nativeSrc":"18512:28:17","nodeType":"YulExpressionStatement","src":"18512:28:17"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18560:4:17","nodeType":"YulLiteral","src":"18560:4:17","type":"","value":"0x40"},{"arguments":[{"name":"output","nativeSrc":"18570:6:17","nodeType":"YulIdentifier","src":"18570:6:17"},{"arguments":[{"kind":"number","nativeSrc":"18582:1:17","nodeType":"YulLiteral","src":"18582:1:17","type":"","value":"5"},{"arguments":[{"kind":"number","nativeSrc":"18589:1:17","nodeType":"YulLiteral","src":"18589:1:17","type":"","value":"5"},{"arguments":[{"name":"outputLength","nativeSrc":"18596:12:17","nodeType":"YulIdentifier","src":"18596:12:17"},{"kind":"number","nativeSrc":"18610:2:17","nodeType":"YulLiteral","src":"18610:2:17","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"18592:3:17","nodeType":"YulIdentifier","src":"18592:3:17"},"nativeSrc":"18592:21:17","nodeType":"YulFunctionCall","src":"18592:21:17"}],"functionName":{"name":"shr","nativeSrc":"18585:3:17","nodeType":"YulIdentifier","src":"18585:3:17"},"nativeSrc":"18585:29:17","nodeType":"YulFunctionCall","src":"18585:29:17"}],"functionName":{"name":"shl","nativeSrc":"18578:3:17","nodeType":"YulIdentifier","src":"18578:3:17"},"nativeSrc":"18578:37:17","nodeType":"YulFunctionCall","src":"18578:37:17"}],"functionName":{"name":"add","nativeSrc":"18566:3:17","nodeType":"YulIdentifier","src":"18566:3:17"},"nativeSrc":"18566:50:17","nodeType":"YulFunctionCall","src":"18566:50:17"}],"functionName":{"name":"mstore","nativeSrc":"18553:6:17","nodeType":"YulIdentifier","src":"18553:6:17"},"nativeSrc":"18553:64:17","nodeType":"YulFunctionCall","src":"18553:64:17"},"nativeSrc":"18553:64:17","nodeType":"YulExpressionStatement","src":"18553:64:17"}]},"evmVersion":"shanghai","externalReferences":[{"declaration":3349,"isOffset":false,"isSlot":false,"src":"18519:6:17","valueSize":1},{"declaration":3349,"isOffset":false,"isSlot":false,"src":"18570:6:17","valueSize":1},{"declaration":3359,"isOffset":false,"isSlot":false,"src":"18527:12:17","valueSize":1},{"declaration":3359,"isOffset":false,"isSlot":false,"src":"18596:12:17","valueSize":1}],"flags":["memory-safe"],"id":3492,"nodeType":"InlineAssembly","src":"18473:154:17"},{"expression":{"arguments":[{"id":3495,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3349,"src":"18651: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":"18644:6:17","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":3493,"name":"string","nodeType":"ElementaryTypeName","src":"18644:6:17","typeDescriptions":{}}},"id":3496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18644:14:17","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":3340,"id":3497,"nodeType":"Return","src":"18637:21:17"}]},"documentation":{"id":3334,"nodeType":"StructuredDocumentation","src":"16674: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":"17264:10:17","nodeType":"FunctionDefinition","parameters":{"id":3337,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3336,"mutability":"mutable","name":"input","nameLocation":"17289:5:17","nodeType":"VariableDeclaration","scope":3499,"src":"17275:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3335,"name":"string","nodeType":"ElementaryTypeName","src":"17275:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17274:21:17"},"returnParameters":{"id":3340,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3339,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3499,"src":"17319:13:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":3338,"name":"string","nodeType":"ElementaryTypeName","src":"17319:6:17","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17318:15:17"},"scope":3512,"src":"17255:1410:17","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3510,"nodeType":"Block","src":"19050:225:17","statements":[{"AST":{"nativeSrc":"19199:70:17","nodeType":"YulBlock","src":"19199:70:17","statements":[{"nativeSrc":"19213:46:17","nodeType":"YulAssignment","src":"19213:46:17","value":{"arguments":[{"arguments":[{"name":"buffer","nativeSrc":"19232:6:17","nodeType":"YulIdentifier","src":"19232:6:17"},{"arguments":[{"kind":"number","nativeSrc":"19244:4:17","nodeType":"YulLiteral","src":"19244:4:17","type":"","value":"0x20"},{"name":"offset","nativeSrc":"19250:6:17","nodeType":"YulIdentifier","src":"19250:6:17"}],"functionName":{"name":"add","nativeSrc":"19240:3:17","nodeType":"YulIdentifier","src":"19240:3:17"},"nativeSrc":"19240:17:17","nodeType":"YulFunctionCall","src":"19240:17:17"}],"functionName":{"name":"add","nativeSrc":"19228:3:17","nodeType":"YulIdentifier","src":"19228:3:17"},"nativeSrc":"19228:30:17","nodeType":"YulFunctionCall","src":"19228:30:17"}],"functionName":{"name":"mload","nativeSrc":"19222:5:17","nodeType":"YulIdentifier","src":"19222:5:17"},"nativeSrc":"19222:37:17","nodeType":"YulFunctionCall","src":"19222:37:17"},"variableNames":[{"name":"value","nativeSrc":"19213:5:17","nodeType":"YulIdentifier","src":"19213:5:17"}]}]},"evmVersion":"shanghai","externalReferences":[{"declaration":3502,"isOffset":false,"isSlot":false,"src":"19232:6:17","valueSize":1},{"declaration":3504,"isOffset":false,"isSlot":false,"src":"19250:6:17","valueSize":1},{"declaration":3507,"isOffset":false,"isSlot":false,"src":"19213:5:17","valueSize":1}],"flags":["memory-safe"],"id":3509,"nodeType":"InlineAssembly","src":"19174:95:17"}]},"documentation":{"id":3500,"nodeType":"StructuredDocumentation","src":"18671: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":"18953:22:17","nodeType":"FunctionDefinition","parameters":{"id":3505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3502,"mutability":"mutable","name":"buffer","nameLocation":"18989:6:17","nodeType":"VariableDeclaration","scope":3511,"src":"18976:19:17","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":3501,"name":"bytes","nodeType":"ElementaryTypeName","src":"18976:5:17","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":3504,"mutability":"mutable","name":"offset","nameLocation":"19005:6:17","nodeType":"VariableDeclaration","scope":3511,"src":"18997:14:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3503,"name":"uint256","nodeType":"ElementaryTypeName","src":"18997:7:17","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18975:37:17"},"returnParameters":{"id":3508,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3507,"mutability":"mutable","name":"value","nameLocation":"19043:5:17","nodeType":"VariableDeclaration","scope":3511,"src":"19035:13:17","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":3506,"name":"bytes32","nodeType":"ElementaryTypeName","src":"19035:7:17","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"19034:15:17"},"scope":3512,"src":"18944:331:17","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":3513,"src":"297:18980:17","usedErrors":[2170,2173,2176],"usedEvents":[]}],"src":"101:19177: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":"shanghai","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":"5571:229:19","statements":[{"expression":{"components":[{"hexValue":"0f","id":4039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"5602: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":"5632: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":"5632: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":"5659: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":"5659:16:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"expression":{"id":4044,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5689:5:19","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5695:7:19","memberName":"chainid","nodeType":"MemberAccess","src":"5689:13:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":4048,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5724: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":"5716:7:19","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4046,"name":"address","nodeType":"ElementaryTypeName","src":"5716:7:19","typeDescriptions":{}}},"id":4049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5716: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":"5751: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":"5743:7:19","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":4050,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5743:7:19","typeDescriptions":{}}},"id":4053,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5743: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":"5781: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":"5767: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":"5771:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4055,"nodeType":"ArrayTypeName","src":"5771: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":"5767: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":"5588: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":"5581:212:19"}]},"documentation":{"id":4021,"nodeType":"StructuredDocumentation","src":"5199:39:19","text":" @inheritdoc IERC5267"},"functionSelector":"84b0196e","id":4062,"implemented":true,"kind":"function","modifiers":[],"name":"eip712Domain","nameLocation":"5252:12:19","nodeType":"FunctionDefinition","parameters":{"id":4022,"nodeType":"ParameterList","parameters":[],"src":"5264:2:19"},"returnParameters":{"id":4038,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4024,"mutability":"mutable","name":"fields","nameLocation":"5348:6:19","nodeType":"VariableDeclaration","scope":4062,"src":"5341:13:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":4023,"name":"bytes1","nodeType":"ElementaryTypeName","src":"5341:6:19","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"},{"constant":false,"id":4026,"mutability":"mutable","name":"name","nameLocation":"5382:4:19","nodeType":"VariableDeclaration","scope":4062,"src":"5368:18:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4025,"name":"string","nodeType":"ElementaryTypeName","src":"5368:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4028,"mutability":"mutable","name":"version","nameLocation":"5414:7:19","nodeType":"VariableDeclaration","scope":4062,"src":"5400:21:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4027,"name":"string","nodeType":"ElementaryTypeName","src":"5400:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":4030,"mutability":"mutable","name":"chainId","nameLocation":"5443:7:19","nodeType":"VariableDeclaration","scope":4062,"src":"5435:15:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4029,"name":"uint256","nodeType":"ElementaryTypeName","src":"5435:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4032,"mutability":"mutable","name":"verifyingContract","nameLocation":"5472:17:19","nodeType":"VariableDeclaration","scope":4062,"src":"5464:25:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4031,"name":"address","nodeType":"ElementaryTypeName","src":"5464:7:19","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4034,"mutability":"mutable","name":"salt","nameLocation":"5511:4:19","nodeType":"VariableDeclaration","scope":4062,"src":"5503:12:19","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4033,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5503:7:19","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4037,"mutability":"mutable","name":"extensions","nameLocation":"5546:10:19","nodeType":"VariableDeclaration","scope":4062,"src":"5529: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":"5529:7:19","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4036,"nodeType":"ArrayTypeName","src":"5529:9:19","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_storage_ptr","typeString":"uint256[]"}},"visibility":"internal"}],"src":"5327:239:19"},"scope":4087,"src":"5243:557:19","stateMutability":"view","virtual":true,"visibility":"public"},{"body":{"id":4073,"nodeType":"Block","src":"6181:65:19","statements":[{"expression":{"arguments":[{"id":4070,"name":"_nameFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3897,"src":"6225: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":"6198:5:19","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"id":4069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6204:20:19","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":1954,"src":"6198: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":"6198:41:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":4067,"id":4072,"nodeType":"Return","src":"6191:48:19"}]},"documentation":{"id":4063,"nodeType":"StructuredDocumentation","src":"5806: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":"6129:11:19","nodeType":"FunctionDefinition","parameters":{"id":4064,"nodeType":"ParameterList","parameters":[],"src":"6140:2:19"},"returnParameters":{"id":4067,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4066,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4074,"src":"6166:13:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4065,"name":"string","nodeType":"ElementaryTypeName","src":"6166:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6165:15:19"},"scope":4087,"src":"6120:126:19","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":4085,"nodeType":"Block","src":"6636:71:19","statements":[{"expression":{"arguments":[{"id":4082,"name":"_versionFallback","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3899,"src":"6683: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":"6653:8:19","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_ShortString_$1775","typeString":"ShortString"}},"id":4081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6662:20:19","memberName":"toStringWithFallback","nodeType":"MemberAccess","referencedDeclaration":1954,"src":"6653: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":"6653:47:19","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":4079,"id":4084,"nodeType":"Return","src":"6646:54:19"}]},"documentation":{"id":4075,"nodeType":"StructuredDocumentation","src":"6252: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":"6581:14:19","nodeType":"FunctionDefinition","parameters":{"id":4076,"nodeType":"ParameterList","parameters":[],"src":"6595:2:19"},"returnParameters":{"id":4079,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4078,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4086,"src":"6621:13:19","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":4077,"name":"string","nodeType":"ElementaryTypeName","src":"6621:6:19","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6620:15:19"},"scope":4087,"src":"6572:135:19","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":4088,"src":"1960:4749:19","usedErrors":[1783,1785],"usedEvents":[653]}],"src":"113:6597: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":"shanghai","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":"shanghai","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":"shanghai","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":"845: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":"862:11:21","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[{"id":4190,"name":"IERC165","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4209,"src":"882: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":"877: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":"877: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":"891:11:21","memberName":"interfaceId","nodeType":"MemberAccess","src":"877:25:21","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"src":"862:40:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":4187,"id":4194,"nodeType":"Return","src":"855:47:21"}]},"documentation":{"id":4181,"nodeType":"StructuredDocumentation","src":"702:56:21","text":" @dev See {IERC165-supportsInterface}."},"functionSelector":"01ffc9a7","id":4196,"implemented":true,"kind":"function","modifiers":[],"name":"supportsInterface","nameLocation":"772:17:21","nodeType":"FunctionDefinition","parameters":{"id":4184,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4183,"mutability":"mutable","name":"interfaceId","nameLocation":"797:11:21","nodeType":"VariableDeclaration","scope":4196,"src":"790:18:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4182,"name":"bytes4","nodeType":"ElementaryTypeName","src":"790:6:21","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"789:20:21"},"returnParameters":{"id":4187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4186,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4196,"src":"839:4:21","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4185,"name":"bool","nodeType":"ElementaryTypeName","src":"839:4:21","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"838:6:21"},"scope":4197,"src":"763:146:21","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":4198,"src":"660:251:21","usedErrors":[],"usedEvents":[]}],"src":"114:798: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.8",".20"],"nodeType":"PragmaDirective","src":"115:24:22"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC165","contractDependencies":[],"contractKind":"interface","documentation":{"id":4200,"nodeType":"StructuredDocumentation","src":"141: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":"432:7:22","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":4201,"nodeType":"StructuredDocumentation","src":"446: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":"800:17:22","nodeType":"FunctionDefinition","parameters":{"id":4204,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4203,"mutability":"mutable","name":"interfaceId","nameLocation":"825:11:22","nodeType":"VariableDeclaration","scope":4208,"src":"818:18:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":4202,"name":"bytes4","nodeType":"ElementaryTypeName","src":"818:6:22","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"817:20:22"},"returnParameters":{"id":4207,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4206,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4208,"src":"861:4:22","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":4205,"name":"bool","nodeType":"ElementaryTypeName","src":"861:4:22","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"860:6:22"},"scope":4209,"src":"791:76:22","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":4210,"src":"422:447:22","usedErrors":[],"usedEvents":[]}],"src":"115:755: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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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":"shanghai","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",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"45:31:26"},{"abstract":false,"baseContracts":[],"canonicalName":"Create3","contractDependencies":[],"contractKind":"library","documentation":{"id":7742,"nodeType":"StructuredDocumentation","src":"80: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":"361:7:26","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":7745,"mutability":"constant","name":"CREATE3_FACTORY_BYTECODE","nameLocation":"2299:24:26","nodeType":"VariableDeclaration","scope":7886,"src":"2275:103:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7743,"name":"bytes","nodeType":"ElementaryTypeName","src":"2275: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":"2326: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":"2411:24:26","nodeType":"VariableDeclaration","scope":7886,"src":"2385:88:26","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7746,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2385:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"id":7748,"name":"CREATE3_FACTORY_BYTECODE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7745,"src":"2448: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":"2438: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":"2438:35:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"body":{"id":7766,"nodeType":"Block","src":"2984:57:26","statements":[{"expression":{"arguments":[{"id":7761,"name":"_salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7753,"src":"3009:5:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":7762,"name":"_creationCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7755,"src":"3016: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":"3031: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":"3002: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":"3002:31:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":7759,"id":7765,"nodeType":"Return","src":"2995:38:26"}]},"documentation":{"id":7751,"nodeType":"StructuredDocumentation","src":"2482: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":"2883:6:26","nodeType":"FunctionDefinition","parameters":{"id":7756,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7753,"mutability":"mutable","name":"_salt","nameLocation":"2898:5:26","nodeType":"VariableDeclaration","scope":7767,"src":"2890:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7752,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2890:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7755,"mutability":"mutable","name":"_creationCode","nameLocation":"2918:13:26","nodeType":"VariableDeclaration","scope":7767,"src":"2905:26:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7754,"name":"bytes","nodeType":"ElementaryTypeName","src":"2905:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2889:43:26"},"returnParameters":{"id":7759,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7758,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7767,"src":"2970:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7757,"name":"address","nodeType":"ElementaryTypeName","src":"2970:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2969:9:26"},"scope":7886,"src":"2874:167:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7833,"nodeType":"Block","src":"3659: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":"3707:9:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":7781,"name":"_salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7770,"src":"3733: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":"3719: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":"3719:20:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"3707:32:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7784,"nodeType":"ExpressionStatement","src":"3707: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":"3754:9:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3764:4:26","memberName":"code","nodeType":"MemberAccess","src":"3754:14:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3769:6:26","memberName":"length","nodeType":"MemberAccess","src":"3754: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":"3779:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"3754:26:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7794,"nodeType":"IfStatement","src":"3750:72:26","trueBody":{"expression":{"arguments":[{"hexValue":"437265617465333a2074617267657420616c726561647920657869737473","id":7791,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3789: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":"3782: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":"3782:40:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7793,"nodeType":"ExpressionStatement","src":"3782:40:26"}},{"assignments":[7796],"declarations":[{"constant":false,"id":7796,"mutability":"mutable","name":"_factory","nameLocation":"3870:8:26","nodeType":"VariableDeclaration","scope":7833,"src":"3862:16:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7795,"name":"address","nodeType":"ElementaryTypeName","src":"3862:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":7797,"nodeType":"VariableDeclarationStatement","src":"3862:16:26"},{"assignments":[7799],"declarations":[{"constant":false,"id":7799,"mutability":"mutable","name":"_factoryBytecode","nameLocation":"3902:16:26","nodeType":"VariableDeclaration","scope":7833,"src":"3889:29:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7798,"name":"bytes","nodeType":"ElementaryTypeName","src":"3889: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":"3921:24:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"3889:56:26"},{"AST":{"nativeSrc":"4009:271:26","nodeType":"YulBlock","src":"4009:271:26","statements":[{"nativeSrc":"4188:81:26","nodeType":"YulAssignment","src":"4188:81:26","value":{"arguments":[{"kind":"number","nativeSrc":"4208:1:26","nodeType":"YulLiteral","src":"4208:1:26","type":"","value":"0"},{"arguments":[{"name":"_factoryBytecode","nativeSrc":"4215:16:26","nodeType":"YulIdentifier","src":"4215:16:26"},{"kind":"number","nativeSrc":"4233:2:26","nodeType":"YulLiteral","src":"4233:2:26","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4211:3:26","nodeType":"YulIdentifier","src":"4211:3:26"},"nativeSrc":"4211:25:26","nodeType":"YulFunctionCall","src":"4211:25:26"},{"arguments":[{"name":"_factoryBytecode","nativeSrc":"4244:16:26","nodeType":"YulIdentifier","src":"4244:16:26"}],"functionName":{"name":"mload","nativeSrc":"4238:5:26","nodeType":"YulIdentifier","src":"4238:5:26"},"nativeSrc":"4238:23:26","nodeType":"YulFunctionCall","src":"4238:23:26"},{"name":"_salt","nativeSrc":"4263:5:26","nodeType":"YulIdentifier","src":"4263:5:26"}],"functionName":{"name":"create2","nativeSrc":"4200:7:26","nodeType":"YulIdentifier","src":"4200:7:26"},"nativeSrc":"4200:69:26","nodeType":"YulFunctionCall","src":"4200:69:26"},"variableNames":[{"name":"_factory","nativeSrc":"4188:8:26","nodeType":"YulIdentifier","src":"4188:8:26"}]}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"shanghai","externalReferences":[{"declaration":7796,"isOffset":false,"isSlot":false,"src":"4188:8:26","valueSize":1},{"declaration":7799,"isOffset":false,"isSlot":false,"src":"4215:16:26","valueSize":1},{"declaration":7799,"isOffset":false,"isSlot":false,"src":"4244:16:26","valueSize":1},{"declaration":7770,"isOffset":false,"isSlot":false,"src":"4263:5:26","valueSize":1}],"id":7802,"nodeType":"InlineAssembly","src":"4000: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":"4298: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":"4318: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":"4310:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7805,"name":"address","nodeType":"ElementaryTypeName","src":"4310:7:26","typeDescriptions":{}}},"id":7808,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4310:10:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"4298: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":"4322: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":"4290: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":"4290:66:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7812,"nodeType":"ExpressionStatement","src":"4290:66:26"},{"assignments":[7814,null],"declarations":[{"constant":false,"id":7814,"mutability":"mutable","name":"_success","nameLocation":"4423:8:26","nodeType":"VariableDeclaration","scope":7833,"src":"4418:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":7813,"name":"bool","nodeType":"ElementaryTypeName","src":"4418: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":"4466: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":"4437:8:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7816,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4446:4:26","memberName":"call","nodeType":"MemberAccess","src":"4437: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":"4458:6:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"4437: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":"4437:43:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"4417: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":"4499: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":"4511:9:26","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4521:4:26","memberName":"code","nodeType":"MemberAccess","src":"4511:14:26","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":7826,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4526:6:26","memberName":"length","nodeType":"MemberAccess","src":"4511: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":"4536:1:26","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"4511:26:26","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"4499: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":"4539: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":"4491: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":"4491:81:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7832,"nodeType":"ExpressionStatement","src":"4491:81:26"}]},"documentation":{"id":7768,"nodeType":"StructuredDocumentation","src":"3049: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":"3533:6:26","nodeType":"FunctionDefinition","parameters":{"id":7775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7770,"mutability":"mutable","name":"_salt","nameLocation":"3548:5:26","nodeType":"VariableDeclaration","scope":7834,"src":"3540:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7769,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3540:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":7772,"mutability":"mutable","name":"_creationCode","nameLocation":"3568:13:26","nodeType":"VariableDeclaration","scope":7834,"src":"3555:26:26","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7771,"name":"bytes","nodeType":"ElementaryTypeName","src":"3555:5:26","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":7774,"mutability":"mutable","name":"_value","nameLocation":"3591:6:26","nodeType":"VariableDeclaration","scope":7834,"src":"3583:14:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7773,"name":"uint256","nodeType":"ElementaryTypeName","src":"3583:7:26","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3539:59:26"},"returnParameters":{"id":7778,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7777,"mutability":"mutable","name":"_deployed","nameLocation":"3643:9:26","nodeType":"VariableDeclaration","scope":7834,"src":"3635:17:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7776,"name":"address","nodeType":"ElementaryTypeName","src":"3635:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3634:19:26"},"scope":7886,"src":"3524:1056:26","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7884,"nodeType":"Block","src":"5092:1093:26","statements":[{"assignments":[7843],"declarations":[{"constant":false,"id":7843,"mutability":"mutable","name":"_factory","nameLocation":"5111:8:26","nodeType":"VariableDeclaration","scope":7884,"src":"5103:16:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7842,"name":"address","nodeType":"ElementaryTypeName","src":"5103: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":"5283:7:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_8b1a944cf13a9a1c08facb2c9e98623ef3254d2ddb48113885c3e8e97fec8db9","typeString":"literal_string hex\"ff\""}},{"arguments":[{"id":7856,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"5329: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":"5321:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7854,"name":"address","nodeType":"ElementaryTypeName","src":"5321:7:26","typeDescriptions":{}}},"id":7857,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5321:13:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7858,"name":"_salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7837,"src":"5365:5:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":7859,"name":"CREATE3_FACTORY_CODEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7750,"src":"5401: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":"5236:3:26","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":7852,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5240:12:26","memberName":"encodePacked","nodeType":"MemberAccess","src":"5236: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":"5236: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":"5200: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":"5200: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":"5170:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7848,"name":"uint256","nodeType":"ElementaryTypeName","src":"5170:7:26","typeDescriptions":{}}},"id":7862,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5170: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":"5144:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":7846,"name":"uint160","nodeType":"ElementaryTypeName","src":"5144:7:26","typeDescriptions":{}}},"id":7863,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5144: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":"5122:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7844,"name":"address","nodeType":"ElementaryTypeName","src":"5122:7:26","typeDescriptions":{}}},"id":7864,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5122:398:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"5103: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":"5910:10:26","typeDescriptions":{"typeIdentifier":"t_stringliteral_4fdc04d28c8d22070e5fd0f23f00bae0b21cc4e5091b5fd7a9cad9babd3668cf","typeString":"literal_string hex\"d694\""},"value":"֔"},{"id":7876,"name":"_factory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7843,"src":"5951: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":"6075: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":"5652:3:26","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":7874,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5656:12:26","memberName":"encodePacked","nodeType":"MemberAccess","src":"5652: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":"5652: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":"5616: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":"5616: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":"5586:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":7870,"name":"uint256","nodeType":"ElementaryTypeName","src":"5586:7:26","typeDescriptions":{}}},"id":7880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5586: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":"5560:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":7868,"name":"uint160","nodeType":"ElementaryTypeName","src":"5560:7:26","typeDescriptions":{}}},"id":7881,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5560: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":"5538:7:26","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7866,"name":"address","nodeType":"ElementaryTypeName","src":"5538:7:26","typeDescriptions":{}}},"id":7882,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5538:639:26","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":7841,"id":7883,"nodeType":"Return","src":"5531:646:26"}]},"documentation":{"id":7835,"nodeType":"StructuredDocumentation","src":"4588: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":"5031:13:26","nodeType":"FunctionDefinition","parameters":{"id":7838,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7837,"mutability":"mutable","name":"_salt","nameLocation":"5053:5:26","nodeType":"VariableDeclaration","scope":7885,"src":"5045:13:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":7836,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5045:7:26","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5044:15:26"},"returnParameters":{"id":7841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7840,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7885,"src":"5083:7:26","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7839,"name":"address","nodeType":"ElementaryTypeName","src":"5083:7:26","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5082:9:26"},"scope":7886,"src":"5022:1163:26","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":7887,"src":"353:5837:26","usedErrors":[],"usedEvents":[]}],"src":"45:6145:26"},"id":26},"contracts/IWrappedWIT.sol":{"ast":{"absolutePath":"contracts/IWrappedWIT.sol","exportedSymbols":{"Bech32":[12052],"IWitAppliance":[9842],"IWitOracle":[9907],"IWitOracleAppliance":[9919],"IWitOracleQueriable":[10102],"IWitOracleQueriableEvents":[10199],"IWitOracleRadonRegistry":[10468],"IWrappedWIT":[8046],"Secp256k1":[13068],"WitOracle":[9767],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":8047,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":7888,"literals":["solidity","0.8",".28"],"nodeType":"PragmaDirective","src":"35:23:27"},{"absolutePath":"witnet-solidity-bridge/contracts/WitOracle.sol","file":"witnet-solidity-bridge/contracts/WitOracle.sol","id":7889,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":8047,"sourceUnit":9768,"src":"62:56:27","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWrappedWIT","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":8046,"linearizedBaseContracts":[8046],"name":"IWrappedWIT","nameLocation":"132:11:27","nodeType":"ContractDefinition","nodes":[{"errorSelector":"82b42900","id":7891,"name":"Unauthorized","nameLocation":"159:12:27","nodeType":"ErrorDefinition","parameters":{"id":7890,"nodeType":"ParameterList","parameters":[],"src":"171:2:27"},"src":"153:21:27"},{"anonymous":false,"eventSelector":"c63757acc12b39558fe5b88c5393e4b0353ffddaae3a2d07e121a8fc62d39c37","id":7897,"name":"CuratorshipTransferred","nameLocation":"188:22:27","nodeType":"EventDefinition","parameters":{"id":7896,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7893,"indexed":true,"mutability":"mutable","name":"evmPrevCurator","nameLocation":"227:14:27","nodeType":"VariableDeclaration","scope":7897,"src":"211:30:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7892,"name":"address","nodeType":"ElementaryTypeName","src":"211:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7895,"indexed":true,"mutability":"mutable","name":"evmNewCurator","nameLocation":"259:13:27","nodeType":"VariableDeclaration","scope":7897,"src":"243:29:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7894,"name":"address","nodeType":"ElementaryTypeName","src":"243:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"210:63:27"},"src":"182:92:27"},{"anonymous":false,"eventSelector":"c373fbd4edf171c216b9195c4184b9da9a43e8baf2d461ad9256fe43922f6a96","id":7901,"name":"NewUnwrapper","nameLocation":"286:12:27","nodeType":"EventDefinition","parameters":{"id":7900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7899,"indexed":false,"mutability":"mutable","name":"witUnwrapper","nameLocation":"306:12:27","nodeType":"VariableDeclaration","scope":7901,"src":"299:19:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7898,"name":"string","nodeType":"ElementaryTypeName","src":"299:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"298:21:27"},"src":"280:40:27"},{"anonymous":false,"eventSelector":"8a01b18bdca3d556adc5e6a85f562b83d2c1933f166e93421ff507cfccb09a07","id":7911,"name":"ReserveUpdate","nameLocation":"332:13:27","nodeType":"EventDefinition","parameters":{"id":7910,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7903,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"354:5:27","nodeType":"VariableDeclaration","scope":7911,"src":"346:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7902,"name":"uint256","nodeType":"ElementaryTypeName","src":"346:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7906,"indexed":false,"mutability":"mutable","name":"timestamp","nameLocation":"378:9:27","nodeType":"VariableDeclaration","scope":7911,"src":"361:26:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":7905,"nodeType":"UserDefinedTypeName","pathNode":{"id":7904,"name":"Witnet.Timestamp","nameLocations":["361:6:27","368:9:27"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"361:16:27"},"referencedDeclaration":13106,"src":"361:16:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":7909,"indexed":false,"mutability":"mutable","name":"witDrtHash","nameLocation":"412:10:27","nodeType":"VariableDeclaration","scope":7911,"src":"389:33:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":7908,"nodeType":"UserDefinedTypeName","pathNode":{"id":7907,"name":"Witnet.TransactionHash","nameLocations":["389:6:27","396:15:27"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"389:22:27"},"referencedDeclaration":13108,"src":"389:22:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"345:78:27"},"src":"326:98:27"},{"anonymous":false,"eventSelector":"bae099c209765c02c309f0fac06aec3ac516a3cc60d09f1a3da4b52d673d28a3","id":7922,"name":"Wrapped","nameLocation":"436:7:27","nodeType":"EventDefinition","parameters":{"id":7921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7913,"indexed":false,"mutability":"mutable","name":"witSender","nameLocation":"451:9:27","nodeType":"VariableDeclaration","scope":7922,"src":"444:16:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7912,"name":"string","nodeType":"ElementaryTypeName","src":"444:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7915,"indexed":false,"mutability":"mutable","name":"evmRecipient","nameLocation":"470:12:27","nodeType":"VariableDeclaration","scope":7922,"src":"462:20:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7914,"name":"address","nodeType":"ElementaryTypeName","src":"462:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7917,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"492:5:27","nodeType":"VariableDeclaration","scope":7922,"src":"484:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7916,"name":"uint256","nodeType":"ElementaryTypeName","src":"484:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7920,"indexed":false,"mutability":"mutable","name":"witVttHash","nameLocation":"522:10:27","nodeType":"VariableDeclaration","scope":7922,"src":"499:33:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":7919,"nodeType":"UserDefinedTypeName","pathNode":{"id":7918,"name":"Witnet.TransactionHash","nameLocations":["499:6:27","506:15:27"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"499:22:27"},"referencedDeclaration":13108,"src":"499:22:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"443:90:27"},"src":"430:104:27"},{"anonymous":false,"eventSelector":"0ac1547df8510f30b54430e0e4e1e93ce326490aec9cebf0f78b8faa55dc1ded","id":7932,"name":"Unwrapped","nameLocation":"546:9:27","nodeType":"EventDefinition","parameters":{"id":7931,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7924,"indexed":false,"mutability":"mutable","name":"evmSender","nameLocation":"564:9:27","nodeType":"VariableDeclaration","scope":7932,"src":"556:17:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7923,"name":"address","nodeType":"ElementaryTypeName","src":"556:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7926,"indexed":false,"mutability":"mutable","name":"witRecipient","nameLocation":"582:12:27","nodeType":"VariableDeclaration","scope":7932,"src":"575:19:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7925,"name":"string","nodeType":"ElementaryTypeName","src":"575:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":7928,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"604:5:27","nodeType":"VariableDeclaration","scope":7932,"src":"596:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7927,"name":"uint256","nodeType":"ElementaryTypeName","src":"596:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7930,"indexed":false,"mutability":"mutable","name":"nonce","nameLocation":"619:5:27","nodeType":"VariableDeclaration","scope":7932,"src":"611:13:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7929,"name":"uint256","nodeType":"ElementaryTypeName","src":"611:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"555:70:27"},"src":"540:86:27"},{"canonicalName":"IWrappedWIT.WitOracleSettings","id":7939,"members":[{"constant":false,"id":7934,"mutability":"mutable","name":"minWitnesses","nameLocation":"677:12:27","nodeType":"VariableDeclaration","scope":7939,"src":"670:19:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":7933,"name":"uint16","nodeType":"ElementaryTypeName","src":"670:6:27","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":7936,"mutability":"mutable","name":"baseFeeOverhead100","nameLocation":"707:18:27","nodeType":"VariableDeclaration","scope":7939,"src":"700:25:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":7935,"name":"uint16","nodeType":"ElementaryTypeName","src":"700:6:27","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":7938,"mutability":"mutable","name":"unitaryRewardNanowits","nameLocation":"743:21:27","nodeType":"VariableDeclaration","scope":7939,"src":"736:28:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":7937,"name":"uint64","nodeType":"ElementaryTypeName","src":"736:6:27","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"name":"WitOracleSettings","nameLocation":"641:17:27","nodeType":"StructDefinition","scope":8046,"src":"634:138:27","visibility":"public"},{"canonicalName":"IWrappedWIT.WrappingStatus","id":7944,"members":[{"id":7940,"name":"Unknown","nameLocation":"811:7:27","nodeType":"EnumValue","src":"811:7:27"},{"id":7941,"name":"Awaiting","nameLocation":"829:8:27","nodeType":"EnumValue","src":"829:8:27"},{"id":7942,"name":"Retry","nameLocation":"848:5:27","nodeType":"EnumValue","src":"848:5:27"},{"id":7943,"name":"Done","nameLocation":"864:4:27","nodeType":"EnumValue","src":"864:4:27"}],"name":"WrappingStatus","nameLocation":"785:14:27","nodeType":"EnumDefinition","src":"780:95:27"},{"documentation":{"id":7945,"nodeType":"StructuredDocumentation","src":"883:115:27","text":"--- Read-only methods -----------------------------------------------------------------------------------------"},"functionSelector":"01367f73","id":7950,"implemented":false,"kind":"function","modifiers":[],"name":"evmCurator","nameLocation":"1013:10:27","nodeType":"FunctionDefinition","parameters":{"id":7946,"nodeType":"ParameterList","parameters":[],"src":"1023:2:27"},"returnParameters":{"id":7949,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7948,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7950,"src":"1049:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7947,"name":"address","nodeType":"ElementaryTypeName","src":"1049:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1048:9:27"},"scope":8046,"src":"1004:54:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"77cc7a3a","id":7958,"implemented":false,"kind":"function","modifiers":[],"name":"getWrapTransactionLastQueryId","nameLocation":"1073:29:27","nodeType":"FunctionDefinition","parameters":{"id":7954,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7953,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7958,"src":"1103:22:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":7952,"nodeType":"UserDefinedTypeName","pathNode":{"id":7951,"name":"Witnet.TransactionHash","nameLocations":["1103:6:27","1110:15:27"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"1103:22:27"},"referencedDeclaration":13108,"src":"1103:22:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"1102:24:27"},"returnParameters":{"id":7957,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7956,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7958,"src":"1150:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7955,"name":"uint256","nodeType":"ElementaryTypeName","src":"1150:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1149:9:27"},"scope":8046,"src":"1064:95:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"a53cb851","id":7967,"implemented":false,"kind":"function","modifiers":[],"name":"getWrapTransactionStatus","nameLocation":"1174:24:27","nodeType":"FunctionDefinition","parameters":{"id":7962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7961,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7967,"src":"1199:22:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":7960,"nodeType":"UserDefinedTypeName","pathNode":{"id":7959,"name":"Witnet.TransactionHash","nameLocations":["1199:6:27","1206:15:27"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"1199:22:27"},"referencedDeclaration":13108,"src":"1199:22:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"1198:24:27"},"returnParameters":{"id":7966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7965,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7967,"src":"1246:14:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7944","typeString":"enum IWrappedWIT.WrappingStatus"},"typeName":{"id":7964,"nodeType":"UserDefinedTypeName","pathNode":{"id":7963,"name":"WrappingStatus","nameLocations":["1246:14:27"],"nodeType":"IdentifierPath","referencedDeclaration":7944,"src":"1246:14:27"},"referencedDeclaration":7944,"src":"1246:14:27","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7944","typeString":"enum IWrappedWIT.WrappingStatus"}},"visibility":"internal"}],"src":"1245:16:27"},"scope":8046,"src":"1165:97:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"4c68df67","id":7972,"implemented":false,"kind":"function","modifiers":[],"name":"totalReserve","nameLocation":"1277:12:27","nodeType":"FunctionDefinition","parameters":{"id":7968,"nodeType":"ParameterList","parameters":[],"src":"1289:2:27"},"returnParameters":{"id":7971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7970,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7972,"src":"1315:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7969,"name":"uint256","nodeType":"ElementaryTypeName","src":"1315:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1314:9:27"},"scope":8046,"src":"1268:56:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"520a5495","id":7977,"implemented":false,"kind":"function","modifiers":[],"name":"totalUnwraps","nameLocation":"1339:12:27","nodeType":"FunctionDefinition","parameters":{"id":7973,"nodeType":"ParameterList","parameters":[],"src":"1351:2:27"},"returnParameters":{"id":7976,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7975,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7977,"src":"1377:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7974,"name":"uint256","nodeType":"ElementaryTypeName","src":"1377:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1376:9:27"},"scope":8046,"src":"1330:56:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"7090c8d6","id":7982,"implemented":false,"kind":"function","modifiers":[],"name":"witCustodian","nameLocation":"1407:12:27","nodeType":"FunctionDefinition","parameters":{"id":7978,"nodeType":"ParameterList","parameters":[],"src":"1419:2:27"},"returnParameters":{"id":7981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7980,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7982,"src":"1445:13:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7979,"name":"string","nodeType":"ElementaryTypeName","src":"1445:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1444:15:27"},"scope":8046,"src":"1398:62:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"4ba0d150","id":7987,"implemented":false,"kind":"function","modifiers":[],"name":"witUnwrapper","nameLocation":"1475:12:27","nodeType":"FunctionDefinition","parameters":{"id":7983,"nodeType":"ParameterList","parameters":[],"src":"1487:2:27"},"returnParameters":{"id":7986,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7985,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7987,"src":"1513:13:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":7984,"name":"string","nodeType":"ElementaryTypeName","src":"1513:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1512:15:27"},"scope":8046,"src":"1466:62:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"ddb2bf5c","id":7994,"implemented":false,"kind":"function","modifiers":[],"name":"witOracleEstimateWrappingFee","nameLocation":"1549:28:27","nodeType":"FunctionDefinition","parameters":{"id":7990,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7989,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7994,"src":"1578:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7988,"name":"uint256","nodeType":"ElementaryTypeName","src":"1578:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1577:9:27"},"returnParameters":{"id":7993,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7992,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7994,"src":"1610:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7991,"name":"uint256","nodeType":"ElementaryTypeName","src":"1610:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1609:9:27"},"scope":8046,"src":"1540:79:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"acb734bb","id":7999,"implemented":false,"kind":"function","modifiers":[],"name":"witOracleProofOfReserveRadonBytecode","nameLocation":"1634:36:27","nodeType":"FunctionDefinition","parameters":{"id":7995,"nodeType":"ParameterList","parameters":[],"src":"1670:2:27"},"returnParameters":{"id":7998,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7997,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7999,"src":"1696:12:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7996,"name":"bytes","nodeType":"ElementaryTypeName","src":"1696:5:27","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1695:14:27"},"scope":8046,"src":"1625:85:27","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"873234cf","id":8005,"implemented":false,"kind":"function","modifiers":[],"name":"witOracleQuerySettings","nameLocation":"1725:22:27","nodeType":"FunctionDefinition","parameters":{"id":8000,"nodeType":"ParameterList","parameters":[],"src":"1747:2:27"},"returnParameters":{"id":8004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8003,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8005,"src":"1773:24:27","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_memory_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"},"typeName":{"id":8002,"nodeType":"UserDefinedTypeName","pathNode":{"id":8001,"name":"WitOracleSettings","nameLocations":["1773:17:27"],"nodeType":"IdentifierPath","referencedDeclaration":7939,"src":"1773:17:27"},"referencedDeclaration":7939,"src":"1773:17:27","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"}},"visibility":"internal"}],"src":"1772:26:27"},"scope":8046,"src":"1716:83:27","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":8006,"nodeType":"StructuredDocumentation","src":"1811:115:27","text":"--- Authoritative methods -------------------------------------------------------------------------------------"},"functionSelector":"b9dcadf2","id":8012,"implemented":false,"kind":"function","modifiers":[],"name":"settleWitOracleSettings","nameLocation":"1941:23:27","nodeType":"FunctionDefinition","parameters":{"id":8010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8009,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8012,"src":"1965:26:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"},"typeName":{"id":8008,"nodeType":"UserDefinedTypeName","pathNode":{"id":8007,"name":"WitOracleSettings","nameLocations":["1965:17:27"],"nodeType":"IdentifierPath","referencedDeclaration":7939,"src":"1965:17:27"},"referencedDeclaration":7939,"src":"1965:17:27","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"}},"visibility":"internal"}],"src":"1964:28:27"},"returnParameters":{"id":8011,"nodeType":"ParameterList","parameters":[],"src":"2001:0:27"},"scope":8046,"src":"1932:70:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"96fe8eb1","id":8018,"implemented":false,"kind":"function","modifiers":[],"name":"settleWitRpcProviders","nameLocation":"2017:21:27","nodeType":"FunctionDefinition","parameters":{"id":8016,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8015,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8018,"src":"2039:17:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_string_calldata_ptr_$dyn_calldata_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":8013,"name":"string","nodeType":"ElementaryTypeName","src":"2039:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8014,"nodeType":"ArrayTypeName","src":"2039:8:27","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"2038:19:27"},"returnParameters":{"id":8017,"nodeType":"ParameterList","parameters":[],"src":"2066:0:27"},"scope":8046,"src":"2008:59:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"f577caee","id":8023,"implemented":false,"kind":"function","modifiers":[],"name":"settleWitUnwrapper","nameLocation":"2082:18:27","nodeType":"FunctionDefinition","parameters":{"id":8021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8020,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8023,"src":"2101:15:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":8019,"name":"string","nodeType":"ElementaryTypeName","src":"2101:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2100:17:27"},"returnParameters":{"id":8022,"nodeType":"ParameterList","parameters":[],"src":"2126:0:27"},"scope":8046,"src":"2073:54:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"a41942a4","id":8028,"implemented":false,"kind":"function","modifiers":[],"name":"transferCuratorship","nameLocation":"2142:19:27","nodeType":"FunctionDefinition","parameters":{"id":8026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8025,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8028,"src":"2162:7:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8024,"name":"address","nodeType":"ElementaryTypeName","src":"2162:7:27","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2161:9:27"},"returnParameters":{"id":8027,"nodeType":"ParameterList","parameters":[],"src":"2179:0:27"},"scope":8046,"src":"2133:47:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"5f029ebe","id":8036,"implemented":false,"kind":"function","modifiers":[],"name":"wrap","nameLocation":"2318:4:27","nodeType":"FunctionDefinition","parameters":{"id":8032,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8031,"mutability":"mutable","name":"witTxHash","nameLocation":"2346:9:27","nodeType":"VariableDeclaration","scope":8036,"src":"2323:32:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":8030,"nodeType":"UserDefinedTypeName","pathNode":{"id":8029,"name":"Witnet.TransactionHash","nameLocations":["2323:6:27","2330:15:27"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"2323:22:27"},"referencedDeclaration":13108,"src":"2323:22:27","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"2322:34:27"},"returnParameters":{"id":8035,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8034,"mutability":"mutable","name":"witOracleQueryId","nameLocation":"2391:16:27","nodeType":"VariableDeclaration","scope":8036,"src":"2383:24:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8033,"name":"uint256","nodeType":"ElementaryTypeName","src":"2383:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2382:26:27"},"scope":8046,"src":"2309:100:27","stateMutability":"payable","virtual":false,"visibility":"external"},{"functionSelector":"8a510f27","id":8045,"implemented":false,"kind":"function","modifiers":[],"name":"unwrap","nameLocation":"2424:6:27","nodeType":"FunctionDefinition","parameters":{"id":8041,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8038,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8045,"src":"2431:6:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8037,"name":"uint64","nodeType":"ElementaryTypeName","src":"2431:6:27","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":8040,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8045,"src":"2439:15:27","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":8039,"name":"string","nodeType":"ElementaryTypeName","src":"2439:6:27","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2430:25:27"},"returnParameters":{"id":8044,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8043,"mutability":"mutable","name":"evmUnwrapId","nameLocation":"2482:11:27","nodeType":"VariableDeclaration","scope":8045,"src":"2474:19:27","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8042,"name":"uint256","nodeType":"ElementaryTypeName","src":"2474:7:27","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2473:21:27"},"scope":8046,"src":"2415:80:27","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":8047,"src":"122:2376:27","usedErrors":[7891],"usedEvents":[7897,7901,7911,7922,7932]}],"src":"35:2465:27"},"id":27},"contracts/WrappedWIT.sol":{"ast":{"absolutePath":"contracts/WrappedWIT.sol","exportedSymbols":{"Bech32":[12052],"ERC20":[1325],"ERC20Bridgeable":[146],"ERC20Permit":[1557],"IWitAppliance":[9842],"IWitOracle":[9907],"IWitOracleAppliance":[9919],"IWitOracleConsumer":[9932],"IWitOracleQueriable":[10102],"IWitOracleQueriableConsumer":[10122],"IWitOracleQueriableEvents":[10199],"IWitOracleRadonRegistry":[10468],"IWitOracleRadonRequestFactory":[10563],"IWitOracleRadonRequestModal":[10613],"IWitOracleRadonRequestTemplate":[10664],"IWrappedWIT":[8046],"Initializable":[414],"Secp256k1":[13068],"WitOracle":[9767],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052],"WrappedWIT":[9097],"WrappedWITLib":[9677]},"id":9098,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":8048,"literals":["solidity","0.8",".28"],"nodeType":"PragmaDirective","src":"83:23:28"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":8050,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9098,"sourceUnit":1326,"src":"110:68:28","symbolAliases":[{"foreign":{"id":8049,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1325,"src":"118: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":8052,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9098,"sourceUnit":147,"src":"180:119:28","symbolAliases":[{"foreign":{"id":8051,"name":"ERC20Bridgeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"188: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":8054,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9098,"sourceUnit":1558,"src":"301:91:28","symbolAliases":[{"foreign":{"id":8053,"name":"ERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1557,"src":"309: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":8056,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9098,"sourceUnit":415,"src":"394:96:28","symbolAliases":[{"foreign":{"id":8055,"name":"Initializable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":414,"src":"402:13:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/WitOracle.sol","file":"witnet-solidity-bridge/contracts/WitOracle.sol","id":8057,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9098,"sourceUnit":9768,"src":"494:56:28","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol","file":"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol","id":8061,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9098,"sourceUnit":9793,"src":"554:191:28","symbolAliases":[{"foreign":{"id":8058,"name":"IWitOracleRadonRequestModal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10613,"src":"568:27:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":8059,"name":"IWitOracleRadonRequestTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10664,"src":"602:30:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":8060,"name":"IWitOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10563,"src":"639: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":8063,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9098,"sourceUnit":9933,"src":"749:102:28","symbolAliases":[{"foreign":{"id":8062,"name":"IWitOracleConsumer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9932,"src":"757: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":8065,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9098,"sourceUnit":10123,"src":"853:120:28","symbolAliases":[{"foreign":{"id":8064,"name":"IWitOracleQueriableConsumer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10122,"src":"861:27:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"absolutePath":"contracts/WrappedWITLib.sol","file":"./WrappedWITLib.sol","id":8068,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9098,"sourceUnit":9678,"src":"977:63:28","symbolAliases":[{"foreign":{"id":8066,"name":"IWrappedWIT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8046,"src":"985:11:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"},{"foreign":{"id":8067,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9677,"src":"998:13:28","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":8070,"name":"ERC20","nameLocations":["1135:5:28"],"nodeType":"IdentifierPath","referencedDeclaration":1325,"src":"1135:5:28"},"id":8071,"nodeType":"InheritanceSpecifier","src":"1135:5:28"},{"baseName":{"id":8072,"name":"ERC20Bridgeable","nameLocations":["1151:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":146,"src":"1151:15:28"},"id":8073,"nodeType":"InheritanceSpecifier","src":"1151:15:28"},{"baseName":{"id":8074,"name":"ERC20Permit","nameLocations":["1177:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":1557,"src":"1177:11:28"},"id":8075,"nodeType":"InheritanceSpecifier","src":"1177:11:28"},{"baseName":{"id":8076,"name":"Initializable","nameLocations":["1199:13:28"],"nodeType":"IdentifierPath","referencedDeclaration":414,"src":"1199:13:28"},"id":8077,"nodeType":"InheritanceSpecifier","src":"1199:13:28"},{"baseName":{"id":8078,"name":"IWitOracleConsumer","nameLocations":["1223:18:28"],"nodeType":"IdentifierPath","referencedDeclaration":9932,"src":"1223:18:28"},"id":8079,"nodeType":"InheritanceSpecifier","src":"1223:18:28"},{"baseName":{"id":8080,"name":"IWitOracleQueriableConsumer","nameLocations":["1252:27:28"],"nodeType":"IdentifierPath","referencedDeclaration":10122,"src":"1252:27:28"},"id":8081,"nodeType":"InheritanceSpecifier","src":"1252:27:28"},{"baseName":{"id":8082,"name":"IWrappedWIT","nameLocations":["1290:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":8046,"src":"1290:11:28"},"id":8083,"nodeType":"InheritanceSpecifier","src":"1290:11:28"}],"canonicalName":"WrappedWIT","contractDependencies":[],"contractKind":"contract","documentation":{"id":8069,"nodeType":"StructuredDocumentation","src":"1044:53:28","text":"@custom:security-contact info@witnet.foundation"},"fullyImplemented":true,"id":9097,"linearizedBaseContracts":[9097,8046,10122,9932,414,1557,1717,4087,673,1619,146,41,4197,4209,1325,715,1583,1403,1649],"name":"WrappedWIT","nameLocation":"1106:10:28","nodeType":"ContractDefinition","nodes":[{"global":false,"id":8087,"libraryName":{"id":8084,"name":"Witnet","nameLocations":["1316:6:28"],"nodeType":"IdentifierPath","referencedDeclaration":16619,"src":"1316:6:28"},"nodeType":"UsingForDirective","src":"1310:32:28","typeName":{"id":8086,"nodeType":"UserDefinedTypeName","pathNode":{"id":8085,"name":"Witnet.Address","nameLocations":["1327:6:28","1334:7:28"],"nodeType":"IdentifierPath","referencedDeclaration":13092,"src":"1327:14:28"},"referencedDeclaration":13092,"src":"1327:14:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}}},{"global":false,"id":8091,"libraryName":{"id":8088,"name":"Witnet","nameLocations":["1354:6:28"],"nodeType":"IdentifierPath","referencedDeclaration":16619,"src":"1354:6:28"},"nodeType":"UsingForDirective","src":"1348:34:28","typeName":{"id":8090,"nodeType":"UserDefinedTypeName","pathNode":{"id":8089,"name":"Witnet.RadonHash","nameLocations":["1365:6:28","1372:9:28"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"1365:16:28"},"referencedDeclaration":13102,"src":"1365:16:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}}},{"constant":true,"id":8094,"mutability":"constant","name":"_CANONICAL_CHAIN_ID","nameLocation":"1416:19:28","nodeType":"VariableDeclaration","scope":9097,"src":"1390:49:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8092,"name":"uint256","nodeType":"ElementaryTypeName","src":"1390:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":8093,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1438:1:28","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"internal"},{"constant":true,"id":8097,"mutability":"constant","name":"_DECIMALS","nameLocation":"1492:9:28","nodeType":"VariableDeclaration","scope":9097,"src":"1466:39:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8095,"name":"uint8","nodeType":"ElementaryTypeName","src":"1466:5:28","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"39","id":8096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1504:1:28","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"visibility":"internal"},{"constant":true,"id":8100,"mutability":"constant","name":"_SUPERCHAIN_TOKEN_BRIDGE","nameLocation":"1538:24:28","nodeType":"VariableDeclaration","scope":9097,"src":"1512:95:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8098,"name":"address","nodeType":"ElementaryTypeName","src":"1512:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"value":{"hexValue":"307834323030303030303030303030303030303030303030303030303030303030303030303030303238","id":8099,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1565:42:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x4200000000000000000000000000000000000028"},"visibility":"internal"},{"constant":true,"id":8103,"mutability":"constant","name":"_WIT_ORACLE_REPORTS_MIN_MIN_WITNESSES","nameLocation":"1667:37:28","nodeType":"VariableDeclaration","scope":9097,"src":"1641:67:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":8101,"name":"uint16","nodeType":"ElementaryTypeName","src":"1641:6:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"value":{"hexValue":"33","id":8102,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1707:1:28","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"visibility":"internal"},{"constant":true,"id":8106,"mutability":"constant","name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MAX_BASE_FEE_OVERHEAD","nameLocation":"1741:52:28","nodeType":"VariableDeclaration","scope":9097,"src":"1715:83:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":8104,"name":"uint16","nodeType":"ElementaryTypeName","src":"1715:6:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"value":{"hexValue":"3530","id":8105,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1796:2:28","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"visibility":"internal"},{"constant":true,"id":8109,"mutability":"constant","name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MIN_UNITARY_REWARD","nameLocation":"1831:49:28","nodeType":"VariableDeclaration","scope":9097,"src":"1805:89:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8107,"name":"uint64","nodeType":"ElementaryTypeName","src":"1805:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"hexValue":"3230305f3030305f303030","id":8108,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1883:11:28","typeDescriptions":{"typeIdentifier":"t_rational_200000000_by_1","typeString":"int_const 200000000"},"value":"200_000_000"},"visibility":"internal"},{"constant":false,"functionSelector":"1014d375","id":8112,"mutability":"immutable","name":"witOracle","nameLocation":"1946:9:28","nodeType":"VariableDeclaration","scope":9097,"src":"1919:36:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"},"typeName":{"id":8111,"nodeType":"UserDefinedTypeName","pathNode":{"id":8110,"name":"WitOracle","nameLocations":["1919:9:28"],"nodeType":"IdentifierPath","referencedDeclaration":9767,"src":"1919:9:28"},"referencedDeclaration":9767,"src":"1919:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},"visibility":"public"},{"constant":false,"functionSelector":"27ae6883","id":8115,"mutability":"immutable","name":"witOracleCrossChainProofOfReserveTemplate","nameLocation":"2007:41:28","nodeType":"VariableDeclaration","scope":9097,"src":"1962:86:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"},"typeName":{"id":8114,"nodeType":"UserDefinedTypeName","pathNode":{"id":8113,"name":"IWitOracleRadonRequestModal","nameLocations":["1962:27:28"],"nodeType":"IdentifierPath","referencedDeclaration":10613,"src":"1962:27:28"},"referencedDeclaration":10613,"src":"1962:27:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"visibility":"public"},{"constant":false,"functionSelector":"f69a00b6","id":8118,"mutability":"immutable","name":"witOracleCrossChainProofOfInclusionTemplate","nameLocation":"2100:43:28","nodeType":"VariableDeclaration","scope":9097,"src":"2055:88:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"},"typeName":{"id":8117,"nodeType":"UserDefinedTypeName","pathNode":{"id":8116,"name":"IWitOracleRadonRequestModal","nameLocations":["2055:27:28"],"nodeType":"IdentifierPath","referencedDeclaration":10613,"src":"2055:27:28"},"referencedDeclaration":10613,"src":"2055:27:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"visibility":"public"},{"constant":false,"id":8121,"mutability":"immutable","name":"__witCustodian","nameLocation":"2190:14:28","nodeType":"VariableDeclaration","scope":9097,"src":"2156:48:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"},"typeName":{"id":8120,"nodeType":"UserDefinedTypeName","pathNode":{"id":8119,"name":"Witnet.Address","nameLocations":["2156:6:28","2163:7:28"],"nodeType":"IdentifierPath","referencedDeclaration":13092,"src":"2156:14:28"},"referencedDeclaration":13092,"src":"2156:14:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"visibility":"internal"},{"constant":false,"id":8123,"mutability":"immutable","name":"__witCustodianBech32Hash","nameLocation":"2238:24:28","nodeType":"VariableDeclaration","scope":9097,"src":"2211:51:28","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":8122,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2211:7:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"body":{"id":8137,"nodeType":"Block","src":"2292:123:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"id":8126,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"2325:10:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2325:12:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8128,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"2341:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8129,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2341:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8130,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2353:10:28","memberName":"evmCurator","nodeType":"MemberAccess","referencedDeclaration":9249,"src":"2341:22:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"2325:38:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"arguments":[],"expression":{"argumentTypes":[],"id":8132,"name":"Unauthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7891,"src":"2379:12:28","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8133,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2379:14:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_error","typeString":"error"}],"id":8125,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2303:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_error_$returns$__$","typeString":"function (bool,error) pure"}},"id":8134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2303:101:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8135,"nodeType":"ExpressionStatement","src":"2303:101:28"},{"id":8136,"nodeType":"PlaceholderStatement","src":"2406:1:28"}]},"id":8138,"name":"onlyCurator","nameLocation":"2280:11:28","nodeType":"ModifierDefinition","parameters":{"id":8124,"nodeType":"ParameterList","parameters":[],"src":"2292:0:28"},"src":"2271:144:28","virtual":false,"visibility":"internal"},{"body":{"id":8263,"nodeType":"Block","src":"2646:2228:28","statements":[{"expression":{"id":8162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8153,"name":"__witCustodian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8121,"src":"2778:14:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8156,"name":"_witCustodianBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8143,"src":"2813:19:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8157,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"2834:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2840:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"2834:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8159,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"2851:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"2834: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":8154,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"2795:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":8155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2802:10:28","memberName":"fromBech32","nodeType":"MemberAccess","referencedDeclaration":13761,"src":"2795:17:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_bool_$returns$_t_userDefinedValueType$_Address_$13092_$","typeString":"function (string memory,bool) pure returns (Witnet.Address)"}},"id":8161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2795:76:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"src":"2778:93:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"id":8163,"nodeType":"ExpressionStatement","src":"2778:93:28"},{"expression":{"id":8171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8164,"name":"__witCustodianBech32Hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8123,"src":"2882:24:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":8168,"name":"_witCustodianBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8143,"src":"2925:19:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8167,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2919:5:28","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8166,"name":"bytes","nodeType":"ElementaryTypeName","src":"2919:5:28","typeDescriptions":{}}},"id":8169,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2919:26:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8165,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"2909:9:28","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8170,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2909:37:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"2882:64:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":8172,"nodeType":"ExpressionStatement","src":"2882:64:28"},{"assignments":[8179],"declarations":[{"constant":false,"id":8179,"mutability":"mutable","name":"_httpRequestHeaders","nameLocation":"2978:19:28","nodeType":"VariableDeclaration","scope":8263,"src":"2959: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":8176,"name":"string","nodeType":"ElementaryTypeName","src":"2959:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8177,"length":{"hexValue":"32","id":8175,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2966:1:28","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"ArrayTypeName","src":"2959:9:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$2_storage_ptr","typeString":"string[2]"}},"id":8178,"nodeType":"ArrayTypeName","src":"2959:11:28","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$2_storage_$dyn_storage_ptr","typeString":"string[2][]"}},"visibility":"internal"}],"id":8187,"initialValue":{"arguments":[{"hexValue":"31","id":8185,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3016: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":8184,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"3000: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":8180,"name":"string","nodeType":"ElementaryTypeName","src":"3004:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8182,"length":{"hexValue":"32","id":8181,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3011:1:28","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"nodeType":"ArrayTypeName","src":"3004:9:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$2_storage_ptr","typeString":"string[2]"}},"id":8183,"nodeType":"ArrayTypeName","src":"3004:11:28","typeDescriptions":{"typeIdentifier":"t_array$_t_array$_t_string_storage_$2_storage_$dyn_storage_ptr","typeString":"string[2][]"}}},"id":8186,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3000: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":"2959:59:28"},{"expression":{"id":8194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8188,"name":"_httpRequestHeaders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8179,"src":"3029: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":8190,"indexExpression":{"hexValue":"30","id":8189,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3049: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":"3029: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":8191,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3056:14:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_b431c786f1941b6f5ba364ef0a2adc84fa99fd99eba90363ee3faba31cbcd6b3","typeString":"literal_string \"Content-Type\""},"value":"Content-Type"},{"hexValue":"6170706c69636174696f6e2f6a736f6e3b636861727365743d5554462d38","id":8192,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3072:32:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_57a0bd54351ae082c2ff8b8a37021e4ac998ce5b8cab0d1c3bd2fbdd92fe8921","typeString":"literal_string \"application/json;charset=UTF-8\""},"value":"application/json;charset=UTF-8"}],"id":8193,"isConstant":false,"isInlineArray":true,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"3054:52:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$2_memory_ptr","typeString":"string memory[2] memory"}},"src":"3029:77:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$2_memory_ptr","typeString":"string memory[2] memory"}},"id":8195,"nodeType":"ExpressionStatement","src":"3029:77:28"},{"expression":{"id":8221,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8196,"name":"witOracleCrossChainProofOfReserveTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8115,"src":"3117:41:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"expression":{"id":8201,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"3303:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":8202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3310:21:28","memberName":"RadonRetrievalMethods","nodeType":"MemberAccess","referencedDeclaration":13685,"src":"3303:28:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonRetrievalMethods_$13685_$","typeString":"type(enum Witnet.RadonRetrievalMethods)"}},"id":8203,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3332:8:28","memberName":"HttpPost","nodeType":"MemberAccess","referencedDeclaration":13683,"src":"3303:37:28","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13685","typeString":"enum Witnet.RadonRetrievalMethods"}},{"hexValue":"7b226a736f6e727063223a22322e30222c226d6574686f64223a2267657442616c616e636532222c22706172616d73223a7b22706b68223a225c315c3b5c325c227d2c226964223a317d","id":8204,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3365: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":8205,"name":"_httpRequestHeaders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8179,"src":"3473: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":8206,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"3686:35:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_5cec49a16113dc4beefa5c78f402aad7a3febb57b3f96b02974f1b89842ef5a9","typeString":"literal_string hex\"83187782186666726573756c741869\""}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13685","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":8199,"name":"IWitOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10563,"src":"3228:29:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracleRadonRequestFactory_$10563_$","typeString":"type(contract IWitOracleRadonRequestFactory)"}},"id":8200,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3258:17:28","memberName":"DataSourceRequest","nodeType":"MemberAccess","referencedDeclaration":10519,"src":"3228:47:28","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DataSourceRequest_$10519_storage_ptr_$","typeString":"type(struct IWitOracleRadonRequestFactory.DataSourceRequest storage pointer)"}},"id":8207,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["3295:6:28","3359:4:28","3464:7:28","3511:6:28"],"names":["method","body","headers","script"],"nodeType":"FunctionCall","src":"3228:510:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10519_memory_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest memory"}},{"arguments":[{"expression":{"expression":{"id":8210,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"3800:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":8211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3807:18:28","memberName":"RadonReduceOpcodes","nodeType":"MemberAccess","referencedDeclaration":13645,"src":"3800:25:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonReduceOpcodes_$13645_$","typeString":"type(enum Witnet.RadonReduceOpcodes)"}},"id":8212,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3826:4:28","memberName":"Mode","nodeType":"MemberAccess","referencedDeclaration":13635,"src":"3800:30:28","typeDescriptions":{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13645","typeString":"enum Witnet.RadonReduceOpcodes"}},{"arguments":[{"hexValue":"30","id":8217,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3883: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":8216,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"3858:24:28","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_RadonFilter_$13610_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct Witnet.RadonFilter memory[] memory)"},"typeName":{"baseType":{"id":8214,"nodeType":"UserDefinedTypeName","pathNode":{"id":8213,"name":"Witnet.RadonFilter","nameLocations":["3862:6:28","3869:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":13610,"src":"3862:18:28"},"referencedDeclaration":13610,"src":"3862:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_RadonFilter_$13610_storage_ptr","typeString":"struct Witnet.RadonFilter"}},"id":8215,"nodeType":"ArrayTypeName","src":"3862:20:28","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13610_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonFilter[]"}}},"id":8218,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3858:27:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13610_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonFilter memory[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13645","typeString":"enum Witnet.RadonReduceOpcodes"},{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13610_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonFilter memory[] memory"}],"expression":{"id":8208,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"3753:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":8209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3760:12:28","memberName":"RadonReducer","nodeType":"MemberAccess","referencedDeclaration":13631,"src":"3753:19:28","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_RadonReducer_$13631_storage_ptr_$","typeString":"type(struct Witnet.RadonReducer storage pointer)"}},"id":8219,"isConstant":false,"isLValue":false,"isPure":true,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["3792:6:28","3849:7:28"],"names":["opcode","filters"],"nodeType":"FunctionCall","src":"3753:148:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_memory_ptr","typeString":"struct Witnet.RadonReducer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_DataSourceRequest_$10519_memory_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest memory"},{"typeIdentifier":"t_struct$_RadonReducer_$13631_memory_ptr","typeString":"struct Witnet.RadonReducer memory"}],"expression":{"id":8197,"name":"_witOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8141,"src":"3161:29:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10563","typeString":"contract IWitOracleRadonRequestFactory"}},"id":8198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3191:22:28","memberName":"buildRadonRequestModal","nodeType":"MemberAccess","referencedDeclaration":10531,"src":"3161:52:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_DataSourceRequest_$10519_memory_ptr_$_t_struct$_RadonReducer_$13631_memory_ptr_$returns$_t_contract$_IWitOracleRadonRequestModal_$10613_$","typeString":"function (struct IWitOracleRadonRequestFactory.DataSourceRequest memory,struct Witnet.RadonReducer memory) external returns (contract IWitOracleRadonRequestModal)"}},"id":8220,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3161:751:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"src":"3117:795:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"id":8222,"nodeType":"ExpressionStatement","src":"3117:795:28"},{"expression":{"id":8248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8223,"name":"witOracleCrossChainProofOfInclusionTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8118,"src":"3923:43:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"expression":{"id":8228,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"4111:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":8229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4118:21:28","memberName":"RadonRetrievalMethods","nodeType":"MemberAccess","referencedDeclaration":13685,"src":"4111:28:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonRetrievalMethods_$13685_$","typeString":"type(enum Witnet.RadonRetrievalMethods)"}},"id":8230,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4140:8:28","memberName":"HttpPost","nodeType":"MemberAccess","referencedDeclaration":13683,"src":"4111:37:28","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13685","typeString":"enum Witnet.RadonRetrievalMethods"}},{"hexValue":"7b226a736f6e727063223a22322e30222c226d6574686f64223a2267657456616c75655472616e73666572222c22706172616d73223a7b2268617368223a225c315c222c226d6f6465223a22657468657265616c222c22666f726365223a747275657d2c226964223a317d","id":8231,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4173: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":8232,"name":"_httpRequestHeaders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8179,"src":"4312: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":8233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"hexString","lValueRequested":false,"nodeType":"Literal","src":"4534:35:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_5cec49a16113dc4beefa5c78f402aad7a3febb57b3f96b02974f1b89842ef5a9","typeString":"literal_string hex\"83187782186666726573756c741869\""}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13685","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":8226,"name":"IWitOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10563,"src":"4036:29:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracleRadonRequestFactory_$10563_$","typeString":"type(contract IWitOracleRadonRequestFactory)"}},"id":8227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4066:17:28","memberName":"DataSourceRequest","nodeType":"MemberAccess","referencedDeclaration":10519,"src":"4036:47:28","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DataSourceRequest_$10519_storage_ptr_$","typeString":"type(struct IWitOracleRadonRequestFactory.DataSourceRequest storage pointer)"}},"id":8234,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4103:6:28","4167:4:28","4303:7:28","4359:6:28"],"names":["method","body","headers","script"],"nodeType":"FunctionCall","src":"4036:549:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10519_memory_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest memory"}},{"arguments":[{"expression":{"expression":{"id":8237,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"4647:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":8238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4654:18:28","memberName":"RadonReduceOpcodes","nodeType":"MemberAccess","referencedDeclaration":13645,"src":"4647:25:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonReduceOpcodes_$13645_$","typeString":"type(enum Witnet.RadonReduceOpcodes)"}},"id":8239,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4673:4:28","memberName":"Mode","nodeType":"MemberAccess","referencedDeclaration":13635,"src":"4647:30:28","typeDescriptions":{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13645","typeString":"enum Witnet.RadonReduceOpcodes"}},{"arguments":[{"hexValue":"30","id":8244,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"4730: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":8243,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"4705:24:28","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_RadonFilter_$13610_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct Witnet.RadonFilter memory[] memory)"},"typeName":{"baseType":{"id":8241,"nodeType":"UserDefinedTypeName","pathNode":{"id":8240,"name":"Witnet.RadonFilter","nameLocations":["4709:6:28","4716:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":13610,"src":"4709:18:28"},"referencedDeclaration":13610,"src":"4709:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_RadonFilter_$13610_storage_ptr","typeString":"struct Witnet.RadonFilter"}},"id":8242,"nodeType":"ArrayTypeName","src":"4709:20:28","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13610_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonFilter[]"}}},"id":8245,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4705:27:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13610_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonFilter memory[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13645","typeString":"enum Witnet.RadonReduceOpcodes"},{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13610_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonFilter memory[] memory"}],"expression":{"id":8235,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"4600:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":8236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4607:12:28","memberName":"RadonReducer","nodeType":"MemberAccess","referencedDeclaration":13631,"src":"4600:19:28","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_RadonReducer_$13631_storage_ptr_$","typeString":"type(struct Witnet.RadonReducer storage pointer)"}},"id":8246,"isConstant":false,"isLValue":false,"isPure":true,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["4639:6:28","4696:7:28"],"names":["opcode","filters"],"nodeType":"FunctionCall","src":"4600:148:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_memory_ptr","typeString":"struct Witnet.RadonReducer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_DataSourceRequest_$10519_memory_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest memory"},{"typeIdentifier":"t_struct$_RadonReducer_$13631_memory_ptr","typeString":"struct Witnet.RadonReducer memory"}],"expression":{"id":8224,"name":"_witOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8141,"src":"3969:29:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10563","typeString":"contract IWitOracleRadonRequestFactory"}},"id":8225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3999:22:28","memberName":"buildRadonRequestModal","nodeType":"MemberAccess","referencedDeclaration":10531,"src":"3969:52:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_DataSourceRequest_$10519_memory_ptr_$_t_struct$_RadonReducer_$13631_memory_ptr_$returns$_t_contract$_IWitOracleRadonRequestModal_$10613_$","typeString":"function (struct IWitOracleRadonRequestFactory.DataSourceRequest memory,struct Witnet.RadonReducer memory) external returns (contract IWitOracleRadonRequestModal)"}},"id":8247,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3969:790:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"src":"3923:836:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"id":8249,"nodeType":"ExpressionStatement","src":"3923:836:28"},{"expression":{"id":8261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8250,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8112,"src":"4772:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":8255,"name":"_witOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8141,"src":"4822:29:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10563","typeString":"contract IWitOracleRadonRequestFactory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10563","typeString":"contract IWitOracleRadonRequestFactory"}],"id":8254,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"4814:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8253,"name":"address","nodeType":"ElementaryTypeName","src":"4814:7:28","typeDescriptions":{}}},"id":8256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4814:38:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8252,"name":"IWitOracleAppliance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9919,"src":"4794:19:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracleAppliance_$9919_$","typeString":"type(contract IWitOracleAppliance)"}},"id":8257,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4794:59:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleAppliance_$9919","typeString":"contract IWitOracleAppliance"}},"id":8258,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4854:9:28","memberName":"witOracle","nodeType":"MemberAccess","referencedDeclaration":9918,"src":"4794:69:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_address_$","typeString":"function () view external returns (address)"}},"id":8259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4794:71:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8251,"name":"WitOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9767,"src":"4784:9:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WitOracle_$9767_$","typeString":"type(contract WitOracle)"}},"id":8260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4784:82:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},"src":"4772:94:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},"id":8262,"nodeType":"ExpressionStatement","src":"4772:94:28"}]},"id":8264,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"hexValue":"5772617070656420574954","id":8146,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2583:13:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_ddba658d9abef0b3615c5bde8328f7c593061dba9ad4d400484e4bc2a83fb435","typeString":"literal_string \"Wrapped WIT\""},"value":"Wrapped WIT"},{"hexValue":"574954","id":8147,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2598:5:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_b372e206e3c85161b5e32ecd4de3bf2364f9afd6efd773022e11c36b6710a1f3","typeString":"literal_string \"WIT\""},"value":"WIT"}],"id":8148,"kind":"baseConstructorSpecifier","modifierName":{"id":8145,"name":"ERC20","nameLocations":["2577:5:28"],"nodeType":"IdentifierPath","referencedDeclaration":1325,"src":"2577:5:28"},"nodeType":"ModifierInvocation","src":"2577:27:28"},{"arguments":[{"hexValue":"577261707065642f574954","id":8150,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2626:13:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_93ce1e72a8e55be216fb1da8de58b117bb03feaf9a7e09034e3e83dd710d480f","typeString":"literal_string \"Wrapped/WIT\""},"value":"Wrapped/WIT"}],"id":8151,"kind":"baseConstructorSpecifier","modifierName":{"id":8149,"name":"ERC20Permit","nameLocations":["2614:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":1557,"src":"2614:11:28"},"nodeType":"ModifierInvocation","src":"2614:26:28"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":8144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8141,"mutability":"mutable","name":"_witOracleRadonRequestFactory","nameLocation":"2479:29:28","nodeType":"VariableDeclaration","scope":8264,"src":"2449:59:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10563","typeString":"contract IWitOracleRadonRequestFactory"},"typeName":{"id":8140,"nodeType":"UserDefinedTypeName","pathNode":{"id":8139,"name":"IWitOracleRadonRequestFactory","nameLocations":["2449:29:28"],"nodeType":"IdentifierPath","referencedDeclaration":10563,"src":"2449:29:28"},"referencedDeclaration":10563,"src":"2449:29:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestFactory_$10563","typeString":"contract IWitOracleRadonRequestFactory"}},"visibility":"internal"},{"constant":false,"id":8143,"mutability":"mutable","name":"_witCustodianBech32","nameLocation":"2537:19:28","nodeType":"VariableDeclaration","scope":8264,"src":"2523:33:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8142,"name":"string","nodeType":"ElementaryTypeName","src":"2523:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2434:133:28"},"returnParameters":{"id":8152,"nodeType":"ParameterList","parameters":[],"src":"2646:0:28"},"scope":9097,"src":"2423:2451:28","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":8339,"nodeType":"Block","src":"5043:1137:28","statements":[{"expression":{"id":8277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8273,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"5096:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8274,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5096:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8275,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5108:10:28","memberName":"evmCurator","nodeType":"MemberAccess","referencedDeclaration":9249,"src":"5096:22:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8276,"name":"_evmCurator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8266,"src":"5121:11:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5096:36:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":8278,"nodeType":"ExpressionStatement","src":"5096:36:28"},{"eventCall":{"arguments":[{"arguments":[{"hexValue":"30","id":8282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5179: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":8281,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"5171:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8280,"name":"address","nodeType":"ElementaryTypeName","src":"5171:7:28","typeDescriptions":{}}},"id":8283,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5171:10:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8284,"name":"_evmCurator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8266,"src":"5183:11:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8279,"name":"CuratorshipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7897,"src":"5148:22:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":8285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5148:47:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8286,"nodeType":"EmitStatement","src":"5143:52:28"},{"expression":{"id":8303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8287,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"5326:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5326:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8289,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5338:22:28","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9264,"src":"5326:34:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8291,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5410:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5416:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"5410:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8293,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"5427:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5410:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":8296,"name":"_WIT_ORACLE_REPORTS_MIN_MIN_WITNESSES","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8103,"src":"5454:37:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"id":8297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"5410:81:28","trueExpression":{"hexValue":"3132","id":8295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5449: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":8300,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"id":8298,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MAX_BASE_FEE_OVERHEAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"5526:52:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"35","id":8299,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5581:1:28","typeDescriptions":{"typeIdentifier":"t_rational_5_by_1","typeString":"int_const 5"},"value":"5"},"src":"5526:56:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"id":8301,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MIN_UNITARY_REWARD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8109,"src":"5621:49:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":8290,"name":"WitOracleSettings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7939,"src":"5363:17:28","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_WitOracleSettings_$7939_storage_ptr_$","typeString":"type(struct IWrappedWIT.WitOracleSettings storage pointer)"}},"id":8302,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["5396:12:28","5506:18:28","5598:21:28"],"names":["minWitnesses","baseFeeOverhead100","unitaryRewardNanowits"],"nodeType":"FunctionCall","src":"5363:319:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_memory_ptr","typeString":"struct IWrappedWIT.WitOracleSettings memory"}},"src":"5326:356:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":8304,"nodeType":"ExpressionStatement","src":"5326:356:28"},{"assignments":[8309],"declarations":[{"constant":false,"id":8309,"mutability":"mutable","name":"_witOracleRpcProviders","nameLocation":"5709:22:28","nodeType":"VariableDeclaration","scope":8339,"src":"5693:38:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":8307,"name":"string","nodeType":"ElementaryTypeName","src":"5693:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8308,"nodeType":"ArrayTypeName","src":"5693:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"id":8315,"initialValue":{"arguments":[{"hexValue":"31","id":8313,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5747: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":8312,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"5734: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":8310,"name":"string","nodeType":"ElementaryTypeName","src":"5738:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8311,"nodeType":"ArrayTypeName","src":"5738:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}}},"id":8314,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5734:15:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"5693:56:28"},{"expression":{"id":8327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8316,"name":"_witOracleRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8309,"src":"5760:22:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":8318,"indexExpression":{"hexValue":"30","id":8317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5783: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":"5760:25:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8319,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"5803:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8320,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5809:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"5803:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8321,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"5820:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5803:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"68747470733a2f2f7270632d746573746e65742e7769746e65742e696f","id":8324,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5907:31:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_04084d6435a98e6a16a64a0b22917bcd767a40f0b4574a95a57113e04adedd68","typeString":"literal_string \"https://rpc-testnet.witnet.io\""},"value":"https://rpc-testnet.witnet.io"},"id":8325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"5803:135:28","trueExpression":{"hexValue":"68747470733a2f2f7270632d30312e7769746e65742e696f","id":8323,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5860: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":8326,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"5788:161:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"5760:189:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":8328,"nodeType":"ExpressionStatement","src":"5760:189:28"},{"expression":{"id":8333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8329,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"5960:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5960:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8331,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5972:31:28","memberName":"witOracleCrossChainRpcProviders","nodeType":"MemberAccess","referencedDeclaration":9267,"src":"5960:43:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8332,"name":"_witOracleRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8309,"src":"6006:22:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"src":"5960:68:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}},"id":8334,"nodeType":"ExpressionStatement","src":"5960:68:28"},{"expression":{"arguments":[{"id":8336,"name":"_witUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8268,"src":"6152:19:28","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":8335,"name":"__settleWitUnwrapper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9085,"src":"6131:20:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":8337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6131:41:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8338,"nodeType":"ExpressionStatement","src":"6131:41:28"}]},"functionSelector":"f399e22e","id":8340,"implemented":true,"kind":"function","modifiers":[{"id":8271,"kind":"modifierInvocation","modifierName":{"id":8270,"name":"initializer","nameLocations":["5026:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":254,"src":"5026:11:28"},"nodeType":"ModifierInvocation","src":"5026:11:28"}],"name":"initialize","nameLocation":"4891:10:28","nodeType":"FunctionDefinition","parameters":{"id":8269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8266,"mutability":"mutable","name":"_evmCurator","nameLocation":"4924:11:28","nodeType":"VariableDeclaration","scope":8340,"src":"4916:19:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8265,"name":"address","nodeType":"ElementaryTypeName","src":"4916:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8268,"mutability":"mutable","name":"_witUnwrapperBech32","nameLocation":"4966:19:28","nodeType":"VariableDeclaration","scope":8340,"src":"4950:35:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":8267,"name":"string","nodeType":"ElementaryTypeName","src":"4950:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4901:95:28"},"returnParameters":{"id":8272,"nodeType":"ParameterList","parameters":[],"src":"5043:0:28"},"scope":9097,"src":"4882:1298:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[889],"body":{"id":8349,"nodeType":"Block","src":"6492:35:28","statements":[{"expression":{"id":8347,"name":"_DECIMALS","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8097,"src":"6510:9:28","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":8346,"id":8348,"nodeType":"Return","src":"6503:16:28"}]},"documentation":{"id":8341,"nodeType":"StructuredDocumentation","src":"6191:238:28","text":"===============================================================================================================\n --- ERC20 -----------------------------------------------------------------------------------------------------"},"functionSelector":"313ce567","id":8350,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"6444:8:28","nodeType":"FunctionDefinition","overrides":{"id":8343,"nodeType":"OverrideSpecifier","overrides":[],"src":"6455:8:28"},"parameters":{"id":8342,"nodeType":"ParameterList","parameters":[],"src":"6452:2:28"},"returnParameters":{"id":8346,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8345,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8350,"src":"6485:5:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":8344,"name":"uint8","nodeType":"ElementaryTypeName","src":"6485:5:28","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"6484:7:28"},"scope":9097,"src":"6435:92:28","stateMutability":"pure","virtual":false,"visibility":"public"},{"baseFunctions":[145],"body":{"id":8364,"nodeType":"Block","src":"6847:80:28","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8357,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8353,"src":"6862:6:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":8358,"name":"_SUPERCHAIN_TOKEN_BRIDGE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8100,"src":"6872:24:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"6862:34:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":8363,"nodeType":"IfStatement","src":"6858:61:28","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":8360,"name":"Unauthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7891,"src":"6905:12:28","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":8361,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6905:14:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":8362,"nodeType":"RevertStatement","src":"6898:21:28"}}]},"documentation":{"id":8351,"nodeType":"StructuredDocumentation","src":"6537:238:28","text":"===============================================================================================================\n --- ERC20Bridgeable -------------------------------------------------------------------------------------------"},"id":8365,"implemented":true,"kind":"function","modifiers":[],"name":"_checkTokenBridge","nameLocation":"6790:17:28","nodeType":"FunctionDefinition","overrides":{"id":8355,"nodeType":"OverrideSpecifier","overrides":[],"src":"6824:8:28"},"parameters":{"id":8354,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8353,"mutability":"mutable","name":"caller","nameLocation":"6816:6:28","nodeType":"VariableDeclaration","scope":8365,"src":"6808:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8352,"name":"address","nodeType":"ElementaryTypeName","src":"6808:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6807:16:28"},"returnParameters":{"id":8356,"nodeType":"ParameterList","parameters":[],"src":"6847:0:28"},"scope":9097,"src":"6781:146:28","stateMutability":"pure","virtual":false,"visibility":"internal"},{"baseFunctions":[7950],"body":{"id":8376,"nodeType":"Block","src":"7248:48:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8372,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"7266:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8373,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7266:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8374,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7278:10:28","memberName":"evmCurator","nodeType":"MemberAccess","referencedDeclaration":9249,"src":"7266:22:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":8371,"id":8375,"nodeType":"Return","src":"7259:29:28"}]},"documentation":{"id":8366,"nodeType":"StructuredDocumentation","src":"6937:236:28","text":"===============================================================================================================\n --- Wrapped/WIT read-only methods -----------------------------------------------------------------------------"},"functionSelector":"01367f73","id":8377,"implemented":true,"kind":"function","modifiers":[],"name":"evmCurator","nameLocation":"7194:10:28","nodeType":"FunctionDefinition","overrides":{"id":8368,"nodeType":"OverrideSpecifier","overrides":[],"src":"7207:8:28"},"parameters":{"id":8367,"nodeType":"ParameterList","parameters":[],"src":"7204:2:28"},"returnParameters":{"id":8371,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8370,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8377,"src":"7239:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8369,"name":"address","nodeType":"ElementaryTypeName","src":"7239:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"7238:9:28"},"scope":9097,"src":"7185:111:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[7958],"body":{"id":8392,"nodeType":"Block","src":"7468:114:28","statements":[{"expression":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8386,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"7486:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8387,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7486:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8388,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7498:39:28","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9275,"src":"7486:51:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13108_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":8390,"indexExpression":{"id":8389,"name":"_witnetValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8380,"src":"7538:35:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7486:88:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8385,"id":8391,"nodeType":"Return","src":"7479:95:28"}]},"functionSelector":"77cc7a3a","id":8393,"implemented":true,"kind":"function","modifiers":[],"name":"getWrapTransactionLastQueryId","nameLocation":"7313:29:28","nodeType":"FunctionDefinition","overrides":{"id":8382,"nodeType":"OverrideSpecifier","overrides":[],"src":"7412:8:28"},"parameters":{"id":8381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8380,"mutability":"mutable","name":"_witnetValueTransferTransactionHash","nameLocation":"7366:35:28","nodeType":"VariableDeclaration","scope":8393,"src":"7343:58:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":8379,"nodeType":"UserDefinedTypeName","pathNode":{"id":8378,"name":"Witnet.TransactionHash","nameLocations":["7343:6:28","7350:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"7343:22:28"},"referencedDeclaration":13108,"src":"7343:22:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"7342:60:28"},"returnParameters":{"id":8385,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8384,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8393,"src":"7454:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8383,"name":"uint256","nodeType":"ElementaryTypeName","src":"7454:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7453:9:28"},"scope":9097,"src":"7304:278:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[7967],"body":{"id":8444,"nodeType":"Block","src":"7757:667:28","statements":[{"assignments":[8404],"declarations":[{"constant":false,"id":8404,"mutability":"mutable","name":"_witOracleLastQueryId","nameLocation":"7776:21:28","nodeType":"VariableDeclaration","scope":8444,"src":"7768:29:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8403,"name":"uint256","nodeType":"ElementaryTypeName","src":"7768:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":8410,"initialValue":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8405,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"7800:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8406,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7800:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8407,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7812:39:28","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9275,"src":"7800:51:28","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13108_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":8409,"indexExpression":{"id":8408,"name":"_witnetValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8396,"src":"7866:35:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"7800:112:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"7768:144:28"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8411,"name":"_witOracleLastQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8404,"src":"7927:21:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":8412,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"7952:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"7927:26:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8418,"name":"_witOracleLastQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8404,"src":"8031:21:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":8419,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9677,"src":"8056:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9677_$","typeString":"type(library WrappedWITLib)"}},"id":8420,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8070:49:28","memberName":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nodeType":"MemberAccess","referencedDeclaration":9244,"src":"8056:63:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8031:88:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":8441,"nodeType":"Block","src":"8190:227:28","statements":[{"expression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_QueryStatus_$13282","typeString":"enum Witnet.QueryStatus"},"id":8433,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8428,"name":"_witOracleLastQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8404,"src":"8256:21:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8426,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8112,"src":"8231:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},"id":8427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8241:14:28","memberName":"getQueryStatus","nodeType":"MemberAccess","referencedDeclaration":10050,"src":"8231:24:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$returns$_t_enum$_QueryStatus_$13282_$","typeString":"function (uint256) view external returns (enum Witnet.QueryStatus)"}},"id":8429,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8231:47:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_enum$_QueryStatus_$13282","typeString":"enum Witnet.QueryStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":8430,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"8282:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":8431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8289:11:28","memberName":"QueryStatus","nodeType":"MemberAccess","referencedDeclaration":13282,"src":"8282:18:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_QueryStatus_$13282_$","typeString":"type(enum Witnet.QueryStatus)"}},"id":8432,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8301:6:28","memberName":"Posted","nodeType":"MemberAccess","referencedDeclaration":13276,"src":"8282:25:28","typeDescriptions":{"typeIdentifier":"t_enum$_QueryStatus_$13282","typeString":"enum Witnet.QueryStatus"}},"src":"8231:76:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"id":8436,"name":"WrappingStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7944,"src":"8370:14:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WrappingStatus_$7944_$","typeString":"type(enum IWrappedWIT.WrappingStatus)"}},"id":8437,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8385:5:28","memberName":"Retry","nodeType":"MemberAccess","referencedDeclaration":7942,"src":"8370:20:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7944","typeString":"enum IWrappedWIT.WrappingStatus"}},"id":8438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8231:159:28","trueExpression":{"expression":{"id":8434,"name":"WrappingStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7944,"src":"8327:14:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WrappingStatus_$7944_$","typeString":"type(enum IWrappedWIT.WrappingStatus)"}},"id":8435,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8342:8:28","memberName":"Awaiting","nodeType":"MemberAccess","referencedDeclaration":7941,"src":"8327:23:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7944","typeString":"enum IWrappedWIT.WrappingStatus"}},"typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7944","typeString":"enum IWrappedWIT.WrappingStatus"}}],"id":8439,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8212:193:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7944","typeString":"enum IWrappedWIT.WrappingStatus"}},"functionReturnParameters":8402,"id":8440,"nodeType":"Return","src":"8205:200:28"}]},"id":8442,"nodeType":"IfStatement","src":"8027:390:28","trueBody":{"id":8425,"nodeType":"Block","src":"8121:63:28","statements":[{"expression":{"expression":{"id":8422,"name":"WrappingStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7944,"src":"8143:14:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WrappingStatus_$7944_$","typeString":"type(enum IWrappedWIT.WrappingStatus)"}},"id":8423,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"8158:4:28","memberName":"Done","nodeType":"MemberAccess","referencedDeclaration":7943,"src":"8143:19:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7944","typeString":"enum IWrappedWIT.WrappingStatus"}},"functionReturnParameters":8402,"id":8424,"nodeType":"Return","src":"8136:26:28"}]}},"id":8443,"nodeType":"IfStatement","src":"7923:494:28","trueBody":{"id":8417,"nodeType":"Block","src":"7955:66:28","statements":[{"expression":{"expression":{"id":8414,"name":"WrappingStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7944,"src":"7977:14:28","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_WrappingStatus_$7944_$","typeString":"type(enum IWrappedWIT.WrappingStatus)"}},"id":8415,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"7992:7:28","memberName":"Unknown","nodeType":"MemberAccess","referencedDeclaration":7940,"src":"7977:22:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7944","typeString":"enum IWrappedWIT.WrappingStatus"}},"functionReturnParameters":8402,"id":8416,"nodeType":"Return","src":"7970:29:28"}]}}]},"functionSelector":"a53cb851","id":8445,"implemented":true,"kind":"function","modifiers":[],"name":"getWrapTransactionStatus","nameLocation":"7599:24:28","nodeType":"FunctionDefinition","overrides":{"id":8398,"nodeType":"OverrideSpecifier","overrides":[],"src":"7694:8:28"},"parameters":{"id":8397,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8396,"mutability":"mutable","name":"_witnetValueTransferTransactionHash","nameLocation":"7647:35:28","nodeType":"VariableDeclaration","scope":8445,"src":"7624:58:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":8395,"nodeType":"UserDefinedTypeName","pathNode":{"id":8394,"name":"Witnet.TransactionHash","nameLocations":["7624:6:28","7631:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"7624:22:28"},"referencedDeclaration":13108,"src":"7624:22:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"7623:60:28"},"returnParameters":{"id":8402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8401,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8445,"src":"7736:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7944","typeString":"enum IWrappedWIT.WrappingStatus"},"typeName":{"id":8400,"nodeType":"UserDefinedTypeName","pathNode":{"id":8399,"name":"WrappingStatus","nameLocations":["7736:14:28"],"nodeType":"IdentifierPath","referencedDeclaration":7944,"src":"7736:14:28"},"referencedDeclaration":7944,"src":"7736:14:28","typeDescriptions":{"typeIdentifier":"t_enum$_WrappingStatus_$7944","typeString":"enum IWrappedWIT.WrappingStatus"}},"visibility":"internal"}],"src":"7735:16:28"},"scope":9097,"src":"7590:834:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[7972],"body":{"id":8455,"nodeType":"Block","src":"8497:60:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8451,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"8515:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8515:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8453,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8527:22:28","memberName":"evmLastReserveNanowits","nodeType":"MemberAccess","referencedDeclaration":9256,"src":"8515:34:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":8450,"id":8454,"nodeType":"Return","src":"8508:41:28"}]},"functionSelector":"4c68df67","id":8456,"implemented":true,"kind":"function","modifiers":[],"name":"totalReserve","nameLocation":"8441:12:28","nodeType":"FunctionDefinition","overrides":{"id":8447,"nodeType":"OverrideSpecifier","overrides":[],"src":"8456:8:28"},"parameters":{"id":8446,"nodeType":"ParameterList","parameters":[],"src":"8453:2:28"},"returnParameters":{"id":8450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8449,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8456,"src":"8488:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8448,"name":"uint256","nodeType":"ElementaryTypeName","src":"8488:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8487:9:28"},"scope":9097,"src":"8432:125:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[7977],"body":{"id":8466,"nodeType":"Block","src":"8630:48:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8462,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"8648:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8463,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8648:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8464,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8660:10:28","memberName":"evmUnwraps","nodeType":"MemberAccess","referencedDeclaration":9258,"src":"8648:22:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":8461,"id":8465,"nodeType":"Return","src":"8641:29:28"}]},"functionSelector":"520a5495","id":8467,"implemented":true,"kind":"function","modifiers":[],"name":"totalUnwraps","nameLocation":"8574:12:28","nodeType":"FunctionDefinition","overrides":{"id":8458,"nodeType":"OverrideSpecifier","overrides":[],"src":"8589:8:28"},"parameters":{"id":8457,"nodeType":"ParameterList","parameters":[],"src":"8586:2:28"},"returnParameters":{"id":8461,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8460,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8467,"src":"8621:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8459,"name":"uint256","nodeType":"ElementaryTypeName","src":"8621:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8620:9:28"},"scope":9097,"src":"8565:113:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[7982],"body":{"id":8481,"nodeType":"Block","src":"8755:87:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8475,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"8797:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8803:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"8797:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8477,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"8814:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8797:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"id":8473,"name":"__witCustodian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8121,"src":"8773:14:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"id":8474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8788:8:28","memberName":"toBech32","nodeType":"MemberAccess","referencedDeclaration":13787,"src":"8773:23:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Address_$13092_$_t_bool_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_Address_$13092_$","typeString":"function (Witnet.Address,bool) pure returns (string memory)"}},"id":8479,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8773:61:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":8472,"id":8480,"nodeType":"Return","src":"8766:68:28"}]},"functionSelector":"7090c8d6","id":8482,"implemented":true,"kind":"function","modifiers":[],"name":"witCustodian","nameLocation":"8695:12:28","nodeType":"FunctionDefinition","overrides":{"id":8469,"nodeType":"OverrideSpecifier","overrides":[],"src":"8710:8:28"},"parameters":{"id":8468,"nodeType":"ParameterList","parameters":[],"src":"8707:2:28"},"returnParameters":{"id":8472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8471,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8482,"src":"8740:13:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8470,"name":"string","nodeType":"ElementaryTypeName","src":"8740:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8739:15:28"},"scope":9097,"src":"8686:156:28","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[7987],"body":{"id":8498,"nodeType":"Block","src":"8919:97:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8492,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"8971:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8493,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8977:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"8971:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8494,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"8988:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8971:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8488,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"8937:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8489,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8937:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8490,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8949:12:28","memberName":"witUnwrapper","nodeType":"MemberAccess","referencedDeclaration":9261,"src":"8937:24:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"id":8491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8962:8:28","memberName":"toBech32","nodeType":"MemberAccess","referencedDeclaration":13787,"src":"8937:33:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Address_$13092_$_t_bool_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_Address_$13092_$","typeString":"function (Witnet.Address,bool) pure returns (string memory)"}},"id":8496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8937:71:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"functionReturnParameters":8487,"id":8497,"nodeType":"Return","src":"8930:78:28"}]},"functionSelector":"4ba0d150","id":8499,"implemented":true,"kind":"function","modifiers":[],"name":"witUnwrapper","nameLocation":"8859:12:28","nodeType":"FunctionDefinition","overrides":{"id":8484,"nodeType":"OverrideSpecifier","overrides":[],"src":"8874:8:28"},"parameters":{"id":8483,"nodeType":"ParameterList","parameters":[],"src":"8871:2:28"},"returnParameters":{"id":8487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8486,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8499,"src":"8904:13:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8485,"name":"string","nodeType":"ElementaryTypeName","src":"8904:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"8903:15:28"},"scope":9097,"src":"8850:166:28","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[7994],"body":{"id":8513,"nodeType":"Block","src":"9124:130:28","statements":[{"expression":{"arguments":[{"id":8509,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8112,"src":"9199:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},{"id":8510,"name":"evmGasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8501,"src":"9224:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":8507,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9677,"src":"9142:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9677_$","typeString":"type(library WrappedWITLib)"}},"id":8508,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9156:28:28","memberName":"witOracleEstimateWrappingFee","nodeType":"MemberAccess","referencedDeclaration":9676,"src":"9142:42:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_contract$_WitOracle_$9767_$_t_uint256_$returns$_t_uint256_$","typeString":"function (contract WitOracle,uint256) view returns (uint256)"}},"id":8511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9142:104:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":8506,"id":8512,"nodeType":"Return","src":"9135:111:28"}]},"functionSelector":"ddb2bf5c","id":8514,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleEstimateWrappingFee","nameLocation":"9033:28:28","nodeType":"FunctionDefinition","overrides":{"id":8503,"nodeType":"OverrideSpecifier","overrides":[],"src":"9083:8:28"},"parameters":{"id":8502,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8501,"mutability":"mutable","name":"evmGasPrice","nameLocation":"9070:11:28","nodeType":"VariableDeclaration","scope":8514,"src":"9062:19:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8500,"name":"uint256","nodeType":"ElementaryTypeName","src":"9062:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9061:21:28"},"returnParameters":{"id":8506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8505,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8514,"src":"9115:7:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8504,"name":"uint256","nodeType":"ElementaryTypeName","src":"9115:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9114:9:28"},"scope":9097,"src":"9024:230:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[7999],"body":{"id":8529,"nodeType":"Block","src":"9356:179:28","statements":[{"expression":{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8524,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"9468:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8525,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9468:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8526,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9480:32:28","memberName":"witOracleProofOfReserveRadonHash","nodeType":"MemberAccess","referencedDeclaration":9270,"src":"9468:44:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}],"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":8520,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8112,"src":"9374:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},"id":8521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9398:8:28","memberName":"registry","nodeType":"MemberAccess","referencedDeclaration":9906,"src":"9374:32:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_contract$_IWitOracleRadonRegistry_$10468_$","typeString":"function () view external returns (contract IWitOracleRadonRegistry)"}},"id":8522,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9374:34:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRegistry_$10468","typeString":"contract IWitOracleRadonRegistry"}},"id":8523,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"9423:26:28","memberName":"lookupRadonRequestBytecode","nodeType":"MemberAccess","referencedDeclaration":10277,"src":"9374:75:28","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_userDefinedValueType$_RadonHash_$13102_$returns$_t_bytes_memory_ptr_$","typeString":"function (Witnet.RadonHash) view external returns (bytes memory)"}},"id":8527,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"9374:153:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":8519,"id":8528,"nodeType":"Return","src":"9367:160:28"}]},"functionSelector":"acb734bb","id":8530,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleProofOfReserveRadonBytecode","nameLocation":"9271:36:28","nodeType":"FunctionDefinition","overrides":{"id":8516,"nodeType":"OverrideSpecifier","overrides":[],"src":"9310:8:28"},"parameters":{"id":8515,"nodeType":"ParameterList","parameters":[],"src":"9307:2:28"},"returnParameters":{"id":8519,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8518,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8530,"src":"9342:12:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8517,"name":"bytes","nodeType":"ElementaryTypeName","src":"9342:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9341:14:28"},"scope":9097,"src":"9262:273:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[8005],"body":{"id":8541,"nodeType":"Block","src":"9635:60:28","statements":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8537,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"9653:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_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":"9653:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8539,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9665:22:28","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9264,"src":"9653:34:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"functionReturnParameters":8536,"id":8540,"nodeType":"Return","src":"9646:41:28"}]},"functionSelector":"873234cf","id":8542,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleQuerySettings","nameLocation":"9552:22:28","nodeType":"FunctionDefinition","overrides":{"id":8532,"nodeType":"OverrideSpecifier","overrides":[],"src":"9577:8:28"},"parameters":{"id":8531,"nodeType":"ParameterList","parameters":[],"src":"9574:2:28"},"returnParameters":{"id":8536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8535,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8542,"src":"9609:24:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_memory_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"},"typeName":{"id":8534,"nodeType":"UserDefinedTypeName","pathNode":{"id":8533,"name":"WitOracleSettings","nameLocations":["9609:17:28"],"nodeType":"IdentifierPath","referencedDeclaration":7939,"src":"9609:17:28"},"referencedDeclaration":7939,"src":"9609:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"}},"visibility":"internal"}],"src":"9608:26:28"},"scope":9097,"src":"9543:152:28","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[8012],"body":{"id":8574,"nodeType":"Block","src":"10064:381:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":8560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":8555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8552,"name":"_settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8546,"src":"10096:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings calldata"}},"id":8553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10106:12:28","memberName":"minWitnesses","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"10096:22:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":8554,"name":"_WIT_ORACLE_REPORTS_MIN_MIN_WITNESSES","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8103,"src":"10122:37:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"10096:63:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":8559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8556,"name":"_settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8546,"src":"10180:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings calldata"}},"id":8557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10190:18:28","memberName":"baseFeeOverhead100","nodeType":"MemberAccess","referencedDeclaration":7936,"src":"10180:28:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":8558,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MAX_BASE_FEE_OVERHEAD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8106,"src":"10212:52:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"10180:84:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10096:168:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":8564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8561,"name":"_settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8546,"src":"10285:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings calldata"}},"id":8562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10295:21:28","memberName":"unitaryRewardNanowits","nodeType":"MemberAccess","referencedDeclaration":7938,"src":"10285:31:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":8563,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MIN_UNITARY_REWARD","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8109,"src":"10320:49:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"10285:84:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"10096:273:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":8551,"name":"assert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-3,"src":"10075:6:28","typeDescriptions":{"typeIdentifier":"t_function_assert_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":8566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10075:305:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8567,"nodeType":"ExpressionStatement","src":"10075:305:28"},{"expression":{"id":8572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8568,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"10391:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8569,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10391:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8570,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"10403:22:28","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9264,"src":"10391:34:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8571,"name":"_settings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8546,"src":"10428:9:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings calldata"}},"src":"10391:46:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":8573,"nodeType":"ExpressionStatement","src":"10391:46:28"}]},"documentation":{"id":8543,"nodeType":"StructuredDocumentation","src":"9705:238:28","text":"===============================================================================================================\n --- Wrapped/WIT authoritative methods -------------------------------------------------------------------------"},"functionSelector":"b9dcadf2","id":8575,"implemented":true,"kind":"function","modifiers":[{"id":8549,"kind":"modifierInvocation","modifierName":{"id":8548,"name":"onlyCurator","nameLocations":["10047:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":8138,"src":"10047:11:28"},"nodeType":"ModifierInvocation","src":"10047:11:28"}],"name":"settleWitOracleSettings","nameLocation":"9958:23:28","nodeType":"FunctionDefinition","parameters":{"id":8547,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8546,"mutability":"mutable","name":"_settings","nameLocation":"10009:9:28","nodeType":"VariableDeclaration","scope":8575,"src":"9982:36:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_calldata_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"},"typeName":{"id":8545,"nodeType":"UserDefinedTypeName","pathNode":{"id":8544,"name":"WitOracleSettings","nameLocations":["9982:17:28"],"nodeType":"IdentifierPath","referencedDeclaration":7939,"src":"9982:17:28"},"referencedDeclaration":7939,"src":"9982:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"}},"visibility":"internal"}],"src":"9981:38:28"},"returnParameters":{"id":8550,"nodeType":"ParameterList","parameters":[],"src":"10064:0:28"},"scope":9097,"src":"9949:496:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[8018],"body":{"id":8609,"nodeType":"Block","src":"10562:294:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8584,"name":"_witRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8578,"src":"10580:16:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":8585,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10597:6:28","memberName":"length","nodeType":"MemberAccess","src":"10580:23:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":8586,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"10606:1:28","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"10580:27:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":8583,"name":"assert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-3,"src":"10573:6:28","typeDescriptions":{"typeIdentifier":"t_function_assert_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":8588,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10573:35:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8589,"nodeType":"ExpressionStatement","src":"10573:35:28"},{"expression":{"id":8594,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8590,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"10619:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8591,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10619:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8592,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"10631:31:28","memberName":"witOracleCrossChainRpcProviders","nodeType":"MemberAccess","referencedDeclaration":9267,"src":"10619:43:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8593,"name":"_witRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8578,"src":"10665:16:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"src":"10619:62:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}},"id":8595,"nodeType":"ExpressionStatement","src":"10619:62:28"},{"expression":{"arguments":[{"id":8597,"name":"_witRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8578,"src":"10734: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":8605,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8602,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"10800:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8603,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10806:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"10800:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8604,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"10817:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10800:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8598,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"10766:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8599,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10766:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8600,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10778:12:28","memberName":"witUnwrapper","nodeType":"MemberAccess","referencedDeclaration":9261,"src":"10766:24:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"id":8601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"10791:8:28","memberName":"toBech32","nodeType":"MemberAccess","referencedDeclaration":13787,"src":"10766:33:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Address_$13092_$_t_bool_$returns$_t_string_memory_ptr_$attached_to$_t_userDefinedValueType$_Address_$13092_$","typeString":"function (Witnet.Address,bool) pure returns (string memory)"}},"id":8606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10766:71: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":8596,"name":"__formallyVerifyRadonAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9002,"src":"10692: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":8607,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10692:156:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8608,"nodeType":"ExpressionStatement","src":"10692:156:28"}]},"functionSelector":"96fe8eb1","id":8610,"implemented":true,"kind":"function","modifiers":[{"id":8581,"kind":"modifierInvocation","modifierName":{"id":8580,"name":"onlyCurator","nameLocations":["10545:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":8138,"src":"10545:11:28"},"nodeType":"ModifierInvocation","src":"10545:11:28"}],"name":"settleWitRpcProviders","nameLocation":"10462:21:28","nodeType":"FunctionDefinition","parameters":{"id":8579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8578,"mutability":"mutable","name":"_witRpcProviders","nameLocation":"10500:16:28","nodeType":"VariableDeclaration","scope":8610,"src":"10484:32:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":8576,"name":"string","nodeType":"ElementaryTypeName","src":"10484:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8577,"nodeType":"ArrayTypeName","src":"10484:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"src":"10483:34:28"},"returnParameters":{"id":8582,"nodeType":"ParameterList","parameters":[],"src":"10562:0:28"},"scope":9097,"src":"10453:403:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[8023],"body":{"id":8621,"nodeType":"Block","src":"10973:60:28","statements":[{"expression":{"arguments":[{"id":8618,"name":"_witUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8612,"src":"11005:19:28","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}],"id":8617,"name":"__settleWitUnwrapper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9085,"src":"10984:20:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":8619,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"10984:41:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8620,"nodeType":"ExpressionStatement","src":"10984:41:28"}]},"functionSelector":"f577caee","id":8622,"implemented":true,"kind":"function","modifiers":[{"id":8615,"kind":"modifierInvocation","modifierName":{"id":8614,"name":"onlyCurator","nameLocations":["10956:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":8138,"src":"10956:11:28"},"nodeType":"ModifierInvocation","src":"10956:11:28"}],"name":"settleWitUnwrapper","nameLocation":"10873:18:28","nodeType":"FunctionDefinition","parameters":{"id":8613,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8612,"mutability":"mutable","name":"_witUnwrapperBech32","nameLocation":"10908:19:28","nodeType":"VariableDeclaration","scope":8622,"src":"10892:35:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":8611,"name":"string","nodeType":"ElementaryTypeName","src":"10892:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"10891:37:28"},"returnParameters":{"id":8616,"nodeType":"ParameterList","parameters":[],"src":"10973:0:28"},"scope":9097,"src":"10864:169:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[8028],"body":{"id":8651,"nodeType":"Block","src":"11136:174:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8630,"name":"_newCurator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8624,"src":"11154:11:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":8633,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"11177: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":8632,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"11169:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8631,"name":"address","nodeType":"ElementaryTypeName","src":"11169:7:28","typeDescriptions":{}}},"id":8634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11169:10:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11154:25:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":8629,"name":"assert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-3,"src":"11147:6:28","typeDescriptions":{"typeIdentifier":"t_function_assert_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":8636,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11147:33:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8637,"nodeType":"ExpressionStatement","src":"11147:33:28"},{"eventCall":{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8639,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"11219:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8640,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11219:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8641,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11231:10:28","memberName":"evmCurator","nodeType":"MemberAccess","referencedDeclaration":9249,"src":"11219:22:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8642,"name":"_newCurator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8624,"src":"11243:11:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":8638,"name":"CuratorshipTransferred","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7897,"src":"11196:22:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$returns$__$","typeString":"function (address,address)"}},"id":8643,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11196:59:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8644,"nodeType":"EmitStatement","src":"11191:64:28"},{"expression":{"id":8649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8645,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"11266:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_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":"11266:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8647,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"11278:10:28","memberName":"evmCurator","nodeType":"MemberAccess","referencedDeclaration":9249,"src":"11266:22:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8648,"name":"_newCurator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8624,"src":"11291:11:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"11266:36:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":8650,"nodeType":"ExpressionStatement","src":"11266:36:28"}]},"functionSelector":"a41942a4","id":8652,"implemented":true,"kind":"function","modifiers":[{"id":8627,"kind":"modifierInvocation","modifierName":{"id":8626,"name":"onlyCurator","nameLocations":["11119:11:28"],"nodeType":"IdentifierPath","referencedDeclaration":8138,"src":"11119:11:28"},"nodeType":"ModifierInvocation","src":"11119:11:28"}],"name":"transferCuratorship","nameLocation":"11050:19:28","nodeType":"FunctionDefinition","parameters":{"id":8625,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8624,"mutability":"mutable","name":"_newCurator","nameLocation":"11078:11:28","nodeType":"VariableDeclaration","scope":8652,"src":"11070:19:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8623,"name":"address","nodeType":"ElementaryTypeName","src":"11070:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11069:21:28"},"returnParameters":{"id":8628,"nodeType":"ParameterList","parameters":[],"src":"11136:0:28"},"scope":9097,"src":"11041:269:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[8036],"body":{"id":8679,"nodeType":"Block","src":"11725:405:28","statements":[{"expression":{"id":8669,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8662,"name":"_witOracleQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8660,"src":"11736:17:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8665,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8112,"src":"11834:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},{"id":8666,"name":"witOracleCrossChainProofOfInclusionTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8118,"src":"11858:43:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},{"id":8667,"name":"_witnetValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8656,"src":"11916:35:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"},{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"},{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}],"expression":{"id":8663,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9677,"src":"11756:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9677_$","typeString":"type(library WrappedWITLib)"}},"id":8664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"11770:49:28","memberName":"witOracleQueryWitnetValueTransferProofOfInclusion","nodeType":"MemberAccess","referencedDeclaration":9640,"src":"11756:63:28","typeDescriptions":{"typeIdentifier":"t_function_delegatecall_nonpayable$_t_contract$_WitOracle_$9767_$_t_contract$_IWitOracleRadonRequestModal_$10613_$_t_userDefinedValueType$_TransactionHash_$13108_$returns$_t_uint256_$","typeString":"function (contract WitOracle,contract IWitOracleRadonRequestModal,Witnet.TransactionHash) returns (uint256)"}},"id":8668,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11756:206:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11736:226:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8670,"nodeType":"ExpressionStatement","src":"11736:226:28"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8675,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8672,"name":"_witOracleQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8660,"src":"11995:17:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":8673,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9677,"src":"12016:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9677_$","typeString":"type(library WrappedWITLib)"}},"id":8674,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"12030:49:28","memberName":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nodeType":"MemberAccess","referencedDeclaration":9244,"src":"12016:63:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"11995:84:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"616c7265616479206d696e746564","id":8676,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12095: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":8671,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"11973:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8677,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"11973:149:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8678,"nodeType":"ExpressionStatement","src":"11973:149:28"}]},"documentation":{"id":8653,"nodeType":"StructuredDocumentation","src":"11324:238:28","text":"===============================================================================================================\n --- Wrapped/WIT permissionless wrap/unwrap operations ---------------------------------------------------------"},"functionSelector":"5f029ebe","id":8680,"implemented":true,"kind":"function","modifiers":[],"name":"wrap","nameLocation":"11577:4:28","nodeType":"FunctionDefinition","overrides":{"id":8658,"nodeType":"OverrideSpecifier","overrides":[],"src":"11651:8:28"},"parameters":{"id":8657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8656,"mutability":"mutable","name":"_witnetValueTransferTransactionHash","nameLocation":"11605:35:28","nodeType":"VariableDeclaration","scope":8680,"src":"11582:58:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":8655,"nodeType":"UserDefinedTypeName","pathNode":{"id":8654,"name":"Witnet.TransactionHash","nameLocations":["11582:6:28","11589:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"11582:22:28"},"referencedDeclaration":13108,"src":"11582:22:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"11581:60:28"},"returnParameters":{"id":8661,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8660,"mutability":"mutable","name":"_witOracleQueryId","nameLocation":"11701:17:28","nodeType":"VariableDeclaration","scope":8680,"src":"11693:25:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8659,"name":"uint256","nodeType":"ElementaryTypeName","src":"11693:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11692:27:28"},"scope":9097,"src":"11568:562:28","stateMutability":"payable","virtual":false,"visibility":"public"},{"baseFunctions":[8045],"body":{"id":8765,"nodeType":"Block","src":"12275:1054:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8692,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"12318:10:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8693,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12318:12:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8691,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":911,"src":"12308:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":8694,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12308:23:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":8695,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8682,"src":"12335:5:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"12308:32:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"6e6f7420656e6f7567682062616c616e6365","id":8697,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12355: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":8690,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"12286:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8698,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12286:100:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8699,"nodeType":"ExpressionStatement","src":"12286:100:28"},{"assignments":[8701],"declarations":[{"constant":false,"id":8701,"mutability":"mutable","name":"_evmLastReserveNanowits","nameLocation":"12404:23:28","nodeType":"VariableDeclaration","scope":8765,"src":"12397:30:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8700,"name":"uint64","nodeType":"ElementaryTypeName","src":"12397:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":8705,"initialValue":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8702,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"12430:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12430:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8704,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12442:22:28","memberName":"evmLastReserveNanowits","nodeType":"MemberAccess","referencedDeclaration":9256,"src":"12430:34:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"12397:67:28"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":8709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8707,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8682,"src":"12498:5:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":8708,"name":"_evmLastReserveNanowits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8701,"src":"12507:23:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"12498:32:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"63616e6e6f7420756e777261702074686174206d756368","id":8710,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12545: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":8706,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"12476:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8711,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12476:105:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8712,"nodeType":"ExpressionStatement","src":"12476:105:28"},{"assignments":[8717],"declarations":[{"constant":false,"id":8717,"mutability":"mutable","name":"_recipient","nameLocation":"12607:10:28","nodeType":"VariableDeclaration","scope":8765,"src":"12592:25:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"},"typeName":{"id":8716,"nodeType":"UserDefinedTypeName","pathNode":{"id":8715,"name":"Witnet.Address","nameLocations":["12592:6:28","12599:7:28"],"nodeType":"IdentifierPath","referencedDeclaration":13092,"src":"12592:14:28"},"referencedDeclaration":13092,"src":"12592:14:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"visibility":"internal"}],"id":8726,"initialValue":{"arguments":[{"id":8720,"name":"witRecipientBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8684,"src":"12652:18:28","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":8724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":8721,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"12686:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":8722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12692:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"12686:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8723,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"12703:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12686: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":8718,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"12620:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":8719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12627:10:28","memberName":"fromBech32","nodeType":"MemberAccess","referencedDeclaration":13761,"src":"12620:17:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_bool_$returns$_t_userDefinedValueType$_Address_$13092_$","typeString":"function (string memory,bool) pure returns (Witnet.Address)"}},"id":8725,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12620:113:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"nodeType":"VariableDeclarationStatement","src":"12592:141:28"},{"expression":{"arguments":[{"id":8732,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"12766:30:28","subExpression":{"arguments":[{"id":8730,"name":"__witCustodian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8121,"src":"12781:14:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}],"expression":{"id":8728,"name":"_recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8717,"src":"12767:10:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"id":8729,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"12778:2:28","memberName":"eq","nodeType":"MemberAccess","referencedDeclaration":13720,"src":"12767:13:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Address_$13092_$_t_userDefinedValueType$_Address_$13092_$returns$_t_bool_$attached_to$_t_userDefinedValueType$_Address_$13092_$","typeString":"function (Witnet.Address,Witnet.Address) pure returns (bool)"}},"id":8731,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12767:29:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c696420726563697069656e74","id":8733,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"12811: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":8727,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"12744:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8734,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12744:97:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8735,"nodeType":"ExpressionStatement","src":"12744:97:28"},{"expression":{"id":8742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8736,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"12905:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8737,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"12905:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8738,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"12917:22:28","memberName":"evmLastReserveNanowits","nodeType":"MemberAccess","referencedDeclaration":9256,"src":"12905:34:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":8741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":8739,"name":"_evmLastReserveNanowits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8701,"src":"12942:23:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":8740,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8682,"src":"12968:5:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"12942:31:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"12905:68:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":8743,"nodeType":"ExpressionStatement","src":"12905:68:28"},{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8745,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"13045:10:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13045:12:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8747,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8682,"src":"13059:5:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":8744,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1198,"src":"13039:5:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":8748,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13039:26:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8749,"nodeType":"ExpressionStatement","src":"13039:26:28"},{"expression":{"id":8755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":8750,"name":"evmUnwrapId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8688,"src":"13111:11:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"13125:25:28","subExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8751,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"13128:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13128:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8753,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"13140:10:28","memberName":"evmUnwraps","nodeType":"MemberAccess","referencedDeclaration":9258,"src":"13128:22:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"13111:39:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":8756,"nodeType":"ExpressionStatement","src":"13111:39:28"},{"eventCall":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":8758,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1631,"src":"13216:10:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":8759,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13216:12:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8760,"name":"witRecipientBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8684,"src":"13244:18:28","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string calldata"}},{"id":8761,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8682,"src":"13278:5:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":8762,"name":"evmUnwrapId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8688,"src":"13299: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":8757,"name":"Unwrapped","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7932,"src":"13192: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":8763,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13192:129:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8764,"nodeType":"EmitStatement","src":"13187:134:28"}]},"functionSelector":"8a510f27","id":8766,"implemented":true,"kind":"function","modifiers":[],"name":"unwrap","nameLocation":"12147:6:28","nodeType":"FunctionDefinition","overrides":{"id":8686,"nodeType":"OverrideSpecifier","overrides":[],"src":"12213:8:28"},"parameters":{"id":8685,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8682,"mutability":"mutable","name":"value","nameLocation":"12161:5:28","nodeType":"VariableDeclaration","scope":8766,"src":"12154:12:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8681,"name":"uint64","nodeType":"ElementaryTypeName","src":"12154:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":8684,"mutability":"mutable","name":"witRecipientBech32","nameLocation":"12184:18:28","nodeType":"VariableDeclaration","scope":8766,"src":"12168:34:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":8683,"name":"string","nodeType":"ElementaryTypeName","src":"12168:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"12153:50:28"},"returnParameters":{"id":8689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8688,"mutability":"mutable","name":"evmUnwrapId","nameLocation":"12257:11:28","nodeType":"VariableDeclaration","scope":8766,"src":"12249:19:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8687,"name":"uint256","nodeType":"ElementaryTypeName","src":"12249:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12248:21:28"},"scope":9097,"src":"12138:1191:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[10121],"body":{"id":8785,"nodeType":"Block","src":"13758:62:28","statements":[{"expression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":8783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":8777,"name":"_from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8769,"src":"13784:5:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8776,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13776:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8775,"name":"address","nodeType":"ElementaryTypeName","src":"13776:7:28","typeDescriptions":{}}},"id":8778,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13776:14:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":8781,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8112,"src":"13802:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}],"id":8780,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"13794:7:28","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":8779,"name":"address","nodeType":"ElementaryTypeName","src":"13794:7:28","typeDescriptions":{}}},"id":8782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"13794:18:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"13776:36:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":8774,"id":8784,"nodeType":"Return","src":"13769:43:28"}]},"documentation":{"id":8767,"nodeType":"StructuredDocumentation","src":"13587:90:28","text":"@notice Determines if Wit/Oracle query results can be reported from the given address."},"functionSelector":"47a10e56","id":8786,"implemented":true,"kind":"function","modifiers":[],"name":"reportableFrom","nameLocation":"13692:14:28","nodeType":"FunctionDefinition","overrides":{"id":8771,"nodeType":"OverrideSpecifier","overrides":[],"src":"13722:8:28"},"parameters":{"id":8770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8769,"mutability":"mutable","name":"_from","nameLocation":"13715:5:28","nodeType":"VariableDeclaration","scope":8786,"src":"13707:13:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8768,"name":"address","nodeType":"ElementaryTypeName","src":"13707:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13706:15:28"},"returnParameters":{"id":8774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8773,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8786,"src":"13752:4:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":8772,"name":"bool","nodeType":"ElementaryTypeName","src":"13752:4:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"13751:6:28"},"scope":9097,"src":"13683:137:28","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[10113],"body":{"id":8864,"nodeType":"Block","src":"14305:1087:28","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":8797,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"14340:3:28","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":8798,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14344:6:28","memberName":"sender","nodeType":"MemberAccess","src":"14340:10:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":8796,"name":"reportableFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8786,"src":"14325:14:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":8799,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14325:26:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c6964206f7261636c65","id":8800,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14353: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":8795,"name":"_require","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9018,"src":"14316:8:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14316:54:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8802,"nodeType":"ExpressionStatement","src":"14316:54:28"},{"clauses":[{"block":{"id":8844,"nodeType":"Block","src":"14747:482:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":8828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":8824,"name":"_witRecipientBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8812,"src":"14805:19:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8823,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"14799:5:28","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":8822,"name":"bytes","nodeType":"ElementaryTypeName","src":"14799:5:28","typeDescriptions":{}}},"id":8825,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14799:26:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":8821,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"14789:9:28","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":8826,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14789:37:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":8827,"name":"__witCustodianBech32Hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8123,"src":"14830:24:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"14789:65:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c696420637573746f6469616e","id":8829,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"14873: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":8820,"name":"_require","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9018,"src":"14762:8:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8830,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14762:145:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8831,"nodeType":"ExpressionStatement","src":"14762:145:28"},{"expression":{"arguments":[{"id":8833,"name":"_evmRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8816,"src":"14973:13:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8834,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8818,"src":"14988:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":8832,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1165,"src":"14967:5:28","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":8835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14967:28:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8836,"nodeType":"ExpressionStatement","src":"14967:28:28"},{"eventCall":{"arguments":[{"id":8838,"name":"_witWrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8814,"src":"15072:17:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":8839,"name":"_evmRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8816,"src":"15109:13:28","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":8840,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8818,"src":"15142:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":8841,"name":"_witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8810,"src":"15168:32:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","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_$13108","typeString":"Witnet.TransactionHash"}],"id":8837,"name":"Wrapped","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7922,"src":"15046:7:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$_t_address_$_t_uint256_$_t_userDefinedValueType$_TransactionHash_$13108_$returns$__$","typeString":"function (string memory,address,uint256,Witnet.TransactionHash)"}},"id":8842,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15046:169:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8843,"nodeType":"EmitStatement","src":"15041:174:28"}]},"errorName":"","id":8845,"nodeType":"TryCatchClause","parameters":{"id":8819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8810,"mutability":"mutable","name":"_witValueTransferTransactionHash","nameLocation":"14545:32:28","nodeType":"VariableDeclaration","scope":8845,"src":"14522:55:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":8809,"nodeType":"UserDefinedTypeName","pathNode":{"id":8808,"name":"Witnet.TransactionHash","nameLocations":["14522:6:28","14529:15:28"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"14522:22:28"},"referencedDeclaration":13108,"src":"14522:22:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":8812,"mutability":"mutable","name":"_witRecipientBech32","nameLocation":"14606:19:28","nodeType":"VariableDeclaration","scope":8845,"src":"14592:33:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8811,"name":"string","nodeType":"ElementaryTypeName","src":"14592:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8814,"mutability":"mutable","name":"_witWrapperBech32","nameLocation":"14654:17:28","nodeType":"VariableDeclaration","scope":8845,"src":"14640:31:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8813,"name":"string","nodeType":"ElementaryTypeName","src":"14640:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":8816,"mutability":"mutable","name":"_evmRecipient","nameLocation":"14694:13:28","nodeType":"VariableDeclaration","scope":8845,"src":"14686:21:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":8815,"name":"address","nodeType":"ElementaryTypeName","src":"14686:7:28","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":8818,"mutability":"mutable","name":"_value","nameLocation":"14729:6:28","nodeType":"VariableDeclaration","scope":8845,"src":"14722:13:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8817,"name":"uint64","nodeType":"ElementaryTypeName","src":"14722:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"14507:239:28"},"src":"14499:730:28"},{"block":{"id":8853,"nodeType":"Block","src":"15265:53:28","statements":[{"expression":{"arguments":[{"id":8850,"name":"_reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8847,"src":"15288:7:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8849,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9035,"src":"15280:7:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":8851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15280:16:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8852,"nodeType":"ExpressionStatement","src":"15280:16:28"}]},"errorName":"Error","id":8854,"nodeType":"TryCatchClause","parameters":{"id":8848,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8847,"mutability":"mutable","name":"_reason","nameLocation":"15256:7:28","nodeType":"VariableDeclaration","scope":8854,"src":"15242:21:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8846,"name":"string","nodeType":"ElementaryTypeName","src":"15242:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"15241:23:28"},"src":"15230:88:28"},{"block":{"id":8861,"nodeType":"Block","src":"15340:45:28","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8858,"name":"_revertUnhandled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9043,"src":"15355:16:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":8859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15355:18:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8860,"nodeType":"ExpressionStatement","src":"15355:18:28"}]},"errorName":"","id":8862,"nodeType":"TryCatchClause","parameters":{"id":8857,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8856,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8862,"src":"15326:12:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8855,"name":"bytes","nodeType":"ElementaryTypeName","src":"15326:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15325:14:28"},"src":"15319:66:28"}],"externalCall":{"arguments":[{"id":8805,"name":"queryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8789,"src":"14443:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":8806,"name":"queryResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8791,"src":"14466: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":8803,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9677,"src":"14387:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9677_$","typeString":"type(library WrappedWITLib)"}},"id":8804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"14401:27:28","memberName":"processWitOracleQueryResult","nodeType":"MemberAccess","referencedDeclaration":9527,"src":"14387:41:28","typeDescriptions":{"typeIdentifier":"t_function_delegatecall_nonpayable$_t_uint256_$_t_bytes_memory_ptr_$returns$_t_userDefinedValueType$_TransactionHash_$13108_$_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":8807,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"14387:111:28","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_userDefinedValueType$_TransactionHash_$13108_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_address_$_t_uint64_$","typeString":"tuple(Witnet.TransactionHash,string memory,string memory,address,uint64)"}},"id":8863,"nodeType":"TryStatement","src":"14383:1002:28"}]},"documentation":{"id":8787,"nodeType":"StructuredDocumentation","src":"13828: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":8865,"implemented":true,"kind":"function","modifiers":[],"name":"reportWitOracleQueryResult","nameLocation":"14162:26:28","nodeType":"FunctionDefinition","overrides":{"id":8793,"nodeType":"OverrideSpecifier","overrides":[],"src":"14281:8:28"},"parameters":{"id":8792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8789,"mutability":"mutable","name":"queryId","nameLocation":"14211:7:28","nodeType":"VariableDeclaration","scope":8865,"src":"14203:15:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8788,"name":"uint256","nodeType":"ElementaryTypeName","src":"14203:7:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":8791,"mutability":"mutable","name":"queryResult","nameLocation":"14248:11:28","nodeType":"VariableDeclaration","scope":8865,"src":"14233:26:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8790,"name":"bytes","nodeType":"ElementaryTypeName","src":"14233:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"14188:82:28"},"returnParameters":{"id":8794,"nodeType":"ParameterList","parameters":[],"src":"14305:0:28"},"scope":9097,"src":"14153:1239:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[9931],"body":{"id":8957,"nodeType":"Block","src":"15915:1344:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":8883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":8876,"name":"report","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8869,"src":"15949:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":8877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15956:11:28","memberName":"queryParams","nodeType":"MemberAccess","referencedDeclaration":13217,"src":"15949:18:28","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":8878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"15968:16:28","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13321,"src":"15949:35:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8879,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"15988:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8880,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15988:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8881,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16000:22:28","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9264,"src":"15988:34:28","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":8882,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16023:12:28","memberName":"minWitnesses","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"15988:47:28","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"15949:86:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e73756666696369656e74207769746e6573736573","id":8884,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16050: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":8875,"name":"_require","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9018,"src":"15926:8:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8885,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"15926:159:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8886,"nodeType":"ExpressionStatement","src":"15926:159:28"},{"expression":{"arguments":[{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8891,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"16152:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8892,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16152:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8893,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16164:32:28","memberName":"witOracleProofOfReserveRadonHash","nodeType":"MemberAccess","referencedDeclaration":9270,"src":"16152:44:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}],"expression":{"expression":{"id":8888,"name":"report","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8869,"src":"16129:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":8889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16136:12:28","memberName":"queryRadHash","nodeType":"MemberAccess","referencedDeclaration":13214,"src":"16129:19:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"id":8890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16149:2:28","memberName":"eq","nodeType":"MemberAccess","referencedDeclaration":14740,"src":"16129:22:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_RadonHash_$13102_$_t_userDefinedValueType$_RadonHash_$13102_$returns$_t_bool_$attached_to$_t_userDefinedValueType$_RadonHash_$13102_$","typeString":"function (Witnet.RadonHash,Witnet.RadonHash) pure returns (bool)"}},"id":8894,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16129:68:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c6964207261646f6e2068617368","id":8895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"16212: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":8887,"name":"_require","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9018,"src":"16106:8:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":8896,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16106:137:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8897,"nodeType":"ExpressionStatement","src":"16106:137:28"},{"assignments":[8902],"declarations":[{"constant":false,"id":8902,"mutability":"mutable","name":"_witOracleProofOfReserve","nameLocation":"16362:24:28","nodeType":"VariableDeclaration","scope":8957,"src":"16337:49:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":8901,"nodeType":"UserDefinedTypeName","pathNode":{"id":8900,"name":"Witnet.DataResult","nameLocations":["16337:6:28","16344:10:28"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"16337:17:28"},"referencedDeclaration":13240,"src":"16337:17:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"id":8908,"initialValue":{"arguments":[{"id":8905,"name":"report","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8869,"src":"16446:6:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},{"id":8906,"name":"proof","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8871,"src":"16471:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":8903,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8112,"src":"16389:9:28","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},"id":8904,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16413:14:28","memberName":"pushDataReport","nodeType":"MemberAccess","referencedDeclaration":9899,"src":"16389:38:28","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_struct$_DataPushReport_$13223_memory_ptr_$_t_bytes_memory_ptr_$returns$_t_struct$_DataResult_$13240_memory_ptr_$","typeString":"function (struct Witnet.DataPushReport memory,bytes memory) external returns (struct Witnet.DataResult memory)"}},"id":8907,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16389:102:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"nodeType":"VariableDeclarationStatement","src":"16337:154:28"},{"clauses":[{"block":{"id":8937,"nodeType":"Block","src":"16743:353:28","statements":[{"eventCall":{"arguments":[{"id":8917,"name":"_totalReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8914,"src":"16795:13:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"expression":{"id":8918,"name":"_witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8902,"src":"16828:24:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":8919,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16853:9:28","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":13236,"src":"16828:34:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},{"expression":{"id":8920,"name":"_witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8902,"src":"16881:24:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":8921,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16906:8:28","memberName":"drTxHash","nodeType":"MemberAccess","referencedDeclaration":13233,"src":"16881:33:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}],"id":8916,"name":"ReserveUpdate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7911,"src":"16763:13:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$_t_userDefinedValueType$_Timestamp_$13106_$_t_userDefinedValueType$_TransactionHash_$13108_$returns$__$","typeString":"function (uint256,Witnet.Timestamp,Witnet.TransactionHash)"}},"id":8922,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16763:167:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8923,"nodeType":"EmitStatement","src":"16758:172:28"},{"expression":{"id":8928,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8924,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"16945:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16945:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8926,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16957:22:28","memberName":"evmLastReserveNanowits","nodeType":"MemberAccess","referencedDeclaration":9256,"src":"16945:34:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8927,"name":"_totalReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8914,"src":"16982:13:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"16945:50:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":8929,"nodeType":"ExpressionStatement","src":"16945:50:28"},{"expression":{"id":8935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8930,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"17010:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8931,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17010:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8932,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17022:23:28","memberName":"evmLastReserveTimestamp","nodeType":"MemberAccess","referencedDeclaration":9254,"src":"17010:35:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":8933,"name":"_witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8902,"src":"17048:24:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":8934,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17073:9:28","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":13236,"src":"17048:34:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"src":"17010:72:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"id":8936,"nodeType":"ExpressionStatement","src":"17010:72:28"}]},"errorName":"","id":8938,"nodeType":"TryCatchClause","parameters":{"id":8915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8914,"mutability":"mutable","name":"_totalReserve","nameLocation":"16708:13:28","nodeType":"VariableDeclaration","scope":8938,"src":"16701:20:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":8913,"name":"uint64","nodeType":"ElementaryTypeName","src":"16701:6:28","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"16686:56:28"},"src":"16678:418:28"},{"block":{"id":8946,"nodeType":"Block","src":"17132:53:28","statements":[{"expression":{"arguments":[{"id":8943,"name":"_reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8940,"src":"17155:7:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":8942,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9035,"src":"17147:7:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":8944,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17147:16:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8945,"nodeType":"ExpressionStatement","src":"17147:16:28"}]},"errorName":"Error","id":8947,"nodeType":"TryCatchClause","parameters":{"id":8941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8940,"mutability":"mutable","name":"_reason","nameLocation":"17123:7:28","nodeType":"VariableDeclaration","scope":8947,"src":"17109:21:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8939,"name":"string","nodeType":"ElementaryTypeName","src":"17109:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17108:23:28"},"src":"17097:88:28"},{"block":{"id":8954,"nodeType":"Block","src":"17207:45:28","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8951,"name":"_revertUnhandled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9043,"src":"17222:16:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$__$","typeString":"function () pure"}},"id":8952,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17222:18:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":8953,"nodeType":"ExpressionStatement","src":"17222:18:28"}]},"errorName":"","id":8955,"nodeType":"TryCatchClause","parameters":{"id":8950,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8949,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":8955,"src":"17193:12:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":8948,"name":"bytes","nodeType":"ElementaryTypeName","src":"17193:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"17192:14:28"},"src":"17186:66:28"}],"externalCall":{"arguments":[{"id":8911,"name":"_witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8902,"src":"16632:24:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}],"expression":{"id":8909,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9677,"src":"16575:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9677_$","typeString":"type(library WrappedWITLib)"}},"id":8910,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16589:28:28","memberName":"parseWitOracleProofOfReserve","nodeType":"MemberAccess","referencedDeclaration":9346,"src":"16575:42:28","typeDescriptions":{"typeIdentifier":"t_function_delegatecall_view$_t_struct$_DataResult_$13240_memory_ptr_$returns$_t_uint64_$","typeString":"function (struct Witnet.DataResult memory) view returns (uint64)"}},"id":8912,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"16575:102:28","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":8956,"nodeType":"TryStatement","src":"16571:681:28"}]},"documentation":{"id":8866,"nodeType":"StructuredDocumentation","src":"15646:108:28","text":"@notice Process canonical Proof-of-Reserve reports from the Wit/Oracle blockchain, permissionlessly.    "},"functionSelector":"6d0d6a7e","id":8958,"implemented":true,"kind":"function","modifiers":[],"name":"pushDataReport","nameLocation":"15769:14:28","nodeType":"FunctionDefinition","overrides":{"id":8873,"nodeType":"OverrideSpecifier","overrides":[],"src":"15892:8:28"},"parameters":{"id":8872,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8869,"mutability":"mutable","name":"report","nameLocation":"15829:6:28","nodeType":"VariableDeclaration","scope":8958,"src":"15798:37:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport"},"typeName":{"id":8868,"nodeType":"UserDefinedTypeName","pathNode":{"id":8867,"name":"Witnet.DataPushReport","nameLocations":["15798:6:28","15805:14:28"],"nodeType":"IdentifierPath","referencedDeclaration":13223,"src":"15798:21:28"},"referencedDeclaration":13223,"src":"15798:21:28","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_storage_ptr","typeString":"struct Witnet.DataPushReport"}},"visibility":"internal"},{"constant":false,"id":8871,"mutability":"mutable","name":"proof","nameLocation":"15866:5:28","nodeType":"VariableDeclaration","scope":8958,"src":"15851:20:28","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":8870,"name":"bytes","nodeType":"ElementaryTypeName","src":"15851:5:28","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"15783:99:28"},"returnParameters":{"id":8874,"nodeType":"ParameterList","parameters":[],"src":"15915:0:28"},"scope":9097,"src":"15760:1499:28","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":9001,"nodeType":"Block","src":"17781:369:28","statements":[{"assignments":[8971],"declarations":[{"constant":false,"id":8971,"mutability":"mutable","name":"_commonArgs","nameLocation":"17812:11:28","nodeType":"VariableDeclaration","scope":9001,"src":"17796:27:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":8969,"name":"string","nodeType":"ElementaryTypeName","src":"17796:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8970,"nodeType":"ArrayTypeName","src":"17796:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"id":8977,"initialValue":{"arguments":[{"hexValue":"32","id":8975,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17839: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":8974,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"17826: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":8972,"name":"string","nodeType":"ElementaryTypeName","src":"17830:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8973,"nodeType":"ArrayTypeName","src":"17830:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}}},"id":8976,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17826:15:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"17796:45:28"},{"expression":{"id":8983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8978,"name":"_commonArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8971,"src":"17852:11:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":8980,"indexExpression":{"hexValue":"30","id":8979,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17864: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":"17852:14:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":8981,"name":"witCustodian","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8482,"src":"17869:12:28","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":8982,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17869:14:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"17852:31:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":8984,"nodeType":"ExpressionStatement","src":"17852:31:28"},{"expression":{"id":8989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":8985,"name":"_commonArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8971,"src":"17894:11:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":8987,"indexExpression":{"hexValue":"31","id":8986,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"17906: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":"17894:14:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":8988,"name":"_witUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8964,"src":"17911:19:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"17894:36:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":8990,"nodeType":"ExpressionStatement","src":"17894:36:28"},{"expression":{"id":8999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":8991,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"17941:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":8992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17941:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":8993,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"17953:32:28","memberName":"witOracleProofOfReserveRadonHash","nodeType":"MemberAccess","referencedDeclaration":9270,"src":"17941:44:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":8996,"name":"_commonArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8971,"src":"18081:11:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"id":8997,"name":"_witRpcProviders","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8962,"src":"18111: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":8994,"name":"witOracleCrossChainProofOfReserveTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8115,"src":"17988:41:28","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"id":8995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18044:18:28","memberName":"verifyRadonRequest","nodeType":"MemberAccess","referencedDeclaration":10607,"src":"17988: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_$13102_$","typeString":"function (string memory[] memory,string memory[] memory) external returns (Witnet.RadonHash)"}},"id":8998,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"17988:154:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"src":"17941:201:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"id":9000,"nodeType":"ExpressionStatement","src":"17941:201:28"}]},"documentation":{"id":8959,"nodeType":"StructuredDocumentation","src":"17513:96:28","text":"@dev Formally verify cross-chain Radon request for notarizing custodian's proofs of reserve."},"id":9002,"implemented":true,"kind":"function","modifiers":[],"name":"__formallyVerifyRadonAssets","nameLocation":"17624:27:28","nodeType":"FunctionDefinition","parameters":{"id":8965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":8962,"mutability":"mutable","name":"_witRpcProviders","nameLocation":"17682:16:28","nodeType":"VariableDeclaration","scope":9002,"src":"17666:32:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":8960,"name":"string","nodeType":"ElementaryTypeName","src":"17666:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":8961,"nodeType":"ArrayTypeName","src":"17666:8:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":8964,"mutability":"mutable","name":"_witUnwrapperBech32","nameLocation":"17727:19:28","nodeType":"VariableDeclaration","scope":9002,"src":"17713:33:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":8963,"name":"string","nodeType":"ElementaryTypeName","src":"17713:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"17651:106:28"},"returnParameters":{"id":8966,"nodeType":"ParameterList","parameters":[],"src":"17781:0:28"},"scope":9097,"src":"17615:535:28","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9017,"nodeType":"Block","src":"18228:76:28","statements":[{"condition":{"id":9010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"18243:10:28","subExpression":{"id":9009,"name":"condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9004,"src":"18244:9:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9016,"nodeType":"IfStatement","src":"18239:58:28","trueBody":{"id":9015,"nodeType":"Block","src":"18255:42:28","statements":[{"expression":{"arguments":[{"id":9012,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9006,"src":"18278:6:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9011,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9035,"src":"18270:7:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":9013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18270:15:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9014,"nodeType":"ExpressionStatement","src":"18270:15:28"}]}}]},"id":9018,"implemented":true,"kind":"function","modifiers":[],"name":"_require","nameLocation":"18167:8:28","nodeType":"FunctionDefinition","parameters":{"id":9007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9004,"mutability":"mutable","name":"condition","nameLocation":"18181:9:28","nodeType":"VariableDeclaration","scope":9018,"src":"18176:14:28","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9003,"name":"bool","nodeType":"ElementaryTypeName","src":"18176:4:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9006,"mutability":"mutable","name":"reason","nameLocation":"18206:6:28","nodeType":"VariableDeclaration","scope":9018,"src":"18192:20:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9005,"name":"string","nodeType":"ElementaryTypeName","src":"18192:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"18175:38:28"},"returnParameters":{"id":9008,"nodeType":"ParameterList","parameters":[],"src":"18228:0:28"},"scope":9097,"src":"18158:146:28","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9034,"nodeType":"Block","src":"18365:148:28","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"577261707065645749543a20","id":9028,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18439:14:28","typeDescriptions":{"typeIdentifier":"t_stringliteral_6464deb7a08899e125b23ae34c4cefa9ab1fa68b40b002bbb3ffd32198544726","typeString":"literal_string \"WrappedWIT: \""},"value":"WrappedWIT: "},{"id":9029,"name":"reason","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9020,"src":"18472: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":9026,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"18404:3:28","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9027,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"18408:12:28","memberName":"encodePacked","nodeType":"MemberAccess","src":"18404:16:28","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18404:89:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9025,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18397:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_string_storage_ptr_$","typeString":"type(string storage pointer)"},"typeName":{"id":9024,"name":"string","nodeType":"ElementaryTypeName","src":"18397:6:28","typeDescriptions":{}}},"id":9031,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18397:97:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9023,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"18376:6:28","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":9032,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18376:129:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9033,"nodeType":"ExpressionStatement","src":"18376:129:28"}]},"id":9035,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"18321:7:28","nodeType":"FunctionDefinition","parameters":{"id":9021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9020,"mutability":"mutable","name":"reason","nameLocation":"18343:6:28","nodeType":"VariableDeclaration","scope":9035,"src":"18329:20:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9019,"name":"string","nodeType":"ElementaryTypeName","src":"18329:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"18328:22:28"},"returnParameters":{"id":9022,"nodeType":"ParameterList","parameters":[],"src":"18365:0:28"},"scope":9097,"src":"18312:201:28","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9042,"nodeType":"Block","src":"18563:49:28","statements":[{"expression":{"arguments":[{"hexValue":"756e68616e646c656420657863657074696f6e","id":9039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18582: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":9038,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9035,"src":"18574:7:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":9040,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18574:30:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9041,"nodeType":"ExpressionStatement","src":"18574:30:28"}]},"id":9043,"implemented":true,"kind":"function","modifiers":[],"name":"_revertUnhandled","nameLocation":"18530:16:28","nodeType":"FunctionDefinition","parameters":{"id":9036,"nodeType":"ParameterList","parameters":[],"src":"18546:2:28"},"returnParameters":{"id":9037,"nodeType":"ParameterList","parameters":[],"src":"18563:0:28"},"scope":9097,"src":"18521:91:28","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9084,"nodeType":"Block","src":"18708:460:28","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":9056,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":9052,"name":"_witUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9045,"src":"18757:19:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9051,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"18751:5:28","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":9050,"name":"bytes","nodeType":"ElementaryTypeName","src":"18751:5:28","typeDescriptions":{}}},"id":9053,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18751:26:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":9049,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"18741:9:28","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":9054,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18741:37:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9055,"name":"__witCustodianBech32Hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8123,"src":"18782:24:28","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"18741:65:28","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"756e61636365707461626c6520756e77726170706572","id":9057,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"18821: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":9048,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"18719:7:28","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18719:137:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9059,"nodeType":"ExpressionStatement","src":"18719:137:28"},{"eventCall":{"arguments":[{"id":9061,"name":"_witUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9045,"src":"18885:19:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9060,"name":"NewUnwrapper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7901,"src":"18872:12:28","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory)"}},"id":9062,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18872:33:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9063,"nodeType":"EmitStatement","src":"18867:38:28"},{"expression":{"id":9075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9064,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"18916:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9065,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18916:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9066,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"18928:12:28","memberName":"witUnwrapper","nodeType":"MemberAccess","referencedDeclaration":9261,"src":"18916:24:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":9069,"name":"_witUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9045,"src":"18961:19:28","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9070,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"18982:5:28","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":9071,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18988:7:28","memberName":"chainid","nodeType":"MemberAccess","src":"18982:13:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":9072,"name":"_CANONICAL_CHAIN_ID","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":8094,"src":"18999:19:28","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18982: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":9067,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"18943:6:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"18950:10:28","memberName":"fromBech32","nodeType":"MemberAccess","referencedDeclaration":13761,"src":"18943:17:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_string_memory_ptr_$_t_bool_$returns$_t_userDefinedValueType$_Address_$13092_$","typeString":"function (string memory,bool) pure returns (Witnet.Address)"}},"id":9074,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"18943:76:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"src":"18916:103:28","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"id":9076,"nodeType":"ExpressionStatement","src":"18916:103:28"},{"expression":{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9078,"name":"__storage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9096,"src":"19072:9:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9079,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19072:11:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9080,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19084:31:28","memberName":"witOracleCrossChainRpcProviders","nodeType":"MemberAccess","referencedDeclaration":9267,"src":"19072:43:28","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage","typeString":"string storage ref[] storage ref"}},{"id":9081,"name":"_witUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9045,"src":"19130:19: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":9077,"name":"__formallyVerifyRadonAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9002,"src":"19030: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":9082,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19030:130:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9083,"nodeType":"ExpressionStatement","src":"19030:130:28"}]},"id":9085,"implemented":true,"kind":"function","modifiers":[],"name":"__settleWitUnwrapper","nameLocation":"18629:20:28","nodeType":"FunctionDefinition","parameters":{"id":9046,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9045,"mutability":"mutable","name":"_witUnwrapperBech32","nameLocation":"18664:19:28","nodeType":"VariableDeclaration","scope":9085,"src":"18650:33:28","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9044,"name":"string","nodeType":"ElementaryTypeName","src":"18650:6:28","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"18649:35:28"},"returnParameters":{"id":9047,"nodeType":"ParameterList","parameters":[],"src":"18708:0:28"},"scope":9097,"src":"18620:548:28","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":9095,"nodeType":"Block","src":"19251:46:28","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9091,"name":"WrappedWITLib","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9677,"src":"19269:13:28","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WrappedWITLib_$9677_$","typeString":"type(library WrappedWITLib)"}},"id":9092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"19283:4:28","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":9648,"src":"19269:18:28","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9093,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19269:20:28","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"functionReturnParameters":9090,"id":9094,"nodeType":"Return","src":"19262:27:28"}]},"id":9096,"implemented":true,"kind":"function","modifiers":[],"name":"__storage","nameLocation":"19185:9:28","nodeType":"FunctionDefinition","parameters":{"id":9086,"nodeType":"ParameterList","parameters":[],"src":"19194:2:28"},"returnParameters":{"id":9090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9089,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9096,"src":"19220:29:28","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage"},"typeName":{"id":9088,"nodeType":"UserDefinedTypeName","pathNode":{"id":9087,"name":"WrappedWITLib.Storage","nameLocations":["19220:13:28","19234:7:28"],"nodeType":"IdentifierPath","referencedDeclaration":9281,"src":"19220:21:28"},"referencedDeclaration":9281,"src":"19220:21:28","typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage"}},"visibility":"internal"}],"src":"19219:31:28"},"scope":9097,"src":"19176:121:28","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":9098,"src":"1097:18203: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:19219:28"},"id":28},"contracts/WrappedWITDeployer.sol":{"ast":{"absolutePath":"contracts/WrappedWITDeployer.sol","exportedSymbols":{"Create3":[7886],"Ownable":[562],"Ownable2Step":[648],"WrappedWITDeployer":[9210]},"id":9211,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9099,"literals":["solidity","0.8",".28"],"nodeType":"PragmaDirective","src":"35:23:29"},{"absolutePath":"@openzeppelin/contracts/access/Ownable2Step.sol","file":"@openzeppelin/contracts/access/Ownable2Step.sol","id":9100,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9211,"sourceUnit":649,"src":"62:57:29","symbolAliases":[],"unitAlias":""},{"absolutePath":"contracts/Create3.sol","file":"./Create3.sol","id":9102,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9211,"sourceUnit":7887,"src":"123:38:29","symbolAliases":[{"foreign":{"id":9101,"name":"Create3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7886,"src":"131:7:29","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":9104,"name":"Ownable2Step","nameLocations":["342:12:29"],"nodeType":"IdentifierPath","referencedDeclaration":648,"src":"342:12:29"},"id":9105,"nodeType":"InheritanceSpecifier","src":"342:12:29"}],"canonicalName":"WrappedWITDeployer","contractDependencies":[],"contractKind":"contract","documentation":{"id":9103,"nodeType":"StructuredDocumentation","src":"165: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":9210,"linearizedBaseContracts":[9210,648,562,1649],"name":"WrappedWITDeployer","nameLocation":"320:18:29","nodeType":"ContractDefinition","nodes":[{"body":{"id":9112,"nodeType":"Block","src":"398:2:29","statements":[]},"id":9113,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"expression":{"id":9108,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"386:3:29","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":9109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"390:6:29","memberName":"sender","nodeType":"MemberAccess","src":"386:10:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"id":9110,"kind":"baseConstructorSpecifier","modifierName":{"id":9107,"name":"Ownable","nameLocations":["378:7:29"],"nodeType":"IdentifierPath","referencedDeclaration":562,"src":"378:7:29"},"nodeType":"ModifierInvocation","src":"378:19:29"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":9106,"nodeType":"ParameterList","parameters":[],"src":"375:2:29"},"returnParameters":{"id":9111,"nodeType":"ParameterList","parameters":[],"src":"398:0:29"},"scope":9210,"src":"364:36:29","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":9169,"nodeType":"Block","src":"1405:531:29","statements":[{"expression":{"id":9150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9133,"name":"_deployed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9131,"src":"1416:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":9138,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9116,"src":"1465:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9137,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"1457:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9136,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1457:7:29","typeDescriptions":{}}},"id":9139,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1457:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"id":9142,"name":"creationCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9118,"src":"1520:12:29","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"arguments":[{"id":9145,"name":"evmRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9120,"src":"1584:22:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9146,"name":"witCustodianBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9124,"src":"1629: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":9143,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1551:3:29","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9144,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1555:6:29","memberName":"encode","nodeType":"MemberAccess","src":"1551:10:29","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9147,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1551: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":9140,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1485:3:29","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9141,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1489:12:29","memberName":"encodePacked","nodeType":"MemberAccess","src":"1485:16:29","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":9148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1485: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":9134,"name":"Create3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7886,"src":"1428:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Create3_$7886_$","typeString":"type(library Create3)"}},"id":9135,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1436:6:29","memberName":"deploy","nodeType":"MemberAccess","referencedDeclaration":7767,"src":"1428: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":9149,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1428:264:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"1416:276:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9151,"nodeType":"ExpressionStatement","src":"1416:276:29"},{"assignments":[9153,null],"declarations":[{"constant":false,"id":9153,"mutability":"mutable","name":"_success","nameLocation":"1709:8:29","nodeType":"VariableDeclaration","scope":9169,"src":"1704:13:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9152,"name":"bool","nodeType":"ElementaryTypeName","src":"1704:4:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":9163,"initialValue":{"arguments":[{"arguments":[{"hexValue":"696e697469616c697a6528616464726573732c737472696e6729","id":9158,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1775:28:29","typeDescriptions":{"typeIdentifier":"t_stringliteral_f399e22e5ddc44ddd58785aafd83fa9646fb12ca0a901658b6bb6f8ddc009f0a","typeString":"literal_string \"initialize(address,string)\""},"value":"initialize(address,string)"},{"id":9159,"name":"evmAuthority","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9122,"src":"1818:12:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9160,"name":"witUnwrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9126,"src":"1845: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":9156,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1737:3:29","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9157,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"1741:19:29","memberName":"encodeWithSignature","nodeType":"MemberAccess","src":"1737: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":9161,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1737: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":9154,"name":"_deployed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9131,"src":"1722:9:29","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9155,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"1732:4:29","memberName":"call","nodeType":"MemberAccess","src":"1722: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":9162,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1722:153:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"1703:172:29"},{"expression":{"arguments":[{"id":9165,"name":"_success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9153,"src":"1894:8:29","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e697469616c697a6174696f6e206661696c6564","id":9166,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"1904: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":9164,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"1886:7:29","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9167,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1886:42:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9168,"nodeType":"ExpressionStatement","src":"1886:42:29"}]},"documentation":{"id":9114,"nodeType":"StructuredDocumentation","src":"408: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":9170,"implemented":true,"kind":"function","modifiers":[{"id":9129,"kind":"modifierInvocation","modifierName":{"id":9128,"name":"onlyOwner","nameLocations":["1353:9:29"],"nodeType":"IdentifierPath","referencedDeclaration":473,"src":"1353:9:29"},"nodeType":"ModifierInvocation","src":"1353:9:29"}],"name":"deployCanonical","nameLocation":"1049:15:29","nodeType":"FunctionDefinition","parameters":{"id":9127,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9116,"mutability":"mutable","name":"salt","nameLocation":"1087:4:29","nodeType":"VariableDeclaration","scope":9170,"src":"1079:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9115,"name":"uint256","nodeType":"ElementaryTypeName","src":"1079:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9118,"mutability":"mutable","name":"creationCode","nameLocation":"1122:12:29","nodeType":"VariableDeclaration","scope":9170,"src":"1107:27:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9117,"name":"bytes","nodeType":"ElementaryTypeName","src":"1107:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":9120,"mutability":"mutable","name":"evmRadonRequestFactory","nameLocation":"1157:22:29","nodeType":"VariableDeclaration","scope":9170,"src":"1149:30:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9119,"name":"address","nodeType":"ElementaryTypeName","src":"1149:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9122,"mutability":"mutable","name":"evmAuthority","nameLocation":"1202:12:29","nodeType":"VariableDeclaration","scope":9170,"src":"1194:20:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9121,"name":"address","nodeType":"ElementaryTypeName","src":"1194:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9124,"mutability":"mutable","name":"witCustodianBech32","nameLocation":"1243:18:29","nodeType":"VariableDeclaration","scope":9170,"src":"1229:32:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9123,"name":"string","nodeType":"ElementaryTypeName","src":"1229:6:29","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":9126,"mutability":"mutable","name":"witUnwrapperBech32","nameLocation":"1290:18:29","nodeType":"VariableDeclaration","scope":9170,"src":"1276:32:29","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9125,"name":"string","nodeType":"ElementaryTypeName","src":"1276:6:29","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"1064:255:29"},"returnParameters":{"id":9132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9131,"mutability":"mutable","name":"_deployed","nameLocation":"1389:9:29","nodeType":"VariableDeclaration","scope":9170,"src":"1381:17:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9130,"name":"address","nodeType":"ElementaryTypeName","src":"1381:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1380:19:29"},"scope":9210,"src":"1040:896:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":9191,"nodeType":"Block","src":"2377:106:29","statements":[{"expression":{"arguments":[{"arguments":[{"id":9186,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9173,"src":"2432:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9185,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2424:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9184,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2424:7:29","typeDescriptions":{}}},"id":9187,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2424:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":9188,"name":"creationCode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9175,"src":"2452: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":9182,"name":"Create3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7886,"src":"2395:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Create3_$7886_$","typeString":"type(library Create3)"}},"id":9183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2403:6:29","memberName":"deploy","nodeType":"MemberAccess","referencedDeclaration":7767,"src":"2395: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":9189,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2395:80:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":9181,"id":9190,"nodeType":"Return","src":"2388:87:29"}]},"documentation":{"id":9171,"nodeType":"StructuredDocumentation","src":"1944: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":9192,"implemented":true,"kind":"function","modifiers":[{"id":9178,"kind":"modifierInvocation","modifierName":{"id":9177,"name":"onlyOwner","nameLocations":["2335:9:29"],"nodeType":"IdentifierPath","referencedDeclaration":473,"src":"2335:9:29"},"nodeType":"ModifierInvocation","src":"2335:9:29"}],"name":"deployBridged","nameLocation":"2208:13:29","nodeType":"FunctionDefinition","parameters":{"id":9176,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9173,"mutability":"mutable","name":"salt","nameLocation":"2244:4:29","nodeType":"VariableDeclaration","scope":9192,"src":"2236:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9172,"name":"uint256","nodeType":"ElementaryTypeName","src":"2236:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9175,"mutability":"mutable","name":"creationCode","nameLocation":"2278:12:29","nodeType":"VariableDeclaration","scope":9192,"src":"2263:27:29","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9174,"name":"bytes","nodeType":"ElementaryTypeName","src":"2263:5:29","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2221:80:29"},"returnParameters":{"id":9181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9180,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9192,"src":"2363:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9179,"name":"address","nodeType":"ElementaryTypeName","src":"2363:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2362:9:29"},"scope":9210,"src":"2199:284:29","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":9208,"nodeType":"Block","src":"2842:62:29","statements":[{"expression":{"arguments":[{"arguments":[{"id":9204,"name":"salt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9195,"src":"2890:4:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":9203,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"2882:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9202,"name":"bytes32","nodeType":"ElementaryTypeName","src":"2882:7:29","typeDescriptions":{}}},"id":9205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2882:13:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":9200,"name":"Create3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7886,"src":"2860:7:29","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Create3_$7886_$","typeString":"type(library Create3)"}},"id":9201,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2868:13:29","memberName":"determineAddr","nodeType":"MemberAccess","referencedDeclaration":7885,"src":"2860:21:29","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_bytes32_$returns$_t_address_$","typeString":"function (bytes32) view returns (address)"}},"id":9206,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2860:36:29","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":9199,"id":9207,"nodeType":"Return","src":"2853:43:29"}]},"documentation":{"id":9193,"nodeType":"StructuredDocumentation","src":"2491: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":9209,"implemented":true,"kind":"function","modifiers":[],"name":"determineAddr","nameLocation":"2753:13:29","nodeType":"FunctionDefinition","parameters":{"id":9196,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9195,"mutability":"mutable","name":"salt","nameLocation":"2775:4:29","nodeType":"VariableDeclaration","scope":9209,"src":"2767:12:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9194,"name":"uint256","nodeType":"ElementaryTypeName","src":"2767:7:29","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2766:14:29"},"returnParameters":{"id":9199,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9198,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9209,"src":"2828:7:29","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9197,"name":"address","nodeType":"ElementaryTypeName","src":"2828:7:29","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"2827:9:29"},"scope":9210,"src":"2744:160:29","stateMutability":"view","virtual":true,"visibility":"public"}],"scope":9211,"src":"311:2596:29","usedErrors":[428,433],"usedEvents":[439,577]}],"src":"35:2874:29"},"id":29},"contracts/WrappedWITLib.sol":{"ast":{"absolutePath":"contracts/WrappedWITLib.sol","exportedSymbols":{"Bech32":[12052],"IWitAppliance":[9842],"IWitOracle":[9907],"IWitOracleAppliance":[9919],"IWitOracleQueriable":[10102],"IWitOracleQueriableEvents":[10199],"IWitOracleRadonRegistry":[10468],"IWitOracleRadonRequestModal":[10613],"IWrappedWIT":[8046],"Secp256k1":[13068],"WitOracle":[9767],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052],"WrappedWITLib":[9677]},"id":9678,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9212,"literals":["solidity","0.8",".28"],"nodeType":"PragmaDirective","src":"35:23:30"},{"absolutePath":"contracts/IWrappedWIT.sol","file":"./IWrappedWIT.sol","id":9213,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9678,"sourceUnit":8047,"src":"62:27:30","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol","file":"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol","id":9215,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9678,"sourceUnit":9793,"src":"91:110:30","symbolAliases":[{"foreign":{"id":9214,"name":"IWitOracleRadonRequestModal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10613,"src":"99:27:30","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"WrappedWITLib","contractDependencies":[],"contractKind":"library","documentation":{"id":9216,"nodeType":"StructuredDocumentation","src":"205:93:30","text":"@title Witnet Request Board base data model library\n @author The Witnet Foundation."},"fullyImplemented":true,"id":9677,"linearizedBaseContracts":[9677],"name":"WrappedWITLib","nameLocation":"306:13:30","nodeType":"ContractDefinition","nodes":[{"global":false,"id":9220,"libraryName":{"id":9217,"name":"Witnet","nameLocations":["337:6:30"],"nodeType":"IdentifierPath","referencedDeclaration":16619,"src":"337:6:30"},"nodeType":"UsingForDirective","src":"331:35:30","typeName":{"id":9219,"nodeType":"UserDefinedTypeName","pathNode":{"id":9218,"name":"Witnet.DataResult","nameLocations":["348:6:30","355:10:30"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"348:17:30"},"referencedDeclaration":13240,"src":"348:17:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}}},{"global":false,"id":9224,"libraryName":{"id":9221,"name":"Witnet","nameLocations":["378:6:30"],"nodeType":"IdentifierPath","referencedDeclaration":16619,"src":"378:6:30"},"nodeType":"UsingForDirective","src":"372:34:30","typeName":{"id":9223,"nodeType":"UserDefinedTypeName","pathNode":{"id":9222,"name":"Witnet.Timestamp","nameLocations":["389:6:30","396:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"389:16:30"},"referencedDeclaration":13106,"src":"389:16:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}},{"global":false,"id":9228,"libraryName":{"id":9225,"name":"WitnetCBOR","nameLocations":["418:10:30"],"nodeType":"IdentifierPath","referencedDeclaration":20052,"src":"418:10:30"},"nodeType":"UsingForDirective","src":"412:37:30","typeName":{"id":9227,"nodeType":"UserDefinedTypeName","pathNode":{"id":9226,"name":"WitnetCBOR.CBOR","nameLocations":["433:10:30","444:4:30"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"433:15:30"},"referencedDeclaration":18536,"src":"433:15:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}}},{"constant":true,"id":9231,"mutability":"constant","name":"_WRAPPED_WIT_STORAGE_SLOT","nameLocation":"487:25:30","nodeType":"VariableDeclaration","scope":9677,"src":"461:178:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":9229,"name":"bytes32","nodeType":"ElementaryTypeName","src":"461:7:30","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"hexValue":"307836313136343733363538653837623032336537663231356431323263303034386633643761363639643864663934613535363566306339353837316335386639","id":9230,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"573:66:30","typeDescriptions":{"typeIdentifier":"t_rational_43913708437192824882250454812272373273038267368218318558024277921754678843641_by_1","typeString":"int_const 4391...(69 digits omitted)...3641"},"value":"0x6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58f9"},"visibility":"internal"},{"constant":true,"id":9234,"mutability":"constant","name":"_PERCENT_FACTOR","nameLocation":"674:15:30","nodeType":"VariableDeclaration","scope":9677,"src":"648:47:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9232,"name":"uint256","nodeType":"ElementaryTypeName","src":"648:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"313030","id":9233,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"692:3:30","typeDescriptions":{"typeIdentifier":"t_rational_100_by_1","typeString":"int_const 100"},"value":"100"},"visibility":"internal"},{"constant":true,"id":9237,"mutability":"constant","name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_GAS_LIMIT","nameLocation":"728:49:30","nodeType":"VariableDeclaration","scope":9677,"src":"702:85:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":9235,"name":"uint24","nodeType":"ElementaryTypeName","src":"702:6:30","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"value":{"hexValue":"3138355f303030","id":9236,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"780:7:30","typeDescriptions":{"typeIdentifier":"t_rational_185000_by_1","typeString":"int_const 185000"},"value":"185_000"},"visibility":"internal"},{"constant":true,"id":9244,"mutability":"constant","name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nameLocation":"821:49:30","nodeType":"VariableDeclaration","scope":9677,"src":"795:95:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9238,"name":"uint256","nodeType":"ElementaryTypeName","src":"795:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"expression":{"arguments":[{"id":9241,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"878:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":9240,"name":"uint256","nodeType":"ElementaryTypeName","src":"878:7:30","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":9239,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"873:4:30","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9242,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"873:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":9243,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"887:3:30","memberName":"max","nodeType":"MemberAccess","src":"873:17:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":true,"id":9247,"mutability":"constant","name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MAX_RESULT_SIZE","nameLocation":"923:46:30","nodeType":"VariableDeclaration","scope":9677,"src":"897:78:30","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":9245,"name":"uint16","nodeType":"ElementaryTypeName","src":"897:6:30","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"value":{"hexValue":"323536","id":9246,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"972:3:30","typeDescriptions":{"typeIdentifier":"t_rational_256_by_1","typeString":"int_const 256"},"value":"256"},"visibility":"internal"},{"canonicalName":"WrappedWITLib.Storage","id":9281,"members":[{"constant":false,"id":9249,"mutability":"mutable","name":"evmCurator","nameLocation":"1018:10:30","nodeType":"VariableDeclaration","scope":9281,"src":"1010:18:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9248,"name":"address","nodeType":"ElementaryTypeName","src":"1010:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9251,"mutability":"mutable","name":"_0","nameLocation":"1037:2:30","nodeType":"VariableDeclaration","scope":9281,"src":"1030:9:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":9250,"name":"uint32","nodeType":"ElementaryTypeName","src":"1030:6:30","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":9254,"mutability":"mutable","name":"evmLastReserveTimestamp","nameLocation":"1068:23:30","nodeType":"VariableDeclaration","scope":9281,"src":"1051:40:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":9253,"nodeType":"UserDefinedTypeName","pathNode":{"id":9252,"name":"Witnet.Timestamp","nameLocations":["1051:6:30","1058:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"1051:16:30"},"referencedDeclaration":13106,"src":"1051:16:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":9256,"mutability":"mutable","name":"evmLastReserveNanowits","nameLocation":"1110:22:30","nodeType":"VariableDeclaration","scope":9281,"src":"1102:30:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9255,"name":"uint64","nodeType":"ElementaryTypeName","src":"1102:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9258,"mutability":"mutable","name":"evmUnwraps","nameLocation":"1152:10:30","nodeType":"VariableDeclaration","scope":9281,"src":"1144:18:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9257,"name":"uint64","nodeType":"ElementaryTypeName","src":"1144:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":9261,"mutability":"mutable","name":"witUnwrapper","nameLocation":"1189:12:30","nodeType":"VariableDeclaration","scope":9281,"src":"1174:27:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"},"typeName":{"id":9260,"nodeType":"UserDefinedTypeName","pathNode":{"id":9259,"name":"Witnet.Address","nameLocations":["1174:6:30","1181:7:30"],"nodeType":"IdentifierPath","referencedDeclaration":13092,"src":"1174:14:30"},"referencedDeclaration":13092,"src":"1174:14:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"visibility":"internal"},{"constant":false,"id":9264,"mutability":"mutable","name":"witOracleQuerySettings","nameLocation":"1242:22:30","nodeType":"VariableDeclaration","scope":9281,"src":"1212:52:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"},"typeName":{"id":9263,"nodeType":"UserDefinedTypeName","pathNode":{"id":9262,"name":"IWrappedWIT.WitOracleSettings","nameLocations":["1212:11:30","1224:17:30"],"nodeType":"IdentifierPath","referencedDeclaration":7939,"src":"1212:29:30"},"referencedDeclaration":7939,"src":"1212:29:30","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage_ptr","typeString":"struct IWrappedWIT.WitOracleSettings"}},"visibility":"internal"},{"constant":false,"id":9267,"mutability":"mutable","name":"witOracleCrossChainRpcProviders","nameLocation":"1284:31:30","nodeType":"VariableDeclaration","scope":9281,"src":"1275:40:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":9265,"name":"string","nodeType":"ElementaryTypeName","src":"1275:6:30","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":9266,"nodeType":"ArrayTypeName","src":"1275:8:30","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":9270,"mutability":"mutable","name":"witOracleProofOfReserveRadonHash","nameLocation":"1343:32:30","nodeType":"VariableDeclaration","scope":9281,"src":"1326:49:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":9269,"nodeType":"UserDefinedTypeName","pathNode":{"id":9268,"name":"Witnet.RadonHash","nameLocations":["1326:6:30","1333:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"1326:16:30"},"referencedDeclaration":13102,"src":"1326:16:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":9275,"mutability":"mutable","name":"witOracleWrappingTransactionLastQueryId","nameLocation":"1440:39:30","nodeType":"VariableDeclaration","scope":9281,"src":"1396:83:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13108_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"},"typeName":{"id":9274,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":9272,"nodeType":"UserDefinedTypeName","pathNode":{"id":9271,"name":"Witnet.TransactionHash","nameLocations":["1405:6:30","1412:15:30"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"1405:22:30"},"referencedDeclaration":13108,"src":"1405:22:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"nodeType":"Mapping","src":"1396:43:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13108_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":9273,"name":"uint256","nodeType":"ElementaryTypeName","src":"1431:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":9280,"mutability":"mutable","name":"witOracleWrappingQueryTransactionHash","nameLocation":"1534:37:30","nodeType":"VariableDeclaration","scope":9281,"src":"1490:81:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_userDefinedValueType$_TransactionHash_$13108_$","typeString":"mapping(uint256 => Witnet.TransactionHash)"},"typeName":{"id":9279,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":9276,"name":"uint256","nodeType":"ElementaryTypeName","src":"1499:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"1490:43:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_userDefinedValueType$_TransactionHash_$13108_$","typeString":"mapping(uint256 => Witnet.TransactionHash)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":9278,"nodeType":"UserDefinedTypeName","pathNode":{"id":9277,"name":"Witnet.TransactionHash","nameLocations":["1510:6:30","1517:15:30"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"1510:22:30"},"referencedDeclaration":13108,"src":"1510:22:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}}},"visibility":"internal"}],"name":"Storage","nameLocation":"991:7:30","nodeType":"StructDefinition","scope":9677,"src":"984:595:30","visibility":"public"},{"body":{"id":9345,"nodeType":"Block","src":"1979:603:30","statements":[{"assignments":[9293],"declarations":[{"constant":false,"id":9293,"mutability":"mutable","name":"_witBalance","nameLocation":"2006:11:30","nodeType":"VariableDeclaration","scope":9345,"src":"1990:27:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[]"},"typeName":{"baseType":{"id":9291,"name":"uint64","nodeType":"ElementaryTypeName","src":"1990:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":9292,"nodeType":"ArrayTypeName","src":"1990:8:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_storage_ptr","typeString":"uint64[]"}},"visibility":"internal"}],"id":9294,"nodeType":"VariableDeclarationStatement","src":"1990:27:30"},{"condition":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":9300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9295,"name":"witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9284,"src":"2032:23:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9296,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2056:6:30","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13227,"src":"2032:30:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":9297,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"2066:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9298,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2073:12:30","memberName":"ResultStatus","nodeType":"MemberAccess","referencedDeclaration":13581,"src":"2066:19:30","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":9299,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2086:8:30","memberName":"NoErrors","nodeType":"MemberAccess","referencedDeclaration":13325,"src":"2066:28:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"src":"2032:62:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9308,"nodeType":"IfStatement","src":"2028:151:30","trueBody":{"id":9307,"nodeType":"Block","src":"2096:83:30","statements":[{"expression":{"id":9305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9301,"name":"_witBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9293,"src":"2111:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9302,"name":"witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9284,"src":"2125:23:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9303,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2149:16:30","memberName":"fetchUint64Array","nodeType":"MemberAccess","referencedDeclaration":14428,"src":"2125:40:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_DataResult_$13240_memory_ptr_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$attached_to$_t_struct$_DataResult_$13240_memory_ptr_$","typeString":"function (struct Witnet.DataResult memory) pure returns (uint64[] memory)"}},"id":9304,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2125:42:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"src":"2111:56:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":9306,"nodeType":"ExpressionStatement","src":"2111:56:30"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":9323,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":9315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9310,"name":"witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9284,"src":"2211:23:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9311,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2235:6:30","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13227,"src":"2211:30:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":9312,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"2245:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9313,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2252:12:30","memberName":"ResultStatus","nodeType":"MemberAccess","referencedDeclaration":13581,"src":"2245:19:30","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":9314,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"2265:8:30","memberName":"NoErrors","nodeType":"MemberAccess","referencedDeclaration":13325,"src":"2245:28:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"src":"2211:62:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9319,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"2331:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9320,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2331:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9321,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2338:23:30","memberName":"evmLastReserveTimestamp","nodeType":"MemberAccess","referencedDeclaration":9254,"src":"2331:30:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"expression":{"id":9316,"name":"witOracleProofOfReserve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9284,"src":"2294:23:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9317,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2318:9:30","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":13236,"src":"2294:33:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"id":9318,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2328:2:30","memberName":"gt","nodeType":"MemberAccess","referencedDeclaration":14915,"src":"2294:36:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Timestamp_$13106_$_t_userDefinedValueType$_Timestamp_$13106_$returns$_t_bool_$attached_to$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"function (Witnet.Timestamp,Witnet.Timestamp) pure returns (bool)"}},"id":9322,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2294:68:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2211:151:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9324,"name":"_witBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9293,"src":"2383:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":9325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2395:6:30","memberName":"length","nodeType":"MemberAccess","src":"2383:18:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"33","id":9326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2405:1:30","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"src":"2383:23:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"2211:195:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c6964207265706f7274","id":9329,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"2421: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":9309,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"2189:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"2189:259:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9331,"nodeType":"ExpressionStatement","src":"2189:259:30"},{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":9342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":9338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":9332,"name":"_witBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9293,"src":"2481:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":9334,"indexExpression":{"hexValue":"30","id":9333,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2493: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":"2481:14:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"baseExpression":{"id":9335,"name":"_witBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9293,"src":"2515:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":9337,"indexExpression":{"hexValue":"31","id":9336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2527: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":"2515:14:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"2481:48:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"baseExpression":{"id":9339,"name":"_witBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9293,"src":"2549:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":9341,"indexExpression":{"hexValue":"32","id":9340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"2561: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":"2549:14:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"2481:82:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":9343,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"2466:108:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":9288,"id":9344,"nodeType":"Return","src":"2459:115:30"}]},"functionSelector":"67c4440f","id":9346,"implemented":true,"kind":"function","modifiers":[],"name":"parseWitOracleProofOfReserve","nameLocation":"1846:28:30","nodeType":"FunctionDefinition","parameters":{"id":9285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9284,"mutability":"mutable","name":"witOracleProofOfReserve","nameLocation":"1900:23:30","nodeType":"VariableDeclaration","scope":9346,"src":"1875:48:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":9283,"nodeType":"UserDefinedTypeName","pathNode":{"id":9282,"name":"Witnet.DataResult","nameLocations":["1875:6:30","1882:10:30"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"1875:17:30"},"referencedDeclaration":13240,"src":"1875:17:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"1874:50:30"},"returnParameters":{"id":9288,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9287,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9346,"src":"1966:6:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9286,"name":"uint64","nodeType":"ElementaryTypeName","src":"1966:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"1965:8:30"},"scope":9677,"src":"1837:745:30","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":9526,"nodeType":"Block","src":"3007:2879:30","statements":[{"expression":{"id":9370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9364,"name":"_witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"3018:32:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9365,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"3053:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3053:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9367,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3060:37:30","memberName":"witOracleWrappingQueryTransactionHash","nodeType":"MemberAccess","referencedDeclaration":9280,"src":"3053:44:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_userDefinedValueType$_TransactionHash_$13108_$","typeString":"mapping(uint256 => Witnet.TransactionHash)"}},"id":9369,"indexExpression":{"id":9368,"name":"witOracleQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9348,"src":"3098:16:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3053:62:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"src":"3018:97:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"id":9371,"nodeType":"ExpressionStatement","src":"3018:97:30"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":9382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":9376,"name":"_witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"3273:32:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}],"expression":{"expression":{"id":9373,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"3243:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3250:15:30","memberName":"TransactionHash","nodeType":"MemberAccess","referencedDeclaration":13108,"src":"3243:22:30","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_TransactionHash_$13108_$","typeString":"type(Witnet.TransactionHash)"}},"id":9375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3266:6:30","memberName":"unwrap","nodeType":"MemberAccess","src":"3243:29:30","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_TransactionHash_$13108_$returns$_t_bytes32_$","typeString":"function (Witnet.TransactionHash) pure returns (bytes32)"}},"id":9377,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3243:63:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":9380,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"3318: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":9379,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"3310:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes32_$","typeString":"type(bytes32)"},"typeName":{"id":9378,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3310:7:30","typeDescriptions":{}}},"id":9381,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3310:10:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"3243:77:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c6964207175657279206964","id":9383,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3336: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":9372,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3221:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9384,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3221:144:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9385,"nodeType":"ExpressionStatement","src":"3221:144:30"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9387,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"3482:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9388,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3482:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9389,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3489:39:30","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9275,"src":"3482:46:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13108_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":9391,"indexExpression":{"id":9390,"name":"_witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"3529:32:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"3482:80:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9392,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9244,"src":"3583:49:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3482:150:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"7769742f7772617020747820616c7265616479206d696e746564","id":9394,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"3648: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":9386,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3460:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3460:227:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9396,"nodeType":"ExpressionStatement","src":"3460:227:30"},{"assignments":[9401],"declarations":[{"constant":false,"id":9401,"mutability":"mutable","name":"_witOracleQueryResult","nameLocation":"3774:21:30","nodeType":"VariableDeclaration","scope":9526,"src":"3749:46:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":9400,"nodeType":"UserDefinedTypeName","pathNode":{"id":9399,"name":"Witnet.DataResult","nameLocations":["3749:6:30","3756:10:30"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"3749:17:30"},"referencedDeclaration":13240,"src":"3749:17:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"id":9409,"initialValue":{"arguments":[{"id":9404,"name":"witOracleQueryResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9350,"src":"3809:20:30","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"components":[{"expression":{"id":9405,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"3832:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9406,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3839:10:30","memberName":"DataResult","nodeType":"MemberAccess","referencedDeclaration":13240,"src":"3832:17:30","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DataResult_$13240_storage_ptr_$","typeString":"type(struct Witnet.DataResult storage pointer)"}}],"id":9407,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"3831:19:30","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_DataResult_$13240_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_$13240_storage_ptr_$","typeString":"type(struct Witnet.DataResult storage pointer)"}],"expression":{"id":9402,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3798:3:30","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9403,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"3802:6:30","memberName":"decode","nodeType":"MemberAccess","src":"3798:10:30","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":9408,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3798:53:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"nodeType":"VariableDeclarationStatement","src":"3749:102:30"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":9416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9411,"name":"_witOracleQueryResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9401,"src":"3952:21:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9412,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3974:6:30","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13227,"src":"3952:28:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":9413,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"3984:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"3991:12:30","memberName":"ResultStatus","nodeType":"MemberAccess","referencedDeclaration":13581,"src":"3984:19:30","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":9415,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4004:8:30","memberName":"NoErrors","nodeType":"MemberAccess","referencedDeclaration":13325,"src":"3984:28:30","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"src":"3952:60:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"717565727920736f6c7665642077697468206572726f7273","id":9417,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4027: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":9410,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"3930:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9418,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"3930:134:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9419,"nodeType":"ExpressionStatement","src":"3930:134:30"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"},"id":9426,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":9421,"name":"_witOracleQueryResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9401,"src":"4189:21:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9422,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4211:8:30","memberName":"dataType","nodeType":"MemberAccess","referencedDeclaration":13230,"src":"4189:30:30","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"expression":{"id":9423,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"4223:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9424,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"4230:14:30","memberName":"RadonDataTypes","nodeType":"MemberAccess","referencedDeclaration":13603,"src":"4223:21:30","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":9425,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"4245:5:30","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13584,"src":"4223:27:30","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"src":"4189:61:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"696e76616c696420717565727920726573756c74","id":9427,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"4266: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":9420,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"4167:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9428,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4167:132:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9429,"nodeType":"ExpressionStatement","src":"4167:132:30"},{"expression":{"id":9436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9430,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"4433:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4433:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9432,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4440:39:30","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9275,"src":"4433:46:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13108_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":9434,"indexExpression":{"id":9433,"name":"_witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9354,"src":"4480:32:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"4433:80:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9435,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9244,"src":"4516:49:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4433:132:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9437,"nodeType":"ExpressionStatement","src":"4433:132:30"},{"assignments":[9443],"declarations":[{"constant":false,"id":9443,"mutability":"mutable","name":"_metadata","nameLocation":"4675:9:30","nodeType":"VariableDeclaration","scope":9526,"src":"4650:34:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":9441,"nodeType":"UserDefinedTypeName","pathNode":{"id":9440,"name":"WitnetCBOR.CBOR","nameLocations":["4650:10:30","4661:4:30"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"4650:15:30"},"referencedDeclaration":18536,"src":"4650:15:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":9442,"nodeType":"ArrayTypeName","src":"4650:17:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"id":9447,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":9444,"name":"_witOracleQueryResult","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9401,"src":"4687:21:30","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":9445,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4709:14:30","memberName":"fetchCborArray","nodeType":"MemberAccess","referencedDeclaration":14268,"src":"4687:36:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_DataResult_$13240_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_DataResult_$13240_memory_ptr_$","typeString":"function (struct Witnet.DataResult memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":9446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"4687:38:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"4650: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":9455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9449,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9443,"src":"5116:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9451,"indexExpression":{"hexValue":"30","id":9450,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5126: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":"5116:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9452,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5129:8:30","memberName":"readUint","nodeType":"MemberAccess","referencedDeclaration":19921,"src":"5116:21:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":9453,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5116:23:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":9454,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5143:1:30","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"5116:28:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"756e66696e616c697a656420717565727920726573756c74","id":9456,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"5146: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":9448,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"5108:7:30","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":9457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5108:65:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":9458,"nodeType":"ExpressionStatement","src":"5108:65:30"},{"expression":{"id":9465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9459,"name":"_witRecipientBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9356,"src":"5225:19:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9460,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9443,"src":"5247:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9462,"indexExpression":{"hexValue":"32","id":9461,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5257: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":"5247:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9463,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5260:10:30","memberName":"readString","nodeType":"MemberAccess","referencedDeclaration":19829,"src":"5247:23:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory)"}},"id":9464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5247:25:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"5225:47:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":9466,"nodeType":"ExpressionStatement","src":"5225:47:30"},{"expression":{"id":9473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9467,"name":"_witWrapperBech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9358,"src":"5283:17:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9468,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9443,"src":"5303:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9470,"indexExpression":{"hexValue":"33","id":9469,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5313: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":"5303:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9471,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5316:10:30","memberName":"readString","nodeType":"MemberAccess","referencedDeclaration":19829,"src":"5303:23:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory)"}},"id":9472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5303:25:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"5283:45:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":9474,"nodeType":"ExpressionStatement","src":"5283:45:30"},{"expression":{"id":9487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9475,"name":"_evmRecipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9360,"src":"5339:13:30","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9480,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9443,"src":"5426:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9482,"indexExpression":{"hexValue":"31","id":9481,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5436: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":"5426:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9483,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5439:10:30","memberName":"readString","nodeType":"MemberAccess","referencedDeclaration":19829,"src":"5426:23:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory)"}},"id":9484,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5426: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":9478,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"5386:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5393:14:30","memberName":"parseHexString","nodeType":"MemberAccess","referencedDeclaration":15900,"src":"5386: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":9485,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5386: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":9476,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"5355:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5362:9:30","memberName":"toAddress","nodeType":"MemberAccess","referencedDeclaration":15527,"src":"5355:16:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$returns$_t_address_$","typeString":"function (bytes memory) pure returns (address)"}},"id":9486,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5355:122:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"5339:138:30","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":9488,"nodeType":"ExpressionStatement","src":"5339:138:30"},{"assignments":[9493],"declarations":[{"constant":false,"id":9493,"mutability":"mutable","name":"_valueTimestamp","nameLocation":"5505:15:30","nodeType":"VariableDeclaration","scope":9526,"src":"5488:32:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":9492,"nodeType":"UserDefinedTypeName","pathNode":{"id":9491,"name":"Witnet.Timestamp","nameLocations":["5488:6:30","5495:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"5488:16:30"},"referencedDeclaration":13106,"src":"5488:16:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"id":9503,"initialValue":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9497,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9443,"src":"5545:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9499,"indexExpression":{"hexValue":"34","id":9498,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5555: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":"5545:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9500,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5558:8:30","memberName":"readUint","nodeType":"MemberAccess","referencedDeclaration":19921,"src":"5545:21:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":9501,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5545:23:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"expression":{"expression":{"id":9494,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"5523:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5530:9:30","memberName":"Timestamp","nodeType":"MemberAccess","referencedDeclaration":13106,"src":"5523:16:30","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":9496,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"5540:4:30","memberName":"wrap","nodeType":"MemberAccess","src":"5523:21:30","typeDescriptions":{"typeIdentifier":"t_function_wrap_pure$_t_uint64_$returns$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"function (uint64) pure returns (Witnet.Timestamp)"}},"id":9502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5523:46:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"nodeType":"VariableDeclarationStatement","src":"5488:81:30"},{"expression":{"id":9510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9504,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9362,"src":"5580:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"baseExpression":{"id":9505,"name":"_metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9443,"src":"5589:9:30","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":9507,"indexExpression":{"hexValue":"35","id":9506,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"5599: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":"5589:12:30","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":9508,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5602:8:30","memberName":"readUint","nodeType":"MemberAccess","referencedDeclaration":19921,"src":"5589:21:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":9509,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5589:23:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5580:32:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":9511,"nodeType":"ExpressionStatement","src":"5580:32:30"},{"condition":{"arguments":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9514,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"5780:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9515,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5780:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9516,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5787:23:30","memberName":"evmLastReserveTimestamp","nodeType":"MemberAccess","referencedDeclaration":9254,"src":"5780:30:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":9512,"name":"_valueTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9493,"src":"5761:15:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"id":9513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"5777:2:30","memberName":"gt","nodeType":"MemberAccess","referencedDeclaration":14915,"src":"5761:18:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Timestamp_$13106_$_t_userDefinedValueType$_Timestamp_$13106_$returns$_t_bool_$attached_to$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"function (Witnet.Timestamp,Witnet.Timestamp) pure returns (bool)"}},"id":9517,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5761:50:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9525,"nodeType":"IfStatement","src":"5757:122:30","trueBody":{"id":9524,"nodeType":"Block","src":"5813:66:30","statements":[{"expression":{"id":9522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9518,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"5828:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9519,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"5828:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9520,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5835:22:30","memberName":"evmLastReserveNanowits","nodeType":"MemberAccess","referencedDeclaration":9256,"src":"5828:29:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":9521,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9362,"src":"5861:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5828:39:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":9523,"nodeType":"ExpressionStatement","src":"5828:39:30"}]}}]},"functionSelector":"5d933eb7","id":9527,"implemented":true,"kind":"function","modifiers":[],"name":"processWitOracleQueryResult","nameLocation":"2599:27:30","nodeType":"FunctionDefinition","parameters":{"id":9351,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9348,"mutability":"mutable","name":"witOracleQueryId","nameLocation":"2649:16:30","nodeType":"VariableDeclaration","scope":9527,"src":"2641:24:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9347,"name":"uint256","nodeType":"ElementaryTypeName","src":"2641:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9350,"mutability":"mutable","name":"witOracleQueryResult","nameLocation":"2695:20:30","nodeType":"VariableDeclaration","scope":9527,"src":"2680:35:30","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9349,"name":"bytes","nodeType":"ElementaryTypeName","src":"2680:5:30","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2626:100:30"},"returnParameters":{"id":9363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9354,"mutability":"mutable","name":"_witValueTransferTransactionHash","nameLocation":"2800:32:30","nodeType":"VariableDeclaration","scope":9527,"src":"2777:55:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":9353,"nodeType":"UserDefinedTypeName","pathNode":{"id":9352,"name":"Witnet.TransactionHash","nameLocations":["2777:6:30","2784:15:30"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"2777:22:30"},"referencedDeclaration":13108,"src":"2777:22:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":9356,"mutability":"mutable","name":"_witRecipientBech32","nameLocation":"2861:19:30","nodeType":"VariableDeclaration","scope":9527,"src":"2847:33:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9355,"name":"string","nodeType":"ElementaryTypeName","src":"2847:6:30","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":9358,"mutability":"mutable","name":"_witWrapperBech32","nameLocation":"2909:17:30","nodeType":"VariableDeclaration","scope":9527,"src":"2895:31:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9357,"name":"string","nodeType":"ElementaryTypeName","src":"2895:6:30","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":9360,"mutability":"mutable","name":"_evmRecipient","nameLocation":"2949:13:30","nodeType":"VariableDeclaration","scope":9527,"src":"2941:21:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9359,"name":"address","nodeType":"ElementaryTypeName","src":"2941:7:30","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9362,"mutability":"mutable","name":"_value","nameLocation":"2984:6:30","nodeType":"VariableDeclaration","scope":9527,"src":"2977:13:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":9361,"name":"uint64","nodeType":"ElementaryTypeName","src":"2977:6:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"2762:239:30"},"scope":9677,"src":"2590:3296:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":9639,"nodeType":"Block","src":"6218:1535:30","statements":[{"expression":{"id":9547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9541,"name":"_witQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9539,"src":"6229:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9542,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"6243:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9543,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6243:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9544,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6250:39:30","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9275,"src":"6243:46:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13108_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":9546,"indexExpression":{"id":9545,"name":"witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9536,"src":"6290:31:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"6243:79:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6229:93:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9548,"nodeType":"ExpressionStatement","src":"6229:93:30"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9549,"name":"_witQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9539,"src":"6351:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9550,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_PROCESSED","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9244,"src":"6366:49:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6351:64:30","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9638,"nodeType":"IfStatement","src":"6333:1413:30","trueBody":{"id":9637,"nodeType":"Block","src":"6427:1319:30","statements":[{"assignments":[9556],"declarations":[{"constant":false,"id":9556,"mutability":"mutable","name":"_commonArgs","nameLocation":"6458:11:30","nodeType":"VariableDeclaration","scope":9637,"src":"6442:27:30","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":9554,"name":"string","nodeType":"ElementaryTypeName","src":"6442:6:30","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":9555,"nodeType":"ArrayTypeName","src":"6442:8:30","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"}],"id":9562,"initialValue":{"arguments":[{"hexValue":"31","id":9560,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6485: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":9559,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"6472: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":9557,"name":"string","nodeType":"ElementaryTypeName","src":"6476:6:30","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":9558,"nodeType":"ArrayTypeName","src":"6476:8:30","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}}},"id":9561,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6472:15:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"6442:45:30"},{"expression":{"id":9574,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":9563,"name":"_commonArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9556,"src":"6502:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":9565,"indexExpression":{"hexValue":"30","id":9564,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"6514: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":"6502:14:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":9571,"name":"witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9536,"src":"6568:31:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}],"expression":{"expression":{"id":9568,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"6538:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9569,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6545:15:30","memberName":"TransactionHash","nodeType":"MemberAccess","referencedDeclaration":13108,"src":"6538:22:30","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_TransactionHash_$13108_$","typeString":"type(Witnet.TransactionHash)"}},"id":9570,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"6561:6:30","memberName":"unwrap","nodeType":"MemberAccess","src":"6538:29:30","typeDescriptions":{"typeIdentifier":"t_function_unwrap_pure$_t_userDefinedValueType$_TransactionHash_$13108_$returns$_t_bytes32_$","typeString":"function (Witnet.TransactionHash) pure returns (bytes32)"}},"id":9572,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6538:62:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":9566,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"6519:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6526:11:30","memberName":"toHexString","nodeType":"MemberAccess","referencedDeclaration":15738,"src":"6519:18:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_string_memory_ptr_$","typeString":"function (bytes32) pure returns (string memory)"}},"id":9573,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6519:82:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"src":"6502:99:30","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"id":9575,"nodeType":"ExpressionStatement","src":"6502:99:30"},{"assignments":[9580],"declarations":[{"constant":false,"id":9580,"mutability":"mutable","name":"_radonHash","nameLocation":"6633:10:30","nodeType":"VariableDeclaration","scope":9637,"src":"6616:27:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":9579,"nodeType":"UserDefinedTypeName","pathNode":{"id":9578,"name":"Witnet.RadonHash","nameLocations":["6616:6:30","6623:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"6616:16:30"},"referencedDeclaration":13102,"src":"6616:16:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"id":9588,"initialValue":{"arguments":[{"id":9583,"name":"_commonArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9556,"src":"6749:11:30","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9584,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"6783:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9585,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6783:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9586,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6790:31:30","memberName":"witOracleCrossChainRpcProviders","nodeType":"MemberAccess","referencedDeclaration":9267,"src":"6783: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":9581,"name":"witOracleCrossChainProofOfInclusionTemplate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9533,"src":"6646:43:30","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"id":9582,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6708:18:30","memberName":"verifyRadonRequest","nodeType":"MemberAccess","referencedDeclaration":10607,"src":"6646: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_$13102_$","typeString":"function (string memory[] memory,string memory[] memory) external returns (Witnet.RadonHash)"}},"id":9587,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6646:194:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"nodeType":"VariableDeclarationStatement","src":"6616:224:30"},{"expression":{"id":9619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":9589,"name":"_witQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9539,"src":"6855:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":9597,"name":"_radonHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9580,"src":"6990:10:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},{"arguments":[{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9600,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"7076:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9601,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7076:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9602,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7083:22:30","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9264,"src":"7076:29:30","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":9603,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7106:12:30","memberName":"minWitnesses","nodeType":"MemberAccess","referencedDeclaration":7934,"src":"7076:42:30","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9604,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"7159:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9605,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7159:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9606,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7166:22:30","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9264,"src":"7159:29:30","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":9607,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7189:21:30","memberName":"unitaryRewardNanowits","nodeType":"MemberAccess","referencedDeclaration":7938,"src":"7159:51:30","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"id":9608,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_MAX_RESULT_SIZE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9247,"src":"7251: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":9598,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"7019:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9599,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7026:8:30","memberName":"QuerySLA","nodeType":"MemberAccess","referencedDeclaration":13324,"src":"7019:15:30","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_QuerySLA_$13324_storage_ptr_$","typeString":"type(struct Witnet.QuerySLA storage pointer)"}},"id":9609,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["7058:16:30","7141:16:30","7233:16:30"],"names":["witCommitteeSize","witUnitaryReward","witResultMaxSize"],"nodeType":"FunctionCall","src":"7019:298:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},{"arguments":[{"arguments":[{"id":9614,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"7398:4:30","typeDescriptions":{"typeIdentifier":"t_contract$_WrappedWITLib_$9677","typeString":"library WrappedWITLib"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_WrappedWITLib_$9677","typeString":"library WrappedWITLib"}],"id":9613,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"7390:7:30","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":9612,"name":"address","nodeType":"ElementaryTypeName","src":"7390:7:30","typeDescriptions":{}}},"id":9615,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7390:13:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":9616,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_GAS_LIMIT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9237,"src":"7436:49:30","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint24","typeString":"uint24"}],"expression":{"id":9610,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"7336:6:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":9611,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"7343:13:30","memberName":"QueryCallback","nodeType":"MemberAccess","referencedDeclaration":13287,"src":"7336:20:30","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_QueryCallback_$13287_storage_ptr_$","typeString":"type(struct Witnet.QueryCallback storage pointer)"}},"id":9617,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["7380:8:30","7426:8:30"],"names":["consumer","gasLimit"],"nodeType":"FunctionCall","src":"7336:169:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_QueryCallback_$13287_memory_ptr","typeString":"struct Witnet.QueryCallback memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA memory"},{"typeIdentifier":"t_struct$_QueryCallback_$13287_memory_ptr","typeString":"struct Witnet.QueryCallback memory"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA memory"},{"typeIdentifier":"t_struct$_QueryCallback_$13287_memory_ptr","typeString":"struct Witnet.QueryCallback memory"}],"expression":{"arguments":[{"id":9591,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9530,"src":"6889:9:30","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}],"id":9590,"name":"IWitOracleQueriable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10102,"src":"6869:19:30","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracleQueriable_$10102_$","typeString":"type(contract IWitOracleQueriable)"}},"id":9592,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6869:30:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleQueriable_$10102","typeString":"contract IWitOracleQueriable"}},"id":9593,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6900:21:30","memberName":"queryDataWithCallback","nodeType":"MemberAccess","referencedDeclaration":10095,"src":"6869:52:30","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_userDefinedValueType$_RadonHash_$13102_$_t_struct$_QuerySLA_$13324_memory_ptr_$_t_struct$_QueryCallback_$13287_memory_ptr_$returns$_t_uint256_$","typeString":"function (Witnet.RadonHash,struct Witnet.QuerySLA memory,struct Witnet.QueryCallback memory) payable external returns (uint256)"}},"id":9596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"expression":{"id":9594,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"6947:3:30","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":9595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"6951:5:30","memberName":"value","nodeType":"MemberAccess","src":"6947:9:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"6869:102:30","typeDescriptions":{"typeIdentifier":"t_function_external_payable$_t_userDefinedValueType$_RadonHash_$13102_$_t_struct$_QuerySLA_$13324_memory_ptr_$_t_struct$_QueryCallback_$13287_memory_ptr_$returns$_t_uint256_$value","typeString":"function (Witnet.RadonHash,struct Witnet.QuerySLA memory,struct Witnet.QueryCallback memory) payable external returns (uint256)"}},"id":9618,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"6869:651:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"6855:665:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9620,"nodeType":"ExpressionStatement","src":"6855:665:30"},{"expression":{"id":9627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9621,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"7535:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9622,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7535:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9623,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7542:39:30","memberName":"witOracleWrappingTransactionLastQueryId","nodeType":"MemberAccess","referencedDeclaration":9275,"src":"7535:46:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_userDefinedValueType$_TransactionHash_$13108_$_t_uint256_$","typeString":"mapping(Witnet.TransactionHash => uint256)"}},"id":9625,"indexExpression":{"id":9624,"name":"witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9536,"src":"7582:31:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7535:79:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9626,"name":"_witQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9539,"src":"7617:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"7535:93:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":9628,"nodeType":"ExpressionStatement","src":"7535:93:30"},{"expression":{"id":9635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9629,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"7643:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_storage_ptr_$","typeString":"function () pure returns (struct WrappedWITLib.Storage storage pointer)"}},"id":9630,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"7643:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9631,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7650:37:30","memberName":"witOracleWrappingQueryTransactionHash","nodeType":"MemberAccess","referencedDeclaration":9280,"src":"7643:44:30","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_userDefinedValueType$_TransactionHash_$13108_$","typeString":"mapping(uint256 => Witnet.TransactionHash)"}},"id":9633,"indexExpression":{"id":9632,"name":"_witQueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9539,"src":"7688:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"7643:57:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":9634,"name":"witValueTransferTransactionHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9536,"src":"7703:31:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"src":"7643:91:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"id":9636,"nodeType":"ExpressionStatement","src":"7643:91:30"}]}}]},"functionSelector":"3752120b","id":9640,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleQueryWitnetValueTransferProofOfInclusion","nameLocation":"5903:49:30","nodeType":"FunctionDefinition","parameters":{"id":9537,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9530,"mutability":"mutable","name":"witOracle","nameLocation":"5977:9:30","nodeType":"VariableDeclaration","scope":9640,"src":"5967:19:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"},"typeName":{"id":9529,"nodeType":"UserDefinedTypeName","pathNode":{"id":9528,"name":"WitOracle","nameLocations":["5967:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":9767,"src":"5967:9:30"},"referencedDeclaration":9767,"src":"5967:9:30","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},"visibility":"internal"},{"constant":false,"id":9533,"mutability":"mutable","name":"witOracleCrossChainProofOfInclusionTemplate","nameLocation":"6030:43:30","nodeType":"VariableDeclaration","scope":9640,"src":"6002:71:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"},"typeName":{"id":9532,"nodeType":"UserDefinedTypeName","pathNode":{"id":9531,"name":"IWitOracleRadonRequestModal","nameLocations":["6002:27:30"],"nodeType":"IdentifierPath","referencedDeclaration":10613,"src":"6002:27:30"},"referencedDeclaration":10613,"src":"6002:27:30","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"visibility":"internal"},{"constant":false,"id":9536,"mutability":"mutable","name":"witValueTransferTransactionHash","nameLocation":"6111:31:30","nodeType":"VariableDeclaration","scope":9640,"src":"6088:54:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":9535,"nodeType":"UserDefinedTypeName","pathNode":{"id":9534,"name":"Witnet.TransactionHash","nameLocations":["6088:6:30","6095:15:30"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"6088:22:30"},"referencedDeclaration":13108,"src":"6088:22:30","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"src":"5952:201:30"},"returnParameters":{"id":9540,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9539,"mutability":"mutable","name":"_witQueryId","nameLocation":"6200:11:30","nodeType":"VariableDeclaration","scope":9640,"src":"6192:19:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9538,"name":"uint256","nodeType":"ElementaryTypeName","src":"6192:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6191:21:30"},"scope":9677,"src":"5894:1859:30","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":9647,"nodeType":"Block","src":"8068:91:30","statements":[{"AST":{"nativeSrc":"8088:64:30","nodeType":"YulBlock","src":"8088:64:30","statements":[{"nativeSrc":"8103:38:30","nodeType":"YulAssignment","src":"8103:38:30","value":{"name":"_WRAPPED_WIT_STORAGE_SLOT","nativeSrc":"8116:25:30","nodeType":"YulIdentifier","src":"8116:25:30"},"variableNames":[{"name":"_ptr.slot","nativeSrc":"8103:9:30","nodeType":"YulIdentifier","src":"8103:9:30"}]}]},"evmVersion":"shanghai","externalReferences":[{"declaration":9231,"isOffset":false,"isSlot":false,"src":"8116:25:30","valueSize":1},{"declaration":9644,"isOffset":false,"isSlot":true,"src":"8103:9:30","suffix":"slot","valueSize":1}],"id":9646,"nodeType":"InlineAssembly","src":"8079:73:30"}]},"id":9648,"implemented":true,"kind":"function","modifiers":[],"name":"data","nameLocation":"8016:4:30","nodeType":"FunctionDefinition","parameters":{"id":9641,"nodeType":"ParameterList","parameters":[],"src":"8020:2:30"},"returnParameters":{"id":9645,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9644,"mutability":"mutable","name":"_ptr","nameLocation":"8062:4:30","nodeType":"VariableDeclaration","scope":9648,"src":"8046:20:30","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage"},"typeName":{"id":9643,"nodeType":"UserDefinedTypeName","pathNode":{"id":9642,"name":"Storage","nameLocations":["8046:7:30"],"nodeType":"IdentifierPath","referencedDeclaration":9281,"src":"8046:7:30"},"referencedDeclaration":9281,"src":"8046:7:30","typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage"}},"visibility":"internal"}],"src":"8045:22:30"},"scope":9677,"src":"8007:152:30","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":9675,"nodeType":"Block","src":"8279:321:30","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9673,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":9663,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9658,"name":"_PERCENT_FACTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"8313:15:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":9659,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9648,"src":"8331:4:30","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_struct$_Storage_$9281_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":"8331:6:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Storage_$9281_storage_ptr","typeString":"struct WrappedWITLib.Storage storage pointer"}},"id":9661,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8338:22:30","memberName":"witOracleQuerySettings","nodeType":"MemberAccess","referencedDeclaration":9264,"src":"8331:29:30","typeDescriptions":{"typeIdentifier":"t_struct$_WitOracleSettings_$7939_storage","typeString":"struct IWrappedWIT.WitOracleSettings storage ref"}},"id":9662,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8361:18:30","memberName":"baseFeeOverhead100","nodeType":"MemberAccess","referencedDeclaration":7936,"src":"8331:48:30","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"8313:66:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9664,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8312:68:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":9667,"name":"evmGasPrice","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9653,"src":"8460:11:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":9668,"name":"_WIT_ORACLE_QUERIABLE_CONSUMER_CALLBACK_GAS_LIMIT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9237,"src":"8495:49:30","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint24","typeString":"uint24"}],"expression":{"id":9665,"name":"witOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9651,"src":"8400:9:30","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},"id":9666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"8410:27:30","memberName":"estimateBaseFeeWithCallback","nodeType":"MemberAccess","referencedDeclaration":9962,"src":"8400:37:30","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_uint256_$_t_uint24_$returns$_t_uint256_$","typeString":"function (uint256,uint24) view external returns (uint256)"}},"id":9669,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"8400:163:30","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8312:251:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":9671,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8297:277:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":9672,"name":"_PERCENT_FACTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9234,"src":"8577:15:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8297:295:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":9657,"id":9674,"nodeType":"Return","src":"8290:302:30"}]},"id":9676,"implemented":true,"kind":"function","modifiers":[],"name":"witOracleEstimateWrappingFee","nameLocation":"8176:28:30","nodeType":"FunctionDefinition","parameters":{"id":9654,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9651,"mutability":"mutable","name":"witOracle","nameLocation":"8215:9:30","nodeType":"VariableDeclaration","scope":9676,"src":"8205:19:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"},"typeName":{"id":9650,"nodeType":"UserDefinedTypeName","pathNode":{"id":9649,"name":"WitOracle","nameLocations":["8205:9:30"],"nodeType":"IdentifierPath","referencedDeclaration":9767,"src":"8205:9:30"},"referencedDeclaration":9767,"src":"8205:9:30","typeDescriptions":{"typeIdentifier":"t_contract$_WitOracle_$9767","typeString":"contract WitOracle"}},"visibility":"internal"},{"constant":false,"id":9653,"mutability":"mutable","name":"evmGasPrice","nameLocation":"8234:11:30","nodeType":"VariableDeclaration","scope":9676,"src":"8226:19:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9652,"name":"uint256","nodeType":"ElementaryTypeName","src":"8226:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8204:42:30"},"returnParameters":{"id":9657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9656,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9676,"src":"8270:7:30","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9655,"name":"uint256","nodeType":"ElementaryTypeName","src":"8270:7:30","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8269:9:30"},"scope":9677,"src":"8167:433:30","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":9678,"src":"298:8305:30","usedErrors":[16624,16630,18580,18586,18594],"usedEvents":[]}],"src":"35:8568:30"},"id":30},"contracts/WrappedWITSuperchain.sol":{"ast":{"absolutePath":"contracts/WrappedWITSuperchain.sol","exportedSymbols":{"ERC20":[1325],"ERC20Bridgeable":[146],"ERC20Permit":[1557],"WrappedWITSuperchain":[9733]},"id":9734,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9679,"literals":["solidity","0.8",".28"],"nodeType":"PragmaDirective","src":"83:23:31"},{"absolutePath":"@openzeppelin/contracts/token/ERC20/ERC20.sol","file":"@openzeppelin/contracts/token/ERC20/ERC20.sol","id":9681,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9734,"sourceUnit":1326,"src":"110:68:31","symbolAliases":[{"foreign":{"id":9680,"name":"ERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1325,"src":"118: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":9683,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9734,"sourceUnit":147,"src":"180:119:31","symbolAliases":[{"foreign":{"id":9682,"name":"ERC20Bridgeable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":146,"src":"188: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":9685,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9734,"sourceUnit":1558,"src":"301:91:31","symbolAliases":[{"foreign":{"id":9684,"name":"ERC20Permit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1557,"src":"309:11:31","typeDescriptions":{}},"nameLocation":"-1:-1:-1"}],"unitAlias":""},{"abstract":false,"baseContracts":[{"baseName":{"id":9686,"name":"ERC20","nameLocations":["429:5:31"],"nodeType":"IdentifierPath","referencedDeclaration":1325,"src":"429:5:31"},"id":9687,"nodeType":"InheritanceSpecifier","src":"429:5:31"},{"baseName":{"id":9688,"name":"ERC20Bridgeable","nameLocations":["436:15:31"],"nodeType":"IdentifierPath","referencedDeclaration":146,"src":"436:15:31"},"id":9689,"nodeType":"InheritanceSpecifier","src":"436:15:31"},{"baseName":{"id":9690,"name":"ERC20Permit","nameLocations":["453:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":1557,"src":"453:11:31"},"id":9691,"nodeType":"InheritanceSpecifier","src":"453:11:31"}],"canonicalName":"WrappedWITSuperchain","contractDependencies":[],"contractKind":"contract","fullyImplemented":true,"id":9733,"linearizedBaseContracts":[9733,1557,1717,4087,673,1619,146,41,4197,4209,1325,715,1583,1403,1649],"name":"WrappedWITSuperchain","nameLocation":"405:20:31","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":9694,"mutability":"constant","name":"SUPERCHAIN_TOKEN_BRIDGE","nameLocation":"504:23:31","nodeType":"VariableDeclaration","scope":9733,"src":"478:94:31","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9692,"name":"address","nodeType":"ElementaryTypeName","src":"478:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"value":{"hexValue":"307834323030303030303030303030303030303030303030303030303030303030303030303030303238","id":9693,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"530:42:31","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0x4200000000000000000000000000000000000028"},"visibility":"internal"},{"errorSelector":"82b42900","id":9696,"name":"Unauthorized","nameLocation":"585:12:31","nodeType":"ErrorDefinition","parameters":{"id":9695,"nodeType":"ParameterList","parameters":[],"src":"597:2:31"},"src":"579:21:31"},{"body":{"id":9706,"nodeType":"Block","src":"677:2:31","statements":[]},"id":9707,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"hexValue":"5772617070656420574954","id":9699,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"628:13:31","typeDescriptions":{"typeIdentifier":"t_stringliteral_ddba658d9abef0b3615c5bde8328f7c593061dba9ad4d400484e4bc2a83fb435","typeString":"literal_string \"Wrapped WIT\""},"value":"Wrapped WIT"},{"hexValue":"574954","id":9700,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"643:5:31","typeDescriptions":{"typeIdentifier":"t_stringliteral_b372e206e3c85161b5e32ecd4de3bf2364f9afd6efd773022e11c36b6710a1f3","typeString":"literal_string \"WIT\""},"value":"WIT"}],"id":9701,"kind":"baseConstructorSpecifier","modifierName":{"id":9698,"name":"ERC20","nameLocations":["622:5:31"],"nodeType":"IdentifierPath","referencedDeclaration":1325,"src":"622:5:31"},"nodeType":"ModifierInvocation","src":"622:27:31"},{"arguments":[{"hexValue":"577261707065642f574954","id":9703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"662:13:31","typeDescriptions":{"typeIdentifier":"t_stringliteral_93ce1e72a8e55be216fb1da8de58b117bb03feaf9a7e09034e3e83dd710d480f","typeString":"literal_string \"Wrapped/WIT\""},"value":"Wrapped/WIT"}],"id":9704,"kind":"baseConstructorSpecifier","modifierName":{"id":9702,"name":"ERC20Permit","nameLocations":["650:11:31"],"nodeType":"IdentifierPath","referencedDeclaration":1557,"src":"650:11:31"},"nodeType":"ModifierInvocation","src":"650:26:31"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":9697,"nodeType":"ParameterList","parameters":[],"src":"619:2:31"},"returnParameters":{"id":9705,"nodeType":"ParameterList","parameters":[],"src":"677:0:31"},"scope":9733,"src":"608:71:31","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[145],"body":{"id":9721,"nodeType":"Block","src":"978:79:31","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":9716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":9714,"name":"caller","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9710,"src":"993:6:31","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":9715,"name":"SUPERCHAIN_TOKEN_BRIDGE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9694,"src":"1003:23:31","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"993:33:31","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9720,"nodeType":"IfStatement","src":"989:60:31","trueBody":{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"id":9717,"name":"Unauthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9696,"src":"1035:12:31","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":9718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"1035:14:31","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_error","typeString":"error"}},"id":9719,"nodeType":"RevertStatement","src":"1028:21:31"}}]},"documentation":{"id":9708,"nodeType":"StructuredDocumentation","src":"687: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":9722,"implemented":true,"kind":"function","modifiers":[],"name":"_checkTokenBridge","nameLocation":"921:17:31","nodeType":"FunctionDefinition","overrides":{"id":9712,"nodeType":"OverrideSpecifier","overrides":[],"src":"969:8:31"},"parameters":{"id":9711,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9710,"mutability":"mutable","name":"caller","nameLocation":"947:6:31","nodeType":"VariableDeclaration","scope":9722,"src":"939:14:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9709,"name":"address","nodeType":"ElementaryTypeName","src":"939:7:31","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"938:16:31"},"returnParameters":{"id":9713,"nodeType":"ParameterList","parameters":[],"src":"978:0:31"},"scope":9733,"src":"912:145:31","stateMutability":"pure","virtual":false,"visibility":"internal"},{"baseFunctions":[889],"body":{"id":9731,"nodeType":"Block","src":"1372:27:31","statements":[{"expression":{"hexValue":"39","id":9729,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"1390:1:31","typeDescriptions":{"typeIdentifier":"t_rational_9_by_1","typeString":"int_const 9"},"value":"9"},"functionReturnParameters":9728,"id":9730,"nodeType":"Return","src":"1383:8:31"}]},"documentation":{"id":9723,"nodeType":"StructuredDocumentation","src":"1071:238:31","text":"===============================================================================================================\n --- ERC20 -----------------------------------------------------------------------------------------------------"},"functionSelector":"313ce567","id":9732,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"1324:8:31","nodeType":"FunctionDefinition","overrides":{"id":9725,"nodeType":"OverrideSpecifier","overrides":[],"src":"1335:8:31"},"parameters":{"id":9724,"nodeType":"ParameterList","parameters":[],"src":"1332:2:31"},"returnParameters":{"id":9728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9727,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9732,"src":"1365:5:31","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":9726,"name":"uint8","nodeType":"ElementaryTypeName","src":"1365:5:31","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"1364:7:31"},"scope":9733,"src":"1315:84:31","stateMutability":"pure","virtual":false,"visibility":"public"}],"scope":9734,"src":"396:1006:31","usedErrors":[685,690,695,704,709,714,1434,1441,1659,1783,1785,3523,3528,3533,9696],"usedEvents":[15,24,653,1337,1346]}],"src":"83:1321:31"},"id":31},"witnet-solidity-bridge/contracts/WitOracle.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/WitOracle.sol","exportedSymbols":{"Bech32":[12052],"IWitAppliance":[9842],"IWitOracle":[9907],"IWitOracleAppliance":[9919],"IWitOracleQueriable":[10102],"IWitOracleQueriableEvents":[10199],"IWitOracleRadonRegistry":[10468],"Secp256k1":[13068],"WitOracle":[9767],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":9768,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9735,"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":9736,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9768,"sourceUnit":9908,"src":"70:37:32","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol","file":"./interfaces/IWitOracleAppliance.sol","id":9737,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9768,"sourceUnit":9920,"src":"109:46:32","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol","file":"./interfaces/IWitOracleQueriable.sol","id":9738,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9768,"sourceUnit":10103,"src":"157:46:32","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriableEvents.sol","file":"./interfaces/IWitOracleQueriableEvents.sol","id":9739,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9768,"sourceUnit":10200,"src":"205:52:32","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9741,"name":"IWitAppliance","nameLocations":["404:13:32"],"nodeType":"IdentifierPath","referencedDeclaration":9842,"src":"404:13:32"},"id":9742,"nodeType":"InheritanceSpecifier","src":"404:13:32"},{"baseName":{"id":9743,"name":"IWitOracle","nameLocations":["428:10:32"],"nodeType":"IdentifierPath","referencedDeclaration":9907,"src":"428:10:32"},"id":9744,"nodeType":"InheritanceSpecifier","src":"428:10:32"},{"baseName":{"id":9745,"name":"IWitOracleQueriable","nameLocations":["449:19:32"],"nodeType":"IdentifierPath","referencedDeclaration":10102,"src":"449:19:32"},"id":9746,"nodeType":"InheritanceSpecifier","src":"449:19:32"},{"baseName":{"id":9747,"name":"IWitOracleQueriableEvents","nameLocations":["479:25:32"],"nodeType":"IdentifierPath","referencedDeclaration":10199,"src":"479:25:32"},"id":9748,"nodeType":"InheritanceSpecifier","src":"479:25:32"}],"canonicalName":"WitOracle","contractDependencies":[],"contractKind":"contract","documentation":{"id":9740,"nodeType":"StructuredDocumentation","src":"261:98:32","text":"@title Witnet Request Board functionality base contract.\n @author The Witnet Foundation."},"fullyImplemented":false,"id":9767,"linearizedBaseContracts":[9767,10199,10102,9907,9842],"name":"WitOracle","nameLocation":"377:9:32","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[9806],"body":{"id":9765,"nodeType":"Block","src":"578:137:32","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"id":9762,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":9755,"name":"IWitOracle","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9907,"src":"616:10:32","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracle_$9907_$","typeString":"type(contract IWitOracle)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IWitOracle_$9907_$","typeString":"type(contract IWitOracle)"}],"id":9754,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"611:4:32","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9756,"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_$9907","typeString":"type(contract IWitOracle)"}},"id":9757,"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":9759,"name":"IWitOracleQueriable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10102,"src":"664:19:32","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IWitOracleQueriable_$10102_$","typeString":"type(contract IWitOracleQueriable)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_IWitOracleQueriable_$10102_$","typeString":"type(contract IWitOracleQueriable)"}],"id":9758,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"659:4:32","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9760,"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_$10102","typeString":"type(contract IWitOracleQueriable)"}},"id":9761,"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":9763,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"596:111:32","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":9753,"id":9764,"nodeType":"Return","src":"589:118:32"}]},"functionSelector":"adb7c3f7","id":9766,"implemented":true,"kind":"function","modifiers":[],"name":"specs","nameLocation":"522:5:32","nodeType":"FunctionDefinition","overrides":{"id":9750,"nodeType":"OverrideSpecifier","overrides":[],"src":"538:8:32"},"parameters":{"id":9749,"nodeType":"ParameterList","parameters":[],"src":"527:2:32"},"returnParameters":{"id":9753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9752,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9766,"src":"570:6:32","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9751,"name":"bytes4","nodeType":"ElementaryTypeName","src":"570:6:32","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"569:8:32"},"scope":9767,"src":"513:202:32","stateMutability":"pure","virtual":true,"visibility":"external"}],"scope":9768,"src":"359:359:32","usedErrors":[9847],"usedEvents":[9869,10143,10155,10163,10170,10182,10198]}],"src":"35:685:32"},"id":32},"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/WitOracleRadonRequestFactory.sol","exportedSymbols":{"Bech32":[12052],"IWitAppliance":[9842],"IWitOracleAppliance":[9919],"IWitOracleRadonRegistryEvents":[10488],"IWitOracleRadonRequestFactory":[10563],"IWitOracleRadonRequestModal":[10613],"IWitOracleRadonRequestTemplate":[10664],"Secp256k1":[13068],"WitOracleRadonRequestFactory":[9792],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":9793,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9769,"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":9770,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9793,"sourceUnit":9920,"src":"70:46:33","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistryEvents.sol","file":"./interfaces/IWitOracleRadonRegistryEvents.sol","id":9771,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9793,"sourceUnit":10489,"src":"118:56:33","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol","file":"./interfaces/IWitOracleRadonRequestFactory.sol","id":9772,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9793,"sourceUnit":10564,"src":"176:56:33","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9773,"name":"IWitOracleAppliance","nameLocations":["300:19:33"],"nodeType":"IdentifierPath","referencedDeclaration":9919,"src":"300:19:33"},"id":9774,"nodeType":"InheritanceSpecifier","src":"300:19:33"},{"baseName":{"id":9775,"name":"IWitOracleRadonRegistryEvents","nameLocations":["331:29:33"],"nodeType":"IdentifierPath","referencedDeclaration":10488,"src":"331:29:33"},"id":9776,"nodeType":"InheritanceSpecifier","src":"331:29:33"},{"baseName":{"id":9777,"name":"IWitOracleRadonRequestFactory","nameLocations":["371:29:33"],"nodeType":"IdentifierPath","referencedDeclaration":10563,"src":"371:29:33"},"id":9778,"nodeType":"InheritanceSpecifier","src":"371:29:33"}],"canonicalName":"WitOracleRadonRequestFactory","contractDependencies":[],"contractKind":"contract","fullyImplemented":false,"id":9792,"linearizedBaseContracts":[9792,10563,10488,9919,9842],"name":"WitOracleRadonRequestFactory","nameLocation":"254:28:33","nodeType":"ContractDefinition","nodes":[{"baseFunctions":[9806],"body":{"id":9790,"nodeType":"Block","src":"474:98:33","statements":[{"expression":{"components":[{"expression":{"arguments":[{"id":9785,"name":"WitOracleRadonRequestFactory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9792,"src":"512:28:33","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WitOracleRadonRequestFactory_$9792_$","typeString":"type(contract WitOracleRadonRequestFactory)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_contract$_WitOracleRadonRequestFactory_$9792_$","typeString":"type(contract WitOracleRadonRequestFactory)"}],"id":9784,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"507:4:33","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":9786,"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_$9792","typeString":"type(contract WitOracleRadonRequestFactory)"}},"id":9787,"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":9788,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"492:72:33","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"functionReturnParameters":9783,"id":9789,"nodeType":"Return","src":"485:79:33"}]},"functionSelector":"adb7c3f7","id":9791,"implemented":true,"kind":"function","modifiers":[],"name":"specs","nameLocation":"418:5:33","nodeType":"FunctionDefinition","overrides":{"id":9780,"nodeType":"OverrideSpecifier","overrides":[],"src":"434:8:33"},"parameters":{"id":9779,"nodeType":"ParameterList","parameters":[],"src":"423:2:33"},"returnParameters":{"id":9783,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9782,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9791,"src":"466:6:33","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9781,"name":"bytes4","nodeType":"ElementaryTypeName","src":"466:6:33","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"465:8:33"},"scope":9792,"src":"409:163:33","stateMutability":"pure","virtual":true,"visibility":"external"}],"scope":9793,"src":"236:339:33","usedErrors":[],"usedEvents":[10476,10481,10487,10496,10500]}],"src":"35:542:33"},"id":33},"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol","exportedSymbols":{"IWitAppliance":[9842]},"id":9843,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9794,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"35:23:34"},{"abstract":true,"baseContracts":[],"canonicalName":"IWitAppliance","contractDependencies":[],"contractKind":"contract","fullyImplemented":false,"id":9842,"linearizedBaseContracts":[9842],"name":"IWitAppliance","nameLocation":"80:13:34","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9795,"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":9800,"implemented":false,"kind":"function","modifiers":[],"name":"class","nameLocation":"218:5:34","nodeType":"FunctionDefinition","parameters":{"id":9796,"nodeType":"ParameterList","parameters":[],"src":"223:2:34"},"returnParameters":{"id":9799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9798,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9800,"src":"255:13:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9797,"name":"string","nodeType":"ElementaryTypeName","src":"255:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"254:15:34"},"scope":9842,"src":"209:61:34","stateMutability":"view","virtual":true,"visibility":"public"},{"documentation":{"id":9801,"nodeType":"StructuredDocumentation","src":"278:92:34","text":"@notice Returns the ERC-165 id of the minimal functionality expected for this appliance."},"functionSelector":"adb7c3f7","id":9806,"implemented":false,"kind":"function","modifiers":[],"name":"specs","nameLocation":"385:5:34","nodeType":"FunctionDefinition","parameters":{"id":9802,"nodeType":"ParameterList","parameters":[],"src":"390:2:34"},"returnParameters":{"id":9805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9804,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9806,"src":"424:6:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9803,"name":"bytes4","nodeType":"ElementaryTypeName","src":"424:6:34","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"423:8:34"},"scope":9842,"src":"376:56:34","stateMutability":"view","virtual":true,"visibility":"external"},{"body":{"id":9821,"nodeType":"Block","src":"521:79:34","statements":[{"condition":{"id":9814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"536:11:34","subExpression":{"id":9813,"name":"_condition","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9808,"src":"537:10:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":9820,"nodeType":"IfStatement","src":"532:61:34","trueBody":{"id":9819,"nodeType":"Block","src":"549:44:34","statements":[{"expression":{"arguments":[{"id":9816,"name":"_message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9810,"src":"572:8:34","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":9815,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9841,"src":"564:7:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) view"}},"id":9817,"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":9818,"nodeType":"ExpressionStatement","src":"564:17:34"}]}}]},"id":9822,"implemented":true,"kind":"function","modifiers":[],"name":"_require","nameLocation":"449:8:34","nodeType":"FunctionDefinition","parameters":{"id":9811,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9808,"mutability":"mutable","name":"_condition","nameLocation":"463:10:34","nodeType":"VariableDeclaration","scope":9822,"src":"458:15:34","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":9807,"name":"bool","nodeType":"ElementaryTypeName","src":"458:4:34","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":9810,"mutability":"mutable","name":"_message","nameLocation":"489:8:34","nodeType":"VariableDeclaration","scope":9822,"src":"475:22:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9809,"name":"string","nodeType":"ElementaryTypeName","src":"475:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"457:41:34"},"returnParameters":{"id":9812,"nodeType":"ParameterList","parameters":[],"src":"521:0:34"},"scope":9842,"src":"440:160:34","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":9840,"nodeType":"Block","src":"671:166:34","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"id":9832,"name":"class","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9800,"src":"745:5:34","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_string_memory_ptr_$","typeString":"function () view returns (string memory)"}},"id":9833,"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":9834,"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":9835,"name":"_message","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":9824,"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":9830,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"710:3:34","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":9831,"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":9836,"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":9829,"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":9828,"name":"string","nodeType":"ElementaryTypeName","src":"703:6:34","typeDescriptions":{}}},"id":9837,"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":9827,"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":9838,"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":9839,"nodeType":"ExpressionStatement","src":"682:147:34"}]},"id":9841,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"617:7:34","nodeType":"FunctionDefinition","parameters":{"id":9825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9824,"mutability":"mutable","name":"_message","nameLocation":"639:8:34","nodeType":"VariableDeclaration","scope":9841,"src":"625:22:34","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":9823,"name":"string","nodeType":"ElementaryTypeName","src":"625:6:34","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"624:24:34"},"returnParameters":{"id":9826,"nodeType":"ParameterList","parameters":[],"src":"671:0:34"},"scope":9842,"src":"608:229:34","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":9843,"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":[12052],"IWitOracle":[9907],"IWitOracleRadonRegistry":[10468],"Secp256k1":[13068],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":9908,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9844,"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":9845,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9908,"sourceUnit":10469,"src":"70:39:35","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracle","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":9907,"linearizedBaseContracts":[9907],"name":"IWitOracle","nameLocation":"123:10:35","nodeType":"ContractDefinition","nodes":[{"errorSelector":"b1c6172a","id":9847,"name":"InvalidDataReport","nameLocation":"149:17:35","nodeType":"ErrorDefinition","parameters":{"id":9846,"nodeType":"ParameterList","parameters":[],"src":"166:2:35"},"src":"143:26:35"},{"anonymous":false,"eventSelector":"7a9001dc4425127400f09e4c0b02908ad0e1f642ee9c92932a222c6866746482","id":9869,"name":"WitOracleReport","nameLocation":"187:15:35","nodeType":"EventDefinition","parameters":{"id":9868,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9849,"indexed":true,"mutability":"mutable","name":"evmOrigin","nameLocation":"233:9:35","nodeType":"VariableDeclaration","scope":9869,"src":"217:25:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9848,"name":"address","nodeType":"ElementaryTypeName","src":"217:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9851,"indexed":true,"mutability":"mutable","name":"evmConsumer","nameLocation":"274:11:35","nodeType":"VariableDeclaration","scope":9869,"src":"258:27:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9850,"name":"address","nodeType":"ElementaryTypeName","src":"258:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9853,"indexed":false,"mutability":"mutable","name":"evmReporter","nameLocation":"309:11:35","nodeType":"VariableDeclaration","scope":9869,"src":"301:19:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9852,"name":"address","nodeType":"ElementaryTypeName","src":"301:7:35","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9856,"indexed":false,"mutability":"mutable","name":"witDrTxHash","nameLocation":"358:11:35","nodeType":"VariableDeclaration","scope":9869,"src":"335:34:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":9855,"nodeType":"UserDefinedTypeName","pathNode":{"id":9854,"name":"Witnet.TransactionHash","nameLocations":["335:6:35","342:15:35"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"335:22:35"},"referencedDeclaration":13108,"src":"335:22:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":9859,"indexed":false,"mutability":"mutable","name":"queryRadHash","nameLocation":"401:12:35","nodeType":"VariableDeclaration","scope":9869,"src":"384:29:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":9858,"nodeType":"UserDefinedTypeName","pathNode":{"id":9857,"name":"Witnet.RadonHash","nameLocations":["384:6:35","391:9:35"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"384:16:35"},"referencedDeclaration":13102,"src":"384:16:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":9862,"indexed":false,"mutability":"mutable","name":"queryParams","nameLocation":"445:11:35","nodeType":"VariableDeclaration","scope":9869,"src":"428:28:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":9861,"nodeType":"UserDefinedTypeName","pathNode":{"id":9860,"name":"Witnet.QuerySLA","nameLocations":["428:6:35","435:8:35"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"428:15:35"},"referencedDeclaration":13324,"src":"428:15:35","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"},{"constant":false,"id":9865,"indexed":false,"mutability":"mutable","name":"resultTimestamp","nameLocation":"488:15:35","nodeType":"VariableDeclaration","scope":9869,"src":"471:32:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":9864,"nodeType":"UserDefinedTypeName","pathNode":{"id":9863,"name":"Witnet.Timestamp","nameLocations":["471:6:35","478:9:35"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"471:16:35"},"referencedDeclaration":13106,"src":"471:16:35","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":9867,"indexed":false,"mutability":"mutable","name":"resultCborBytes","nameLocation":"524:15:35","nodeType":"VariableDeclaration","scope":9869,"src":"518:21:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":9866,"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":9870,"nodeType":"StructuredDocumentation","src":"559:92:35","text":"@notice Uniquely identifies the WitOracle instance and the chain on which it's deployed."},"functionSelector":"7bbdb96e","id":9875,"implemented":false,"kind":"function","modifiers":[],"name":"channel","nameLocation":"666:7:35","nodeType":"FunctionDefinition","parameters":{"id":9871,"nodeType":"ParameterList","parameters":[],"src":"673:2:35"},"returnParameters":{"id":9874,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9873,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9875,"src":"699:6:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":9872,"name":"bytes4","nodeType":"ElementaryTypeName","src":"699:6:35","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"698:8:35"},"scope":9907,"src":"657:50:35","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9876,"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":9887,"implemented":false,"kind":"function","modifiers":[],"name":"parseDataReport","nameLocation":"905:15:35","nodeType":"FunctionDefinition","parameters":{"id":9882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9879,"mutability":"mutable","name":"report","nameLocation":"952:6:35","nodeType":"VariableDeclaration","scope":9887,"src":"921:37:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport"},"typeName":{"id":9878,"nodeType":"UserDefinedTypeName","pathNode":{"id":9877,"name":"Witnet.DataPushReport","nameLocations":["921:6:35","928:14:35"],"nodeType":"IdentifierPath","referencedDeclaration":13223,"src":"921:21:35"},"referencedDeclaration":13223,"src":"921:21:35","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_storage_ptr","typeString":"struct Witnet.DataPushReport"}},"visibility":"internal"},{"constant":false,"id":9881,"mutability":"mutable","name":"proof","nameLocation":"975:5:35","nodeType":"VariableDeclaration","scope":9887,"src":"960:20:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9880,"name":"bytes","nodeType":"ElementaryTypeName","src":"960:5:35","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"920:61:35"},"returnParameters":{"id":9886,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9885,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9887,"src":"1005:24:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":9884,"nodeType":"UserDefinedTypeName","pathNode":{"id":9883,"name":"Witnet.DataResult","nameLocations":["1005:6:35","1012:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"1005:17:35"},"referencedDeclaration":13240,"src":"1005:17:35","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"1004:26:35"},"scope":9907,"src":"896:135:35","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9888,"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":9899,"implemented":false,"kind":"function","modifiers":[],"name":"pushDataReport","nameLocation":"1310:14:35","nodeType":"FunctionDefinition","parameters":{"id":9894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9891,"mutability":"mutable","name":"report","nameLocation":"1356:6:35","nodeType":"VariableDeclaration","scope":9899,"src":"1325:37:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport"},"typeName":{"id":9890,"nodeType":"UserDefinedTypeName","pathNode":{"id":9889,"name":"Witnet.DataPushReport","nameLocations":["1325:6:35","1332:14:35"],"nodeType":"IdentifierPath","referencedDeclaration":13223,"src":"1325:21:35"},"referencedDeclaration":13223,"src":"1325:21:35","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_storage_ptr","typeString":"struct Witnet.DataPushReport"}},"visibility":"internal"},{"constant":false,"id":9893,"mutability":"mutable","name":"proof","nameLocation":"1379:5:35","nodeType":"VariableDeclaration","scope":9899,"src":"1364:20:35","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9892,"name":"bytes","nodeType":"ElementaryTypeName","src":"1364:5:35","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1324:61:35"},"returnParameters":{"id":9898,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9897,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9899,"src":"1404:24:35","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":9896,"nodeType":"UserDefinedTypeName","pathNode":{"id":9895,"name":"Witnet.DataResult","nameLocations":["1404:6:35","1411:10:35"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"1404:17:35"},"referencedDeclaration":13240,"src":"1404:17:35","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"1403:26:35"},"scope":9907,"src":"1301:129:35","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9900,"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":9906,"implemented":false,"kind":"function","modifiers":[],"name":"registry","nameLocation":"1794:8:35","nodeType":"FunctionDefinition","parameters":{"id":9901,"nodeType":"ParameterList","parameters":[],"src":"1802:2:35"},"returnParameters":{"id":9905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9904,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9906,"src":"1828:23:35","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRegistry_$10468","typeString":"contract IWitOracleRadonRegistry"},"typeName":{"id":9903,"nodeType":"UserDefinedTypeName","pathNode":{"id":9902,"name":"IWitOracleRadonRegistry","nameLocations":["1828:23:35"],"nodeType":"IdentifierPath","referencedDeclaration":10468,"src":"1828:23:35"},"referencedDeclaration":10468,"src":"1828:23:35","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRegistry_$10468","typeString":"contract IWitOracleRadonRegistry"}},"visibility":"internal"}],"src":"1827:25:35"},"scope":9907,"src":"1785:68:35","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":9908,"src":"113:1743:35","usedErrors":[9847],"usedEvents":[9869]}],"src":"35:1823:35"},"id":35},"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleAppliance.sol","exportedSymbols":{"IWitAppliance":[9842],"IWitOracleAppliance":[9919]},"id":9920,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9909,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"35:23:36"},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitAppliance.sol","file":"./IWitAppliance.sol","id":9910,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9920,"sourceUnit":9843,"src":"62:29:36","symbolAliases":[],"unitAlias":""},{"abstract":true,"baseContracts":[{"baseName":{"id":9911,"name":"IWitAppliance","nameLocations":["150:13:36"],"nodeType":"IdentifierPath","referencedDeclaration":9842,"src":"150:13:36"},"id":9912,"nodeType":"InheritanceSpecifier","src":"150:13:36"}],"canonicalName":"IWitOracleAppliance","contractDependencies":[],"contractKind":"contract","fullyImplemented":false,"id":9919,"linearizedBaseContracts":[9919,9842],"name":"IWitOracleAppliance","nameLocation":"113:19:36","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9913,"nodeType":"StructuredDocumentation","src":"172:74:36","text":"@notice Returns the WitOracle address that this appliance is bound to."},"functionSelector":"1014d375","id":9918,"implemented":false,"kind":"function","modifiers":[],"name":"witOracle","nameLocation":"261:9:36","nodeType":"FunctionDefinition","parameters":{"id":9914,"nodeType":"ParameterList","parameters":[],"src":"270:2:36"},"returnParameters":{"id":9917,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9916,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9918,"src":"304:7:36","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":9915,"name":"address","nodeType":"ElementaryTypeName","src":"304:7:36","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"303:9:36"},"scope":9919,"src":"252:61:36","stateMutability":"view","virtual":true,"visibility":"external"}],"scope":9920,"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":[12052],"IWitOracle":[9907],"IWitOracleConsumer":[9932],"IWitOracleRadonRegistry":[10468],"Secp256k1":[13068],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":9933,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9921,"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":9922,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":9933,"sourceUnit":9908,"src":"70:26:37","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleConsumer","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":9932,"linearizedBaseContracts":[9932],"name":"IWitOracleConsumer","nameLocation":"110:18:37","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9923,"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":9931,"implemented":false,"kind":"function","modifiers":[],"name":"pushDataReport","nameLocation":"459:14:37","nodeType":"FunctionDefinition","parameters":{"id":9929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9926,"mutability":"mutable","name":"report","nameLocation":"505:6:37","nodeType":"VariableDeclaration","scope":9931,"src":"474:37:37","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport"},"typeName":{"id":9925,"nodeType":"UserDefinedTypeName","pathNode":{"id":9924,"name":"Witnet.DataPushReport","nameLocations":["474:6:37","481:14:37"],"nodeType":"IdentifierPath","referencedDeclaration":13223,"src":"474:21:37"},"referencedDeclaration":13223,"src":"474:21:37","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_storage_ptr","typeString":"struct Witnet.DataPushReport"}},"visibility":"internal"},{"constant":false,"id":9928,"mutability":"mutable","name":"proof","nameLocation":"528:5:37","nodeType":"VariableDeclaration","scope":9931,"src":"513:20:37","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":9927,"name":"bytes","nodeType":"ElementaryTypeName","src":"513:5:37","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"473:61:37"},"returnParameters":{"id":9930,"nodeType":"ParameterList","parameters":[],"src":"543:0:37"},"scope":9932,"src":"450:94:37","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":9933,"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":[12052],"IWitOracleQueriable":[10102],"Secp256k1":[13068],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":10103,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":9934,"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":9935,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10103,"sourceUnit":16620,"src":"70:28:38","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleQueriable","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10102,"linearizedBaseContracts":[10102],"name":"IWitOracleQueriable","nameLocation":"112:19:38","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":9936,"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":9944,"implemented":false,"kind":"function","modifiers":[],"name":"deleteQuery","nameLocation":"398:11:38","nodeType":"FunctionDefinition","parameters":{"id":9939,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9938,"mutability":"mutable","name":"queryId","nameLocation":"418:7:38","nodeType":"VariableDeclaration","scope":9944,"src":"410:15:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9937,"name":"uint256","nodeType":"ElementaryTypeName","src":"410:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"409:17:38"},"returnParameters":{"id":9943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9942,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9944,"src":"445:21:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13096","typeString":"Witnet.QueryEvmReward"},"typeName":{"id":9941,"nodeType":"UserDefinedTypeName","pathNode":{"id":9940,"name":"Witnet.QueryEvmReward","nameLocations":["445:6:38","452:14:38"],"nodeType":"IdentifierPath","referencedDeclaration":13096,"src":"445:21:38"},"referencedDeclaration":13096,"src":"445:21:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13096","typeString":"Witnet.QueryEvmReward"}},"visibility":"internal"}],"src":"444:23:38"},"scope":10102,"src":"389:79:38","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":9945,"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":9952,"implemented":false,"kind":"function","modifiers":[],"name":"estimateBaseFee","nameLocation":"652:15:38","nodeType":"FunctionDefinition","parameters":{"id":9948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9947,"mutability":"mutable","name":"evmGasPrice","nameLocation":"676:11:38","nodeType":"VariableDeclaration","scope":9952,"src":"668:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9946,"name":"uint256","nodeType":"ElementaryTypeName","src":"668:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"667:21:38"},"returnParameters":{"id":9951,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9950,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9952,"src":"712:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9949,"name":"uint256","nodeType":"ElementaryTypeName","src":"712:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"711:9:38"},"scope":10102,"src":"643:78:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9953,"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":9962,"implemented":false,"kind":"function","modifiers":[],"name":"estimateBaseFeeWithCallback","nameLocation":"1017:27:38","nodeType":"FunctionDefinition","parameters":{"id":9958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9955,"mutability":"mutable","name":"evmGasPrice","nameLocation":"1053:11:38","nodeType":"VariableDeclaration","scope":9962,"src":"1045:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9954,"name":"uint256","nodeType":"ElementaryTypeName","src":"1045:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9957,"mutability":"mutable","name":"callbackGas","nameLocation":"1073:11:38","nodeType":"VariableDeclaration","scope":9962,"src":"1066:18:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":9956,"name":"uint24","nodeType":"ElementaryTypeName","src":"1066:6:38","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"1044:41:38"},"returnParameters":{"id":9961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9960,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9962,"src":"1109:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9959,"name":"uint256","nodeType":"ElementaryTypeName","src":"1109:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1108:9:38"},"scope":10102,"src":"1008:110:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9963,"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":9975,"implemented":false,"kind":"function","modifiers":[],"name":"estimateExtraFee","nameLocation":"1762:16:38","nodeType":"FunctionDefinition","parameters":{"id":9971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9965,"mutability":"mutable","name":"evmGasPrice","nameLocation":"1787:11:38","nodeType":"VariableDeclaration","scope":9975,"src":"1779:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9964,"name":"uint256","nodeType":"ElementaryTypeName","src":"1779:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9967,"mutability":"mutable","name":"evmWitPrice","nameLocation":"1808:11:38","nodeType":"VariableDeclaration","scope":9975,"src":"1800:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9966,"name":"uint256","nodeType":"ElementaryTypeName","src":"1800:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":9970,"mutability":"mutable","name":"querySLA","nameLocation":"1846:8:38","nodeType":"VariableDeclaration","scope":9975,"src":"1821:33:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":9969,"nodeType":"UserDefinedTypeName","pathNode":{"id":9968,"name":"Witnet.QuerySLA","nameLocations":["1821:6:38","1828:8:38"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"1821:15:38"},"referencedDeclaration":13324,"src":"1821:15:38","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"1778:77:38"},"returnParameters":{"id":9974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9973,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9975,"src":"1879:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9972,"name":"uint256","nodeType":"ElementaryTypeName","src":"1879:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1878:9:38"},"scope":10102,"src":"1753:135:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9976,"nodeType":"StructuredDocumentation","src":"1896:78:38","text":"@notice Returns next query id to be generated by the Witnet Request Board."},"functionSelector":"c805dd0f","id":9982,"implemented":false,"kind":"function","modifiers":[],"name":"getNextQueryId","nameLocation":"1989:14:38","nodeType":"FunctionDefinition","parameters":{"id":9977,"nodeType":"ParameterList","parameters":[],"src":"2003:2:38"},"returnParameters":{"id":9981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9980,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9982,"src":"2029:14:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"},"typeName":{"id":9979,"nodeType":"UserDefinedTypeName","pathNode":{"id":9978,"name":"Witnet.QueryId","nameLocations":["2029:6:38","2036:7:38"],"nodeType":"IdentifierPath","referencedDeclaration":13100,"src":"2029:14:38"},"referencedDeclaration":13100,"src":"2029:14:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}},"visibility":"internal"}],"src":"2028:16:38"},"scope":10102,"src":"1980:65:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9983,"nodeType":"StructuredDocumentation","src":"2053:85:38","text":"@notice Gets the whole Query data contents, if any, no matter its current status."},"functionSelector":"aeb2ffc1","id":9991,"implemented":false,"kind":"function","modifiers":[],"name":"getQuery","nameLocation":"2153:8:38","nodeType":"FunctionDefinition","parameters":{"id":9986,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9985,"mutability":"mutable","name":"queryId","nameLocation":"2170:7:38","nodeType":"VariableDeclaration","scope":9991,"src":"2162:15:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9984,"name":"uint256","nodeType":"ElementaryTypeName","src":"2162:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2161:17:38"},"returnParameters":{"id":9990,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9989,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":9991,"src":"2202:19:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Query_$13273_memory_ptr","typeString":"struct Witnet.Query"},"typeName":{"id":9988,"nodeType":"UserDefinedTypeName","pathNode":{"id":9987,"name":"Witnet.Query","nameLocations":["2202:6:38","2209:5:38"],"nodeType":"IdentifierPath","referencedDeclaration":13273,"src":"2202:12:38"},"referencedDeclaration":13273,"src":"2202:12:38","typeDescriptions":{"typeIdentifier":"t_struct$_Query_$13273_storage_ptr","typeString":"struct Witnet.Query"}},"visibility":"internal"}],"src":"2201:21:38"},"scope":10102,"src":"2144:79:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":9992,"nodeType":"StructuredDocumentation","src":"2231:80:38","text":"@notice Gets the current EVM reward the reporter can claim, if not done yet."},"functionSelector":"6fdaab7e","id":10000,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryEvmReward","nameLocation":"2326:17:38","nodeType":"FunctionDefinition","parameters":{"id":9995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9994,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10000,"src":"2344:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":9993,"name":"uint256","nodeType":"ElementaryTypeName","src":"2344:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2343:9:38"},"returnParameters":{"id":9999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":9998,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10000,"src":"2376:21:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13096","typeString":"Witnet.QueryEvmReward"},"typeName":{"id":9997,"nodeType":"UserDefinedTypeName","pathNode":{"id":9996,"name":"Witnet.QueryEvmReward","nameLocations":["2376:6:38","2383:14:38"],"nodeType":"IdentifierPath","referencedDeclaration":13096,"src":"2376:21:38"},"referencedDeclaration":13096,"src":"2376:21:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13096","typeString":"Witnet.QueryEvmReward"}},"visibility":"internal"}],"src":"2375:23:38"},"scope":10102,"src":"2317:82:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10001,"nodeType":"StructuredDocumentation","src":"2407:73:38","text":"@notice Retrieves the RAD hash and SLA parameters of the given query."},"functionSelector":"0aa4112a","id":10009,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryRequest","nameLocation":"2495:15:38","nodeType":"FunctionDefinition","parameters":{"id":10004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10003,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10009,"src":"2511:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10002,"name":"uint256","nodeType":"ElementaryTypeName","src":"2511:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2510:9:38"},"returnParameters":{"id":10008,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10007,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10009,"src":"2543:26:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_QueryRequest_$13300_memory_ptr","typeString":"struct Witnet.QueryRequest"},"typeName":{"id":10006,"nodeType":"UserDefinedTypeName","pathNode":{"id":10005,"name":"Witnet.QueryRequest","nameLocations":["2543:6:38","2550:12:38"],"nodeType":"IdentifierPath","referencedDeclaration":13300,"src":"2543:19:38"},"referencedDeclaration":13300,"src":"2543:19:38","typeDescriptions":{"typeIdentifier":"t_struct$_QueryRequest_$13300_storage_ptr","typeString":"struct Witnet.QueryRequest"}},"visibility":"internal"}],"src":"2542:28:38"},"scope":10102,"src":"2486:85:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10010,"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":10018,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryResponse","nameLocation":"2708:16:38","nodeType":"FunctionDefinition","parameters":{"id":10013,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10012,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10018,"src":"2725:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10011,"name":"uint256","nodeType":"ElementaryTypeName","src":"2725:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2724:9:38"},"returnParameters":{"id":10017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10016,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10018,"src":"2757:27:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_QueryResponse_$13316_memory_ptr","typeString":"struct Witnet.QueryResponse"},"typeName":{"id":10015,"nodeType":"UserDefinedTypeName","pathNode":{"id":10014,"name":"Witnet.QueryResponse","nameLocations":["2757:6:38","2764:13:38"],"nodeType":"IdentifierPath","referencedDeclaration":13316,"src":"2757:20:38"},"referencedDeclaration":13316,"src":"2757:20:38","typeDescriptions":{"typeIdentifier":"t_struct$_QueryResponse_$13316_storage_ptr","typeString":"struct Witnet.QueryResponse"}},"visibility":"internal"}],"src":"2756:29:38"},"scope":10102,"src":"2699:87:38","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"59209b39","id":10026,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryResult","nameLocation":"2803:14:38","nodeType":"FunctionDefinition","parameters":{"id":10021,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10020,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10026,"src":"2818:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10019,"name":"uint256","nodeType":"ElementaryTypeName","src":"2818:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2817:9:38"},"returnParameters":{"id":10025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10024,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10026,"src":"2850:24:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":10023,"nodeType":"UserDefinedTypeName","pathNode":{"id":10022,"name":"Witnet.DataResult","nameLocations":["2850:6:38","2857:10:38"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"2850:17:38"},"referencedDeclaration":13240,"src":"2850:17:38","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"2849:26:38"},"scope":10102,"src":"2794:82:38","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"4cddf615","id":10034,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryResultStatus","nameLocation":"2891:20:38","nodeType":"FunctionDefinition","parameters":{"id":10029,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10028,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10034,"src":"2912:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10027,"name":"uint256","nodeType":"ElementaryTypeName","src":"2912:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2911:9:38"},"returnParameters":{"id":10033,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10032,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10034,"src":"2944:19:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":10031,"nodeType":"UserDefinedTypeName","pathNode":{"id":10030,"name":"Witnet.ResultStatus","nameLocations":["2944:6:38","2951:12:38"],"nodeType":"IdentifierPath","referencedDeclaration":13581,"src":"2944:19:38"},"referencedDeclaration":13581,"src":"2944:19:38","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"2943:21:38"},"scope":10102,"src":"2882:83:38","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"c2581348","id":10041,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryResultStatusDescription","nameLocation":"2980:31:38","nodeType":"FunctionDefinition","parameters":{"id":10037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10036,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10041,"src":"3012:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10035,"name":"uint256","nodeType":"ElementaryTypeName","src":"3012:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3011:9:38"},"returnParameters":{"id":10040,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10039,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10041,"src":"3044:13:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10038,"name":"string","nodeType":"ElementaryTypeName","src":"3044:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3043:15:38"},"scope":10102,"src":"2971:88:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10042,"nodeType":"StructuredDocumentation","src":"3067:47:38","text":"@notice Gets current status of given query."},"functionSelector":"6f07abcc","id":10050,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryStatus","nameLocation":"3129:14:38","nodeType":"FunctionDefinition","parameters":{"id":10045,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10044,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10050,"src":"3144:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10043,"name":"uint256","nodeType":"ElementaryTypeName","src":"3144:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3143:9:38"},"returnParameters":{"id":10049,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10048,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10050,"src":"3176:18:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_QueryStatus_$13282","typeString":"enum Witnet.QueryStatus"},"typeName":{"id":10047,"nodeType":"UserDefinedTypeName","pathNode":{"id":10046,"name":"Witnet.QueryStatus","nameLocations":["3176:6:38","3183:11:38"],"nodeType":"IdentifierPath","referencedDeclaration":13282,"src":"3176:18:38"},"referencedDeclaration":13282,"src":"3176:18:38","typeDescriptions":{"typeIdentifier":"t_enum$_QueryStatus_$13282","typeString":"enum Witnet.QueryStatus"}},"visibility":"internal"}],"src":"3175:20:38"},"scope":10102,"src":"3120:76:38","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"838d44e2","id":10057,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryStatusString","nameLocation":"3211:20:38","nodeType":"FunctionDefinition","parameters":{"id":10053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10052,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10057,"src":"3232:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10051,"name":"uint256","nodeType":"ElementaryTypeName","src":"3232:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3231:9:38"},"returnParameters":{"id":10056,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10055,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10057,"src":"3264:13:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10054,"name":"string","nodeType":"ElementaryTypeName","src":"3264:6:38","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3263:15:38"},"scope":10102,"src":"3202:77:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10058,"nodeType":"StructuredDocumentation","src":"3291:54:38","text":"@notice Get current status of all given query ids."},"functionSelector":"581f5094","id":10068,"implemented":false,"kind":"function","modifiers":[],"name":"getQueryStatusBatch","nameLocation":"3360:19:38","nodeType":"FunctionDefinition","parameters":{"id":10062,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10061,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10068,"src":"3380:18:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$dyn_calldata_ptr","typeString":"uint256[]"},"typeName":{"baseType":{"id":10059,"name":"uint256","nodeType":"ElementaryTypeName","src":"3380:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":10060,"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":10067,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10066,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10068,"src":"3423:27:38","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_QueryStatus_$13282_$dyn_memory_ptr","typeString":"enum Witnet.QueryStatus[]"},"typeName":{"baseType":{"id":10064,"nodeType":"UserDefinedTypeName","pathNode":{"id":10063,"name":"Witnet.QueryStatus","nameLocations":["3423:6:38","3430:11:38"],"nodeType":"IdentifierPath","referencedDeclaration":13282,"src":"3423:18:38"},"referencedDeclaration":13282,"src":"3423:18:38","typeDescriptions":{"typeIdentifier":"t_enum$_QueryStatus_$13282","typeString":"enum Witnet.QueryStatus"}},"id":10065,"nodeType":"ArrayTypeName","src":"3423:20:38","typeDescriptions":{"typeIdentifier":"t_array$_t_enum$_QueryStatus_$13282_$dyn_storage_ptr","typeString":"enum Witnet.QueryStatus[]"}},"visibility":"internal"}],"src":"3422:29:38"},"scope":10102,"src":"3351:101:38","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10069,"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":10080,"implemented":false,"kind":"function","modifiers":[],"name":"queryData","nameLocation":"4174:9:38","nodeType":"FunctionDefinition","parameters":{"id":10076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10072,"mutability":"mutable","name":"radonHash","nameLocation":"4215:9:38","nodeType":"VariableDeclaration","scope":10080,"src":"4198:26:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10071,"nodeType":"UserDefinedTypeName","pathNode":{"id":10070,"name":"Witnet.RadonHash","nameLocations":["4198:6:38","4205:9:38"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"4198:16:38"},"referencedDeclaration":13102,"src":"4198:16:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":10075,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10080,"src":"4239:24:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10074,"nodeType":"UserDefinedTypeName","pathNode":{"id":10073,"name":"Witnet.QuerySLA","nameLocations":["4239:6:38","4246:8:38"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"4239:15:38"},"referencedDeclaration":13324,"src":"4239:15:38","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"4183:91:38"},"returnParameters":{"id":10079,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10078,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10080,"src":"4310:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10077,"name":"uint256","nodeType":"ElementaryTypeName","src":"4310:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4309:9:38"},"scope":10102,"src":"4165:154:38","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":10081,"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":10095,"implemented":false,"kind":"function","modifiers":[],"name":"queryDataWithCallback","nameLocation":"5227:21:38","nodeType":"FunctionDefinition","parameters":{"id":10091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10084,"mutability":"mutable","name":"radonHash","nameLocation":"5280:9:38","nodeType":"VariableDeclaration","scope":10095,"src":"5263:26:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10083,"nodeType":"UserDefinedTypeName","pathNode":{"id":10082,"name":"Witnet.RadonHash","nameLocations":["5263:6:38","5270:9:38"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"5263:16:38"},"referencedDeclaration":13102,"src":"5263:16:38","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":10087,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10095,"src":"5305:24:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10086,"nodeType":"UserDefinedTypeName","pathNode":{"id":10085,"name":"Witnet.QuerySLA","nameLocations":["5305:6:38","5312:8:38"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"5305:15:38"},"referencedDeclaration":13324,"src":"5305:15:38","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"},{"constant":false,"id":10090,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10095,"src":"5345:29:38","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QueryCallback_$13287_calldata_ptr","typeString":"struct Witnet.QueryCallback"},"typeName":{"id":10089,"nodeType":"UserDefinedTypeName","pathNode":{"id":10088,"name":"Witnet.QueryCallback","nameLocations":["5345:6:38","5352:13:38"],"nodeType":"IdentifierPath","referencedDeclaration":13287,"src":"5345:20:38"},"referencedDeclaration":13287,"src":"5345:20:38","typeDescriptions":{"typeIdentifier":"t_struct$_QueryCallback_$13287_storage_ptr","typeString":"struct Witnet.QueryCallback"}},"visibility":"internal"}],"src":"5248:137:38"},"returnParameters":{"id":10094,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10093,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10095,"src":"5421:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10092,"name":"uint256","nodeType":"ElementaryTypeName","src":"5421:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5420:9:38"},"scope":10102,"src":"5218:212:38","stateMutability":"payable","virtual":false,"visibility":"external"},{"documentation":{"id":10096,"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":10101,"implemented":false,"kind":"function","modifiers":[],"name":"upgradeQueryEvmReward","nameLocation":"5556:21:38","nodeType":"FunctionDefinition","parameters":{"id":10099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10098,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10101,"src":"5578:7:38","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10097,"name":"uint256","nodeType":"ElementaryTypeName","src":"5578:7:38","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5577:9:38"},"returnParameters":{"id":10100,"nodeType":"ParameterList","parameters":[],"src":"5603:0:38"},"scope":10102,"src":"5547:57:38","stateMutability":"payable","virtual":false,"visibility":"external"}],"scope":10103,"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":[12052],"IWitOracleQueriable":[10102],"IWitOracleQueriableConsumer":[10122],"Secp256k1":[13068],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":10123,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10104,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"35:23:39"},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleQueriable.sol","file":"./IWitOracleQueriable.sol","id":10105,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10123,"sourceUnit":10103,"src":"62:35:39","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleQueriableConsumer","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10122,"linearizedBaseContracts":[10122],"name":"IWitOracleQueriableConsumer","nameLocation":"111:27:39","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":10106,"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":10113,"implemented":false,"kind":"function","modifiers":[],"name":"reportWitOracleQueryResult","nameLocation":"651:26:39","nodeType":"FunctionDefinition","parameters":{"id":10111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10108,"mutability":"mutable","name":"queryId","nameLocation":"700:7:39","nodeType":"VariableDeclaration","scope":10113,"src":"692:15:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10107,"name":"uint256","nodeType":"ElementaryTypeName","src":"692:7:39","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10110,"mutability":"mutable","name":"queryResult","nameLocation":"737:11:39","nodeType":"VariableDeclaration","scope":10113,"src":"722:26:39","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10109,"name":"bytes","nodeType":"ElementaryTypeName","src":"722:5:39","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"677:82:39"},"returnParameters":{"id":10112,"nodeType":"ParameterList","parameters":[],"src":"768:0:39"},"scope":10122,"src":"642:127:39","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10114,"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":10121,"implemented":false,"kind":"function","modifiers":[],"name":"reportableFrom","nameLocation":"1022:14:39","nodeType":"FunctionDefinition","parameters":{"id":10117,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10116,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10121,"src":"1037:7:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10115,"name":"address","nodeType":"ElementaryTypeName","src":"1037:7:39","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1036:9:39"},"returnParameters":{"id":10120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10119,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10121,"src":"1069:4:39","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10118,"name":"bool","nodeType":"ElementaryTypeName","src":"1069:4:39","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1068:6:39"},"scope":10122,"src":"1013:62:39","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":10123,"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":[12052],"IWitOracleQueriableEvents":[10199],"Secp256k1":[13068],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":10200,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10124,"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":10125,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10200,"sourceUnit":16620,"src":"70:28:40","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleQueriableEvents","contractDependencies":[],"contractKind":"interface","fullyImplemented":true,"id":10199,"linearizedBaseContracts":[10199],"name":"IWitOracleQueriableEvents","nameLocation":"112:25:40","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":10126,"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":10143,"name":"WitOracleQuery","nameLocation":"259:14:40","nodeType":"EventDefinition","parameters":{"id":10142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10128,"indexed":true,"mutability":"mutable","name":"evmRequester","nameLocation":"300:12:40","nodeType":"VariableDeclaration","scope":10143,"src":"284:28:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10127,"name":"address","nodeType":"ElementaryTypeName","src":"284:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10130,"indexed":false,"mutability":"mutable","name":"evmGasPrice","nameLocation":"331:11:40","nodeType":"VariableDeclaration","scope":10143,"src":"323:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10129,"name":"uint256","nodeType":"ElementaryTypeName","src":"323:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10132,"indexed":false,"mutability":"mutable","name":"evmReward","nameLocation":"361:9:40","nodeType":"VariableDeclaration","scope":10143,"src":"353:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10131,"name":"uint256","nodeType":"ElementaryTypeName","src":"353:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10135,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"396:7:40","nodeType":"VariableDeclaration","scope":10143,"src":"381:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"},"typeName":{"id":10134,"nodeType":"UserDefinedTypeName","pathNode":{"id":10133,"name":"Witnet.QueryId","nameLocations":["381:6:40","388:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13100,"src":"381:14:40"},"referencedDeclaration":13100,"src":"381:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10138,"indexed":false,"mutability":"mutable","name":"radonHash","nameLocation":"432:9:40","nodeType":"VariableDeclaration","scope":10143,"src":"415:26:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10137,"nodeType":"UserDefinedTypeName","pathNode":{"id":10136,"name":"Witnet.RadonHash","nameLocations":["415:6:40","422:9:40"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"415:16:40"},"referencedDeclaration":13102,"src":"415:16:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":10141,"indexed":false,"mutability":"mutable","name":"radonParams","nameLocation":"468:11:40","nodeType":"VariableDeclaration","scope":10143,"src":"452:27:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10140,"nodeType":"UserDefinedTypeName","pathNode":{"id":10139,"name":"Witnet.QuerySLA","nameLocations":["452:6:40","459:8:40"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"452:15:40"},"referencedDeclaration":13324,"src":"452:15:40","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"273:213:40"},"src":"253:234:40"},{"anonymous":false,"documentation":{"id":10144,"nodeType":"StructuredDocumentation","src":"495:73:40","text":"Emitted when the reward of some not-yet reported query gets upgraded."},"eventSelector":"66f95ec285ca572fa1cac40e7019e14ab45a8fc619c6405222e8af55534c2f67","id":10155,"name":"WitOracleQueryUpgrade","nameLocation":"580:21:40","nodeType":"EventDefinition","parameters":{"id":10154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10147,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"627:7:40","nodeType":"VariableDeclaration","scope":10155,"src":"612:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"},"typeName":{"id":10146,"nodeType":"UserDefinedTypeName","pathNode":{"id":10145,"name":"Witnet.QueryId","nameLocations":["612:6:40","619:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13100,"src":"612:14:40"},"referencedDeclaration":13100,"src":"612:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10149,"indexed":false,"mutability":"mutable","name":"evmSender","nameLocation":"653:9:40","nodeType":"VariableDeclaration","scope":10155,"src":"645:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10148,"name":"address","nodeType":"ElementaryTypeName","src":"645:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10151,"indexed":false,"mutability":"mutable","name":"evmGasPrice","nameLocation":"681:11:40","nodeType":"VariableDeclaration","scope":10155,"src":"673:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10150,"name":"uint256","nodeType":"ElementaryTypeName","src":"673:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10153,"indexed":false,"mutability":"mutable","name":"evmReward","nameLocation":"711:9:40","nodeType":"VariableDeclaration","scope":10155,"src":"703:17:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10152,"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":10156,"nodeType":"StructuredDocumentation","src":"738:69:40","text":"Emitted when a query with no callback gets reported into the WRB."},"eventSelector":"dad34843fe0bb0a9944d07fad791384dd3727bfeb7f286a0f424120018e1057c","id":10163,"name":"WitOracleQueryReport","nameLocation":"819:20:40","nodeType":"EventDefinition","parameters":{"id":10162,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10159,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"865:7:40","nodeType":"VariableDeclaration","scope":10163,"src":"850:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"},"typeName":{"id":10158,"nodeType":"UserDefinedTypeName","pathNode":{"id":10157,"name":"Witnet.QueryId","nameLocations":["850:6:40","857:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13100,"src":"850:14:40"},"referencedDeclaration":13100,"src":"850:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10161,"indexed":false,"mutability":"mutable","name":"evmGasPrice","nameLocation":"892:11:40","nodeType":"VariableDeclaration","scope":10163,"src":"884:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10160,"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":10170,"name":"WitOracleQueryReportDispute","nameLocation":"925:27:40","nodeType":"EventDefinition","parameters":{"id":10169,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10166,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"978:7:40","nodeType":"VariableDeclaration","scope":10170,"src":"963:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"},"typeName":{"id":10165,"nodeType":"UserDefinedTypeName","pathNode":{"id":10164,"name":"Witnet.QueryId","nameLocations":["963:6:40","970:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13100,"src":"963:14:40"},"referencedDeclaration":13100,"src":"963:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10168,"indexed":false,"mutability":"mutable","name":"evmDisputer","nameLocation":"1004:11:40","nodeType":"VariableDeclaration","scope":10170,"src":"996:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10167,"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":10171,"nodeType":"StructuredDocumentation","src":"1031:81:40","text":"Emitted when a query with a callback gets successfully reported into the WRB."},"eventSelector":"6c796d02cda250b2df8ffb41596f8c9bd3de98cec4082fca7bddbfdf87500641","id":10182,"name":"WitOracleQueryReportDelivery","nameLocation":"1124:28:40","nodeType":"EventDefinition","parameters":{"id":10181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10174,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"1178:7:40","nodeType":"VariableDeclaration","scope":10182,"src":"1163:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"},"typeName":{"id":10173,"nodeType":"UserDefinedTypeName","pathNode":{"id":10172,"name":"Witnet.QueryId","nameLocations":["1163:6:40","1170:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13100,"src":"1163:14:40"},"referencedDeclaration":13100,"src":"1163:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10176,"indexed":false,"mutability":"mutable","name":"evmConsumer","nameLocation":"1205:11:40","nodeType":"VariableDeclaration","scope":10182,"src":"1197:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10175,"name":"address","nodeType":"ElementaryTypeName","src":"1197:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10178,"indexed":false,"mutability":"mutable","name":"evmGasPrice","nameLocation":"1235:11:40","nodeType":"VariableDeclaration","scope":10182,"src":"1227:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10177,"name":"uint256","nodeType":"ElementaryTypeName","src":"1227:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10180,"indexed":false,"mutability":"mutable","name":"evmCallbackGas","nameLocation":"1266:14:40","nodeType":"VariableDeclaration","scope":10182,"src":"1258:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10179,"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":10183,"nodeType":"StructuredDocumentation","src":"1296:74:40","text":"Emitted when a query with a callback cannot get reported into the WRB."},"eventSelector":"09fcb062eea311bee472ba4446b2fd5ef38dbfbb7aefe922398b05776a86e48e","id":10198,"name":"WitOracleResportDeliveryFailed","nameLocation":"1382:30:40","nodeType":"EventDefinition","parameters":{"id":10197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10186,"indexed":false,"mutability":"mutable","name":"queryId","nameLocation":"1438:7:40","nodeType":"VariableDeclaration","scope":10198,"src":"1423:22:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"},"typeName":{"id":10185,"nodeType":"UserDefinedTypeName","pathNode":{"id":10184,"name":"Witnet.QueryId","nameLocations":["1423:6:40","1430:7:40"],"nodeType":"IdentifierPath","referencedDeclaration":13100,"src":"1423:14:40"},"referencedDeclaration":13100,"src":"1423:14:40","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":10188,"indexed":false,"mutability":"mutable","name":"evmConsumer","nameLocation":"1465:11:40","nodeType":"VariableDeclaration","scope":10198,"src":"1457:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10187,"name":"address","nodeType":"ElementaryTypeName","src":"1457:7:40","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10190,"indexed":false,"mutability":"mutable","name":"evmGasPrice","nameLocation":"1495:11:40","nodeType":"VariableDeclaration","scope":10198,"src":"1487:19:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10189,"name":"uint256","nodeType":"ElementaryTypeName","src":"1487:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10192,"indexed":false,"mutability":"mutable","name":"evmCallbackActualGas","nameLocation":"1526:20:40","nodeType":"VariableDeclaration","scope":10198,"src":"1518:28:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":10191,"name":"uint256","nodeType":"ElementaryTypeName","src":"1518:7:40","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":10194,"indexed":false,"mutability":"mutable","name":"evmCallbackRevertReason","nameLocation":"1566:23:40","nodeType":"VariableDeclaration","scope":10198,"src":"1558:31:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10193,"name":"string","nodeType":"ElementaryTypeName","src":"1558:6:40","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10196,"indexed":false,"mutability":"mutable","name":"resultCborBytes","nameLocation":"1608:15:40","nodeType":"VariableDeclaration","scope":10198,"src":"1600:23:40","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10195,"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":10200,"src":"102:1532:40","usedErrors":[],"usedEvents":[10143,10155,10163,10170,10182,10198]}],"src":"35:1601:40"},"id":40},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRegistry.sol","exportedSymbols":{"Bech32":[12052],"IWitOracleRadonRegistry":[10468],"Secp256k1":[13068],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":10469,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10201,"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":10202,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10469,"sourceUnit":16620,"src":"70:28:41","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleRadonRegistry","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10468,"linearizedBaseContracts":[10468],"name":"IWitOracleRadonRegistry","nameLocation":"112:23:41","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":10203,"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":10214,"implemented":false,"kind":"function","modifiers":[],"name":"bytecodeOf","nameLocation":"324:10:41","nodeType":"FunctionDefinition","parameters":{"id":10210,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10206,"mutability":"mutable","name":"radonRequestHash","nameLocation":"366:16:41","nodeType":"VariableDeclaration","scope":10214,"src":"349:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10205,"nodeType":"UserDefinedTypeName","pathNode":{"id":10204,"name":"Witnet.RadonHash","nameLocations":["349:6:41","356:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"349:16:41"},"referencedDeclaration":13102,"src":"349:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":10209,"mutability":"mutable","name":"queryParams","nameLocation":"423:11:41","nodeType":"VariableDeclaration","scope":10214,"src":"398:36:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10208,"nodeType":"UserDefinedTypeName","pathNode":{"id":10207,"name":"Witnet.QuerySLA","nameLocations":["398:6:41","405:8:41"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"398:15:41"},"referencedDeclaration":13324,"src":"398:15:41","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"334:111:41"},"returnParameters":{"id":10213,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10212,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10214,"src":"469:12:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10211,"name":"bytes","nodeType":"ElementaryTypeName","src":"469:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"468:14:41"},"scope":10468,"src":"315:168:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10215,"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":10225,"implemented":false,"kind":"function","modifiers":[],"name":"bytecodeOf","nameLocation":"673:10:41","nodeType":"FunctionDefinition","parameters":{"id":10221,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10217,"mutability":"mutable","name":"radonRequestBytecode","nameLocation":"713:20:41","nodeType":"VariableDeclaration","scope":10225,"src":"698:35:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10216,"name":"bytes","nodeType":"ElementaryTypeName","src":"698:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10220,"mutability":"mutable","name":"queryParams","nameLocation":"774:11:41","nodeType":"VariableDeclaration","scope":10225,"src":"749:36:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":10219,"nodeType":"UserDefinedTypeName","pathNode":{"id":10218,"name":"Witnet.QuerySLA","nameLocations":["749:6:41","756:8:41"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"749:15:41"},"referencedDeclaration":13324,"src":"749:15:41","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"683:113:41"},"returnParameters":{"id":10224,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10223,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10225,"src":"820:12:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10222,"name":"bytes","nodeType":"ElementaryTypeName","src":"820:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"819:14:41"},"scope":10468,"src":"664:170:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10226,"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":10234,"implemented":false,"kind":"function","modifiers":[],"name":"hashOf","nameLocation":"1066:6:41","nodeType":"FunctionDefinition","parameters":{"id":10229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10228,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10234,"src":"1073:14:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10227,"name":"bytes","nodeType":"ElementaryTypeName","src":"1073:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1072:16:41"},"returnParameters":{"id":10233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10232,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10234,"src":"1112:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10231,"nodeType":"UserDefinedTypeName","pathNode":{"id":10230,"name":"Witnet.RadonHash","nameLocations":["1112:6:41","1119:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"1112:16:41"},"referencedDeclaration":13102,"src":"1112:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"1111:18:41"},"scope":10468,"src":"1057:73:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10235,"nodeType":"StructuredDocumentation","src":"1138:99:41","text":"@notice Tells whether the specified Radon Reducer has been formally verified into the registry."},"functionSelector":"2229e86e","id":10242,"implemented":false,"kind":"function","modifiers":[],"name":"isVerifiedRadonReducer","nameLocation":"1252:22:41","nodeType":"FunctionDefinition","parameters":{"id":10238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10237,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10242,"src":"1275:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10236,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1275:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1274:9:41"},"returnParameters":{"id":10241,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10240,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10242,"src":"1307:4:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10239,"name":"bool","nodeType":"ElementaryTypeName","src":"1307:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1306:6:41"},"scope":10468,"src":"1243:70:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10243,"nodeType":"StructuredDocumentation","src":"1325:92:41","text":"@notice Tells whether the given Radon Hash has been formally verified into the registry."},"functionSelector":"68ec07a4","id":10251,"implemented":false,"kind":"function","modifiers":[],"name":"isVerifiedRadonRequest","nameLocation":"1432:22:41","nodeType":"FunctionDefinition","parameters":{"id":10247,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10246,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10251,"src":"1455:16:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10245,"nodeType":"UserDefinedTypeName","pathNode":{"id":10244,"name":"Witnet.RadonHash","nameLocations":["1455:6:41","1462:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"1455:16:41"},"referencedDeclaration":13102,"src":"1455:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"1454:18:41"},"returnParameters":{"id":10250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10249,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10251,"src":"1496:4:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10248,"name":"bool","nodeType":"ElementaryTypeName","src":"1496:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1495:6:41"},"scope":10468,"src":"1423:79:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10252,"nodeType":"StructuredDocumentation","src":"1514:101:41","text":"@notice Tells whether the specified Radon Retrieval has been formally verified into the registry."},"functionSelector":"977e0157","id":10259,"implemented":false,"kind":"function","modifiers":[],"name":"isVerifiedRadonRetrieval","nameLocation":"1630:24:41","nodeType":"FunctionDefinition","parameters":{"id":10255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10254,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10259,"src":"1655:7:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10253,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1655:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1654:9:41"},"returnParameters":{"id":10258,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10257,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10259,"src":"1687:4:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":10256,"name":"bool","nodeType":"ElementaryTypeName","src":"1687:4:41","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1686:6:41"},"scope":10468,"src":"1621:72:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10260,"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":10268,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonReducer","nameLocation":"1839:18:41","nodeType":"FunctionDefinition","parameters":{"id":10263,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10262,"mutability":"mutable","name":"hash","nameLocation":"1866:4:41","nodeType":"VariableDeclaration","scope":10268,"src":"1858:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10261,"name":"bytes32","nodeType":"ElementaryTypeName","src":"1858:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"1857:14:41"},"returnParameters":{"id":10267,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10266,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10268,"src":"1895:26:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10265,"nodeType":"UserDefinedTypeName","pathNode":{"id":10264,"name":"Witnet.RadonReducer","nameLocations":["1895:6:41","1902:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"1895:19:41"},"referencedDeclaration":13631,"src":"1895:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"1894:28:41"},"scope":10468,"src":"1830:93:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10269,"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":10277,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestBytecode","nameLocation":"2335:26:41","nodeType":"FunctionDefinition","parameters":{"id":10273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10272,"mutability":"mutable","name":"radonRequestHash","nameLocation":"2379:16:41","nodeType":"VariableDeclaration","scope":10277,"src":"2362:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10271,"nodeType":"UserDefinedTypeName","pathNode":{"id":10270,"name":"Witnet.RadonHash","nameLocations":["2362:6:41","2369:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"2362:16:41"},"referencedDeclaration":13102,"src":"2362:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"2361:35:41"},"returnParameters":{"id":10276,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10275,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10277,"src":"2420:12:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10274,"name":"bytes","nodeType":"ElementaryTypeName","src":"2420:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2419:14:41"},"scope":10468,"src":"2326:108:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10278,"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":10287,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestCrowdAttestationTally","nameLocation":"2635:39:41","nodeType":"FunctionDefinition","parameters":{"id":10282,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10281,"mutability":"mutable","name":"radonRequestHash","nameLocation":"2692:16:41","nodeType":"VariableDeclaration","scope":10287,"src":"2675:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10280,"nodeType":"UserDefinedTypeName","pathNode":{"id":10279,"name":"Witnet.RadonHash","nameLocations":["2675:6:41","2682:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"2675:16:41"},"referencedDeclaration":13102,"src":"2675:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"2674:35:41"},"returnParameters":{"id":10286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10285,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10287,"src":"2733:26:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10284,"nodeType":"UserDefinedTypeName","pathNode":{"id":10283,"name":"Witnet.RadonReducer","nameLocations":["2733:6:41","2740:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"2733:19:41"},"referencedDeclaration":13631,"src":"2733:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"2732:28:41"},"scope":10468,"src":"2626:135:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10288,"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":10297,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestResultDataType","nameLocation":"2933:32:41","nodeType":"FunctionDefinition","parameters":{"id":10292,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10291,"mutability":"mutable","name":"radonRequestHash","nameLocation":"2983:16:41","nodeType":"VariableDeclaration","scope":10297,"src":"2966:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10290,"nodeType":"UserDefinedTypeName","pathNode":{"id":10289,"name":"Witnet.RadonHash","nameLocations":["2966:6:41","2973:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"2966:16:41"},"referencedDeclaration":13102,"src":"2966:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"2965:35:41"},"returnParameters":{"id":10296,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10295,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10297,"src":"3024:21:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":10294,"nodeType":"UserDefinedTypeName","pathNode":{"id":10293,"name":"Witnet.RadonDataTypes","nameLocations":["3024:6:41","3031:14:41"],"nodeType":"IdentifierPath","referencedDeclaration":13603,"src":"3024:21:41"},"referencedDeclaration":13603,"src":"3024:21:41","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"3023:23:41"},"scope":10468,"src":"2924:123:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10298,"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":10308,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestRetrievals","nameLocation":"3579:28:41","nodeType":"FunctionDefinition","parameters":{"id":10302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10301,"mutability":"mutable","name":"radonRequestHash","nameLocation":"3625:16:41","nodeType":"VariableDeclaration","scope":10308,"src":"3608:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10300,"nodeType":"UserDefinedTypeName","pathNode":{"id":10299,"name":"Witnet.RadonHash","nameLocations":["3608:6:41","3615:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"3608:16:41"},"referencedDeclaration":13102,"src":"3608:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"3607:35:41"},"returnParameters":{"id":10307,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10306,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10308,"src":"3666:30:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13678_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonRetrieval[]"},"typeName":{"baseType":{"id":10304,"nodeType":"UserDefinedTypeName","pathNode":{"id":10303,"name":"Witnet.RadonRetrieval","nameLocations":["3666:6:41","3673:14:41"],"nodeType":"IdentifierPath","referencedDeclaration":13678,"src":"3666:21:41"},"referencedDeclaration":13678,"src":"3666:21:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13678_storage_ptr","typeString":"struct Witnet.RadonRetrieval"}},"id":10305,"nodeType":"ArrayTypeName","src":"3666:23:41","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13678_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonRetrieval[]"}},"visibility":"internal"}],"src":"3665:32:41"},"scope":10468,"src":"3570:128:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10309,"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":10318,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestRetrievalsAggregator","nameLocation":"3962:38:41","nodeType":"FunctionDefinition","parameters":{"id":10313,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10312,"mutability":"mutable","name":"radonRequestHash","nameLocation":"4018:16:41","nodeType":"VariableDeclaration","scope":10318,"src":"4001:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10311,"nodeType":"UserDefinedTypeName","pathNode":{"id":10310,"name":"Witnet.RadonHash","nameLocations":["4001:6:41","4008:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"4001:16:41"},"referencedDeclaration":13102,"src":"4001:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"4000:35:41"},"returnParameters":{"id":10317,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10316,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10318,"src":"4059:26:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10315,"nodeType":"UserDefinedTypeName","pathNode":{"id":10314,"name":"Witnet.RadonReducer","nameLocations":["4059:6:41","4066:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"4059:19:41"},"referencedDeclaration":13631,"src":"4059:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"4058:28:41"},"scope":10468,"src":"3953:134:41","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"23f2e3ea","id":10326,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRequestRetrievalsCount","nameLocation":"4104:33:41","nodeType":"FunctionDefinition","parameters":{"id":10322,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10321,"mutability":"mutable","name":"radonRequestHash","nameLocation":"4155:16:41","nodeType":"VariableDeclaration","scope":10326,"src":"4138:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10320,"nodeType":"UserDefinedTypeName","pathNode":{"id":10319,"name":"Witnet.RadonHash","nameLocations":["4138:6:41","4145:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"4138:16:41"},"referencedDeclaration":13102,"src":"4138:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"4137:35:41"},"returnParameters":{"id":10325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10324,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10326,"src":"4196:5:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10323,"name":"uint8","nodeType":"ElementaryTypeName","src":"4196:5:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4195:7:41"},"scope":10468,"src":"4095:108:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10327,"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":10335,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRetrieval","nameLocation":"4373:20:41","nodeType":"FunctionDefinition","parameters":{"id":10330,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10329,"mutability":"mutable","name":"hash","nameLocation":"4402:4:41","nodeType":"VariableDeclaration","scope":10335,"src":"4394:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10328,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4394:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4393:14:41"},"returnParameters":{"id":10334,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10333,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10335,"src":"4431:28:41","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13678_memory_ptr","typeString":"struct Witnet.RadonRetrieval"},"typeName":{"id":10332,"nodeType":"UserDefinedTypeName","pathNode":{"id":10331,"name":"Witnet.RadonRetrieval","nameLocations":["4431:6:41","4438:14:41"],"nodeType":"IdentifierPath","referencedDeclaration":13678,"src":"4431:21:41"},"referencedDeclaration":13678,"src":"4431:21:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13678_storage_ptr","typeString":"struct Witnet.RadonRetrieval"}},"visibility":"internal"}],"src":"4430:30:41"},"scope":10468,"src":"4364:97:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10336,"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":10343,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRetrievalArgsCount","nameLocation":"4659:29:41","nodeType":"FunctionDefinition","parameters":{"id":10339,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10338,"mutability":"mutable","name":"hash","nameLocation":"4697:4:41","nodeType":"VariableDeclaration","scope":10343,"src":"4689:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10337,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4689:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4688:14:41"},"returnParameters":{"id":10342,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10341,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10343,"src":"4726:5:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10340,"name":"uint8","nodeType":"ElementaryTypeName","src":"4726:5:41","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"4725:7:41"},"scope":10468,"src":"4650:83:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10344,"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":10352,"implemented":false,"kind":"function","modifiers":[],"name":"lookupRadonRetrievalResultDataType","nameLocation":"4921:34:41","nodeType":"FunctionDefinition","parameters":{"id":10347,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10346,"mutability":"mutable","name":"hash","nameLocation":"4964:4:41","nodeType":"VariableDeclaration","scope":10352,"src":"4956:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10345,"name":"bytes32","nodeType":"ElementaryTypeName","src":"4956:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"4955:14:41"},"returnParameters":{"id":10351,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10350,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10352,"src":"4993:21:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":10349,"nodeType":"UserDefinedTypeName","pathNode":{"id":10348,"name":"Witnet.RadonDataTypes","nameLocations":["4993:6:41","5000:14:41"],"nodeType":"IdentifierPath","referencedDeclaration":13603,"src":"4993:21:41"},"referencedDeclaration":13603,"src":"4993:21:41","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"4992:23:41"},"scope":10468,"src":"4912:104:41","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10353,"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":10361,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonReducer","nameLocation":"5464:18:41","nodeType":"FunctionDefinition","parameters":{"id":10357,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10356,"mutability":"mutable","name":"reducer","nameLocation":"5512:7:41","nodeType":"VariableDeclaration","scope":10361,"src":"5483:36:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10355,"nodeType":"UserDefinedTypeName","pathNode":{"id":10354,"name":"Witnet.RadonReducer","nameLocations":["5483:6:41","5490:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"5483:19:41"},"referencedDeclaration":13631,"src":"5483:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"5482:38:41"},"returnParameters":{"id":10360,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10359,"mutability":"mutable","name":"hash","nameLocation":"5547:4:41","nodeType":"VariableDeclaration","scope":10361,"src":"5539:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10358,"name":"bytes32","nodeType":"ElementaryTypeName","src":"5539:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"5538:14:41"},"scope":10468,"src":"5455:98:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10362,"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":10377,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"6044:18:41","nodeType":"FunctionDefinition","parameters":{"id":10372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10365,"mutability":"mutable","name":"radonRetrieveHashes","nameLocation":"6096:19:41","nodeType":"VariableDeclaration","scope":10377,"src":"6077:38:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":10363,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6077:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10364,"nodeType":"ArrayTypeName","src":"6077:9:41","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":10368,"mutability":"mutable","name":"dataSourcesAggregator","nameLocation":"6159:21:41","nodeType":"VariableDeclaration","scope":10377,"src":"6130:50:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10367,"nodeType":"UserDefinedTypeName","pathNode":{"id":10366,"name":"Witnet.RadonReducer","nameLocations":["6130:6:41","6137:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"6130:19:41"},"referencedDeclaration":13631,"src":"6130:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"},{"constant":false,"id":10371,"mutability":"mutable","name":"crowsAttestationTally","nameLocation":"6224:21:41","nodeType":"VariableDeclaration","scope":10377,"src":"6195:50:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10370,"nodeType":"UserDefinedTypeName","pathNode":{"id":10369,"name":"Witnet.RadonReducer","nameLocations":["6195:6:41","6202:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"6195:19:41"},"referencedDeclaration":13631,"src":"6195:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"6062:194:41"},"returnParameters":{"id":10376,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10375,"mutability":"mutable","name":"radonRequestHash","nameLocation":"6292:16:41","nodeType":"VariableDeclaration","scope":10377,"src":"6275:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10374,"nodeType":"UserDefinedTypeName","pathNode":{"id":10373,"name":"Witnet.RadonHash","nameLocations":["6275:6:41","6282:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"6275:16:41"},"referencedDeclaration":13102,"src":"6275:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"6274:35:41"},"scope":10468,"src":"6035:275:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10378,"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":10391,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"6885:18:41","nodeType":"FunctionDefinition","parameters":{"id":10386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10381,"mutability":"mutable","name":"retrieveHashes","nameLocation":"6937:14:41","nodeType":"VariableDeclaration","scope":10391,"src":"6918:33:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":10379,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6918:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10380,"nodeType":"ArrayTypeName","src":"6918:9:41","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":10383,"mutability":"mutable","name":"aggregateReducerHash","nameLocation":"6974:20:41","nodeType":"VariableDeclaration","scope":10391,"src":"6966:28:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10382,"name":"bytes32","nodeType":"ElementaryTypeName","src":"6966:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10385,"mutability":"mutable","name":"tallyReducerHash","nameLocation":"7017:16:41","nodeType":"VariableDeclaration","scope":10391,"src":"7009:24:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10384,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7009:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"6903:141:41"},"returnParameters":{"id":10390,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10389,"mutability":"mutable","name":"radonRequestHash","nameLocation":"7080:16:41","nodeType":"VariableDeclaration","scope":10391,"src":"7063:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10388,"nodeType":"UserDefinedTypeName","pathNode":{"id":10387,"name":"Witnet.RadonHash","nameLocations":["7063:6:41","7070:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"7063:16:41"},"referencedDeclaration":13102,"src":"7063:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"7062:35:41"},"scope":10468,"src":"6876:222:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10392,"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":10411,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"7660:18:41","nodeType":"FunctionDefinition","parameters":{"id":10406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10395,"mutability":"mutable","name":"radonRetrieveHashes","nameLocation":"7712:19:41","nodeType":"VariableDeclaration","scope":10411,"src":"7693:38:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":10393,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7693:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10394,"nodeType":"ArrayTypeName","src":"7693:9:41","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":10399,"mutability":"mutable","name":"radonRetrieveArgs","nameLocation":"7766:17:41","nodeType":"VariableDeclaration","scope":10411,"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":10396,"name":"string","nodeType":"ElementaryTypeName","src":"7746:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10397,"nodeType":"ArrayTypeName","src":"7746:8:41","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"id":10398,"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":10402,"mutability":"mutable","name":"dataSourcesAggregator","nameLocation":"7827:21:41","nodeType":"VariableDeclaration","scope":10411,"src":"7798:50:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10401,"nodeType":"UserDefinedTypeName","pathNode":{"id":10400,"name":"Witnet.RadonReducer","nameLocations":["7798:6:41","7805:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"7798:19:41"},"referencedDeclaration":13631,"src":"7798:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"},{"constant":false,"id":10405,"mutability":"mutable","name":"crowdAttestationTally","nameLocation":"7892:21:41","nodeType":"VariableDeclaration","scope":10411,"src":"7863:50:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10404,"nodeType":"UserDefinedTypeName","pathNode":{"id":10403,"name":"Witnet.RadonReducer","nameLocations":["7863:6:41","7870:12:41"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"7863:19:41"},"referencedDeclaration":13631,"src":"7863:19:41","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"7678:246:41"},"returnParameters":{"id":10410,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10409,"mutability":"mutable","name":"radonRequestHash","nameLocation":"7960:16:41","nodeType":"VariableDeclaration","scope":10411,"src":"7943:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10408,"nodeType":"UserDefinedTypeName","pathNode":{"id":10407,"name":"Witnet.RadonHash","nameLocations":["7943:6:41","7950:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"7943:16:41"},"referencedDeclaration":13102,"src":"7943:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"7942:35:41"},"scope":10468,"src":"7651:327:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10412,"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":10429,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"8664:18:41","nodeType":"FunctionDefinition","parameters":{"id":10424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10415,"mutability":"mutable","name":"radonRetrieveHashes","nameLocation":"8716:19:41","nodeType":"VariableDeclaration","scope":10429,"src":"8697:38:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":10413,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8697:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10414,"nodeType":"ArrayTypeName","src":"8697:9:41","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":10419,"mutability":"mutable","name":"radonRetrieveArgs","nameLocation":"8770:17:41","nodeType":"VariableDeclaration","scope":10429,"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":10416,"name":"string","nodeType":"ElementaryTypeName","src":"8750:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10417,"nodeType":"ArrayTypeName","src":"8750:8:41","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"id":10418,"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":10421,"mutability":"mutable","name":"dataSourcesAggregatorHash","nameLocation":"8810:25:41","nodeType":"VariableDeclaration","scope":10429,"src":"8802:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10420,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8802:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10423,"mutability":"mutable","name":"crowdAttestationTallyHash","nameLocation":"8858:25:41","nodeType":"VariableDeclaration","scope":10429,"src":"8850:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10422,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8850:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8682:212:41"},"returnParameters":{"id":10428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10427,"mutability":"mutable","name":"radonRequestHash","nameLocation":"8930:16:41","nodeType":"VariableDeclaration","scope":10429,"src":"8913:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10426,"nodeType":"UserDefinedTypeName","pathNode":{"id":10425,"name":"Witnet.RadonHash","nameLocations":["8913:6:41","8920:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"8913:16:41"},"referencedDeclaration":13102,"src":"8913:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"8912:35:41"},"scope":10468,"src":"8655:293:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"98cb04f4","id":10447,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"8965:18:41","nodeType":"FunctionDefinition","parameters":{"id":10442,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10431,"mutability":"mutable","name":"commonRetrieveHash","nameLocation":"9006:18:41","nodeType":"VariableDeclaration","scope":10447,"src":"8998:26:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10430,"name":"bytes32","nodeType":"ElementaryTypeName","src":"8998:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10434,"mutability":"mutable","name":"commonRetrieveArgs","nameLocation":"9057:18:41","nodeType":"VariableDeclaration","scope":10447,"src":"9039:36:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_string_calldata_ptr_$dyn_calldata_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":10432,"name":"string","nodeType":"ElementaryTypeName","src":"9039:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10433,"nodeType":"ArrayTypeName","src":"9039:8:41","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":10437,"mutability":"mutable","name":"dataProviders","nameLocation":"9108:13:41","nodeType":"VariableDeclaration","scope":10447,"src":"9090:31:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_string_calldata_ptr_$dyn_calldata_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":10435,"name":"string","nodeType":"ElementaryTypeName","src":"9090:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10436,"nodeType":"ArrayTypeName","src":"9090:8:41","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":10439,"mutability":"mutable","name":"dataSourcesAggregatorHash","nameLocation":"9144:25:41","nodeType":"VariableDeclaration","scope":10447,"src":"9136:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10438,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9136:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":10441,"mutability":"mutable","name":"crowdAttestationTallyHash","nameLocation":"9192:25:41","nodeType":"VariableDeclaration","scope":10447,"src":"9184:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10440,"name":"bytes32","nodeType":"ElementaryTypeName","src":"9184:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"8983:245:41"},"returnParameters":{"id":10446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10445,"mutability":"mutable","name":"radonRequestHash","nameLocation":"9264:16:41","nodeType":"VariableDeclaration","scope":10447,"src":"9247:33:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10444,"nodeType":"UserDefinedTypeName","pathNode":{"id":10443,"name":"Witnet.RadonHash","nameLocations":["9247:6:41","9254:9:41"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"9247:16:41"},"referencedDeclaration":13102,"src":"9247:16:41","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"9246:35:41"},"scope":10468,"src":"8956:326:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":10448,"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":10467,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRetrieval","nameLocation":"9813:20:41","nodeType":"FunctionDefinition","parameters":{"id":10463,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10451,"mutability":"mutable","name":"requestMethod","nameLocation":"9877:13:41","nodeType":"VariableDeclaration","scope":10467,"src":"9848:42:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13685","typeString":"enum Witnet.RadonRetrievalMethods"},"typeName":{"id":10450,"nodeType":"UserDefinedTypeName","pathNode":{"id":10449,"name":"Witnet.RadonRetrievalMethods","nameLocations":["9848:6:41","9855:21:41"],"nodeType":"IdentifierPath","referencedDeclaration":13685,"src":"9848:28:41"},"referencedDeclaration":13685,"src":"9848:28:41","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13685","typeString":"enum Witnet.RadonRetrievalMethods"}},"visibility":"internal"},{"constant":false,"id":10453,"mutability":"mutable","name":"requestURL","nameLocation":"9921:10:41","nodeType":"VariableDeclaration","scope":10467,"src":"9905:26:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":10452,"name":"string","nodeType":"ElementaryTypeName","src":"9905:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10455,"mutability":"mutable","name":"requestBody","nameLocation":"9962:11:41","nodeType":"VariableDeclaration","scope":10467,"src":"9946:27:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_string_calldata_ptr","typeString":"string"},"typeName":{"id":10454,"name":"string","nodeType":"ElementaryTypeName","src":"9946:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10460,"mutability":"mutable","name":"requestHeaders","nameLocation":"10009:14:41","nodeType":"VariableDeclaration","scope":10467,"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":10456,"name":"string","nodeType":"ElementaryTypeName","src":"9988:6:41","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10458,"length":{"hexValue":"32","id":10457,"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":10459,"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":10462,"mutability":"mutable","name":"requestRadonScript","nameLocation":"10053:18:41","nodeType":"VariableDeclaration","scope":10467,"src":"10038:33:41","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":10461,"name":"bytes","nodeType":"ElementaryTypeName","src":"10038:5:41","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"9833:249:41"},"returnParameters":{"id":10466,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10465,"mutability":"mutable","name":"hash","nameLocation":"10109:4:41","nodeType":"VariableDeclaration","scope":10467,"src":"10101:12:41","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10464,"name":"bytes32","nodeType":"ElementaryTypeName","src":"10101:7:41","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"10100:14:41"},"scope":10468,"src":"9804:311:41","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":10469,"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":[12052],"IWitOracleRadonRegistryEvents":[10488],"Secp256k1":[13068],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":10489,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10470,"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":10471,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10489,"sourceUnit":16620,"src":"70:28:42","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleRadonRegistryEvents","contractDependencies":[],"contractKind":"interface","fullyImplemented":true,"id":10488,"linearizedBaseContracts":[10488],"name":"IWitOracleRadonRegistryEvents","nameLocation":"112:29:42","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":10472,"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":10476,"name":"NewRadonReducer","nameLocation":"285:15:42","nodeType":"EventDefinition","parameters":{"id":10475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10474,"indexed":false,"mutability":"mutable","name":"hash","nameLocation":"309:4:42","nodeType":"VariableDeclaration","scope":10476,"src":"301:12:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10473,"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":10477,"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":10481,"name":"NewRadonRetrieval","nameLocation":"459:17:42","nodeType":"EventDefinition","parameters":{"id":10480,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10479,"indexed":false,"mutability":"mutable","name":"hash","nameLocation":"485:4:42","nodeType":"VariableDeclaration","scope":10481,"src":"477:12:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":10478,"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":10482,"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":10487,"name":"NewRadonRequest","nameLocation":"633:15:42","nodeType":"EventDefinition","parameters":{"id":10486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10485,"indexed":false,"mutability":"mutable","name":"radonHash","nameLocation":"666:9:42","nodeType":"VariableDeclaration","scope":10487,"src":"649:26:42","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10484,"nodeType":"UserDefinedTypeName","pathNode":{"id":10483,"name":"Witnet.RadonHash","nameLocations":["649:6:42","656:9:42"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"649:16:42"},"referencedDeclaration":13102,"src":"649:16:42","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"648:28:42"},"src":"627:50:42"}],"scope":10489,"src":"102:578:42","usedErrors":[],"usedEvents":[10476,10481,10487]}],"src":"35:647:42"},"id":42},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestFactory.sol","exportedSymbols":{"Bech32":[12052],"IWitOracleRadonRequestFactory":[10563],"IWitOracleRadonRequestModal":[10613],"IWitOracleRadonRequestTemplate":[10664],"Secp256k1":[13068],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":10564,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10490,"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":10491,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10564,"sourceUnit":10614,"src":"70:43:43","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestTemplate.sol","file":"./IWitOracleRadonRequestTemplate.sol","id":10492,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10564,"sourceUnit":10665,"src":"115:46:43","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleRadonRequestFactory","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10563,"linearizedBaseContracts":[10563],"name":"IWitOracleRadonRequestFactory","nameLocation":"175:29:43","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"05fb0138d9f716184cd659a536fe0bad16aa46c316e721c7ccfe63901c968341","id":10496,"name":"NewRadonRequestModal","nameLocation":"220:20:43","nodeType":"EventDefinition","parameters":{"id":10495,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10494,"indexed":false,"mutability":"mutable","name":"witOracleRadonRequestModal","nameLocation":"249:26:43","nodeType":"VariableDeclaration","scope":10496,"src":"241:34:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10493,"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":10500,"name":"NewRadonRequestTemplate","nameLocation":"289:23:43","nodeType":"EventDefinition","parameters":{"id":10499,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10498,"indexed":false,"mutability":"mutable","name":"witOracleRadonRequestTemplate","nameLocation":"321:29:43","nodeType":"VariableDeclaration","scope":10500,"src":"313:37:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10497,"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":10506,"members":[{"constant":false,"id":10502,"mutability":"mutable","name":"url","nameLocation":"396:3:43","nodeType":"VariableDeclaration","scope":10506,"src":"389:10:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":10501,"name":"string","nodeType":"ElementaryTypeName","src":"389:6:43","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10505,"mutability":"mutable","name":"request","nameLocation":"428:7:43","nodeType":"VariableDeclaration","scope":10506,"src":"410:25:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10519_storage_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest"},"typeName":{"id":10504,"nodeType":"UserDefinedTypeName","pathNode":{"id":10503,"name":"DataSourceRequest","nameLocations":["410:17:43"],"nodeType":"IdentifierPath","referencedDeclaration":10519,"src":"410:17:43"},"referencedDeclaration":10519,"src":"410:17:43","typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10519_storage_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest"}},"visibility":"internal"}],"name":"DataSource","nameLocation":"367:10:43","nodeType":"StructDefinition","scope":10563,"src":"360:83:43","visibility":"public"},{"canonicalName":"IWitOracleRadonRequestFactory.DataSourceRequest","id":10519,"members":[{"constant":false,"id":10509,"mutability":"mutable","name":"method","nameLocation":"516:6:43","nodeType":"VariableDeclaration","scope":10519,"src":"487:35:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13685","typeString":"enum Witnet.RadonRetrievalMethods"},"typeName":{"id":10508,"nodeType":"UserDefinedTypeName","pathNode":{"id":10507,"name":"Witnet.RadonRetrievalMethods","nameLocations":["487:6:43","494:21:43"],"nodeType":"IdentifierPath","referencedDeclaration":13685,"src":"487:28:43"},"referencedDeclaration":13685,"src":"487:28:43","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13685","typeString":"enum Witnet.RadonRetrievalMethods"}},"visibility":"internal"},{"constant":false,"id":10511,"mutability":"mutable","name":"body","nameLocation":"540:4:43","nodeType":"VariableDeclaration","scope":10519,"src":"533:11:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":10510,"name":"string","nodeType":"ElementaryTypeName","src":"533:6:43","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10516,"mutability":"mutable","name":"headers","nameLocation":"567:7:43","nodeType":"VariableDeclaration","scope":10519,"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":10512,"name":"string","nodeType":"ElementaryTypeName","src":"555:6:43","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10514,"length":{"hexValue":"32","id":10513,"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":10515,"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":10518,"mutability":"mutable","name":"script","nameLocation":"591:6:43","nodeType":"VariableDeclaration","scope":10519,"src":"585:12:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":10517,"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":10563,"src":"451:154:43","visibility":"public"},{"functionSelector":"c96e201f","id":10531,"implemented":false,"kind":"function","modifiers":[],"name":"buildRadonRequestModal","nameLocation":"622:22:43","nodeType":"FunctionDefinition","parameters":{"id":10526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10522,"mutability":"mutable","name":"commonDataRequest","nameLocation":"686:17:43","nodeType":"VariableDeclaration","scope":10531,"src":"659:44:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10519_calldata_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest"},"typeName":{"id":10521,"nodeType":"UserDefinedTypeName","pathNode":{"id":10520,"name":"DataSourceRequest","nameLocations":["659:17:43"],"nodeType":"IdentifierPath","referencedDeclaration":10519,"src":"659:17:43"},"referencedDeclaration":10519,"src":"659:17:43","typeDescriptions":{"typeIdentifier":"t_struct$_DataSourceRequest_$10519_storage_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSourceRequest"}},"visibility":"internal"},{"constant":false,"id":10525,"mutability":"mutable","name":"crowdAttestationTally","nameLocation":"747:21:43","nodeType":"VariableDeclaration","scope":10531,"src":"718:50:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10524,"nodeType":"UserDefinedTypeName","pathNode":{"id":10523,"name":"Witnet.RadonReducer","nameLocations":["718:6:43","725:12:43"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"718:19:43"},"referencedDeclaration":13631,"src":"718:19:43","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"644:135:43"},"returnParameters":{"id":10530,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10529,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10531,"src":"807:27:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"},"typeName":{"id":10528,"nodeType":"UserDefinedTypeName","pathNode":{"id":10527,"name":"IWitOracleRadonRequestModal","nameLocations":["807:27:43"],"nodeType":"IdentifierPath","referencedDeclaration":10613,"src":"807:27:43"},"referencedDeclaration":10613,"src":"807:27:43","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestModal_$10613","typeString":"contract IWitOracleRadonRequestModal"}},"visibility":"internal"}],"src":"806:29:43"},"scope":10563,"src":"613:223:43","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"e71dc532","id":10546,"implemented":false,"kind":"function","modifiers":[],"name":"buildRadonRequestTemplate","nameLocation":"853:25:43","nodeType":"FunctionDefinition","parameters":{"id":10541,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10534,"mutability":"mutable","name":"dataRetrieveHashes","nameLocation":"912:18:43","nodeType":"VariableDeclaration","scope":10546,"src":"893:37:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":10532,"name":"bytes32","nodeType":"ElementaryTypeName","src":"893:7:43","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":10533,"nodeType":"ArrayTypeName","src":"893:9:43","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":10537,"mutability":"mutable","name":"dataSourcesAggregator","nameLocation":"974:21:43","nodeType":"VariableDeclaration","scope":10546,"src":"945:50:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10536,"nodeType":"UserDefinedTypeName","pathNode":{"id":10535,"name":"Witnet.RadonReducer","nameLocations":["945:6:43","952:12:43"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"945:19:43"},"referencedDeclaration":13631,"src":"945:19:43","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"},{"constant":false,"id":10540,"mutability":"mutable","name":"crowdAttestationTally","nameLocation":"1039:21:43","nodeType":"VariableDeclaration","scope":10546,"src":"1010:50:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10539,"nodeType":"UserDefinedTypeName","pathNode":{"id":10538,"name":"Witnet.RadonReducer","nameLocations":["1010:6:43","1017:12:43"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"1010:19:43"},"referencedDeclaration":13631,"src":"1010:19:43","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"878:193:43"},"returnParameters":{"id":10545,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10544,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10546,"src":"1090:30:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestTemplate_$10664","typeString":"contract IWitOracleRadonRequestTemplate"},"typeName":{"id":10543,"nodeType":"UserDefinedTypeName","pathNode":{"id":10542,"name":"IWitOracleRadonRequestTemplate","nameLocations":["1090:30:43"],"nodeType":"IdentifierPath","referencedDeclaration":10664,"src":"1090:30:43"},"referencedDeclaration":10664,"src":"1090:30:43","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestTemplate_$10664","typeString":"contract IWitOracleRadonRequestTemplate"}},"visibility":"internal"}],"src":"1089:32:43"},"scope":10563,"src":"844:278:43","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"9f165d4b","id":10562,"implemented":false,"kind":"function","modifiers":[],"name":"buildRadonRequestTemplate","nameLocation":"1147:25:43","nodeType":"FunctionDefinition","parameters":{"id":10557,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10550,"mutability":"mutable","name":"dataSources","nameLocation":"1209:11:43","nodeType":"VariableDeclaration","scope":10562,"src":"1187:33:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_DataSource_$10506_calldata_ptr_$dyn_calldata_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSource[]"},"typeName":{"baseType":{"id":10548,"nodeType":"UserDefinedTypeName","pathNode":{"id":10547,"name":"DataSource","nameLocations":["1187:10:43"],"nodeType":"IdentifierPath","referencedDeclaration":10506,"src":"1187:10:43"},"referencedDeclaration":10506,"src":"1187:10:43","typeDescriptions":{"typeIdentifier":"t_struct$_DataSource_$10506_storage_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSource"}},"id":10549,"nodeType":"ArrayTypeName","src":"1187:12:43","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_DataSource_$10506_storage_$dyn_storage_ptr","typeString":"struct IWitOracleRadonRequestFactory.DataSource[]"}},"visibility":"internal"},{"constant":false,"id":10553,"mutability":"mutable","name":"dataSourcesAggregator","nameLocation":"1264:21:43","nodeType":"VariableDeclaration","scope":10562,"src":"1235:50:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10552,"nodeType":"UserDefinedTypeName","pathNode":{"id":10551,"name":"Witnet.RadonReducer","nameLocations":["1235:6:43","1242:12:43"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"1235:19:43"},"referencedDeclaration":13631,"src":"1235:19:43","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"},{"constant":false,"id":10556,"mutability":"mutable","name":"crowdAttestationTally","nameLocation":"1329:21:43","nodeType":"VariableDeclaration","scope":10562,"src":"1300:50:43","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_calldata_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10555,"nodeType":"UserDefinedTypeName","pathNode":{"id":10554,"name":"Witnet.RadonReducer","nameLocations":["1300:6:43","1307:12:43"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"1300:19:43"},"referencedDeclaration":13631,"src":"1300:19:43","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"1172:189:43"},"returnParameters":{"id":10561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10560,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10562,"src":"1389:30:43","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestTemplate_$10664","typeString":"contract IWitOracleRadonRequestTemplate"},"typeName":{"id":10559,"nodeType":"UserDefinedTypeName","pathNode":{"id":10558,"name":"IWitOracleRadonRequestTemplate","nameLocations":["1389:30:43"],"nodeType":"IdentifierPath","referencedDeclaration":10664,"src":"1389:30:43"},"referencedDeclaration":10664,"src":"1389:30:43","typeDescriptions":{"typeIdentifier":"t_contract$_IWitOracleRadonRequestTemplate_$10664","typeString":"contract IWitOracleRadonRequestTemplate"}},"visibility":"internal"}],"src":"1388:32:43"},"scope":10563,"src":"1138:283:43","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":10564,"src":"165:1259:43","usedErrors":[],"usedEvents":[10496,10500]}],"src":"35:1391:43"},"id":43},"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol":{"ast":{"absolutePath":"witnet-solidity-bridge/contracts/interfaces/IWitOracleRadonRequestModal.sol","exportedSymbols":{"Bech32":[12052],"IWitOracleRadonRequestModal":[10613],"Secp256k1":[13068],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":10614,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10565,"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":10566,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10614,"sourceUnit":16620,"src":"70:28:44","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleRadonRequestModal","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10613,"linearizedBaseContracts":[10613],"name":"IWitOracleRadonRequestModal","nameLocation":"112:27:44","nodeType":"ContractDefinition","nodes":[{"functionSelector":"0f0adf5b","id":10572,"implemented":false,"kind":"function","modifiers":[],"name":"getCrowdAttestationTally","nameLocation":"158:24:44","nodeType":"FunctionDefinition","parameters":{"id":10567,"nodeType":"ParameterList","parameters":[],"src":"182:2:44"},"returnParameters":{"id":10571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10570,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10572,"src":"208:26:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10569,"nodeType":"UserDefinedTypeName","pathNode":{"id":10568,"name":"Witnet.RadonReducer","nameLocations":["208:6:44","215:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"208:19:44"},"referencedDeclaration":13631,"src":"208:19:44","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"207:28:44"},"scope":10613,"src":"149:87:44","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"7f2b1d77","id":10578,"implemented":false,"kind":"function","modifiers":[],"name":"getDataResultType","nameLocation":"251:17:44","nodeType":"FunctionDefinition","parameters":{"id":10573,"nodeType":"ParameterList","parameters":[],"src":"268:2:44"},"returnParameters":{"id":10577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10576,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10578,"src":"294:21:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":10575,"nodeType":"UserDefinedTypeName","pathNode":{"id":10574,"name":"Witnet.RadonDataTypes","nameLocations":["294:6:44","301:14:44"],"nodeType":"IdentifierPath","referencedDeclaration":13603,"src":"294:21:44"},"referencedDeclaration":13603,"src":"294:21:44","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"293:23:44"},"scope":10613,"src":"242:75:44","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"13152e89","id":10584,"implemented":false,"kind":"function","modifiers":[],"name":"getDataSourcesAggregator","nameLocation":"333:24:44","nodeType":"FunctionDefinition","parameters":{"id":10579,"nodeType":"ParameterList","parameters":[],"src":"357:2:44"},"returnParameters":{"id":10583,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10582,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10584,"src":"383:26:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10581,"nodeType":"UserDefinedTypeName","pathNode":{"id":10580,"name":"Witnet.RadonReducer","nameLocations":["383:6:44","390:12:44"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"383:19:44"},"referencedDeclaration":13631,"src":"383:19:44","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"382:28:44"},"scope":10613,"src":"324:87:44","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"9ae40404","id":10589,"implemented":false,"kind":"function","modifiers":[],"name":"getDataSourcesArgsCount","nameLocation":"426:23:44","nodeType":"FunctionDefinition","parameters":{"id":10585,"nodeType":"ParameterList","parameters":[],"src":"449:2:44"},"returnParameters":{"id":10588,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10587,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10589,"src":"475:5:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10586,"name":"uint8","nodeType":"ElementaryTypeName","src":"475:5:44","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"474:7:44"},"scope":10613,"src":"417:65:44","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"7bb725d3","id":10595,"implemented":false,"kind":"function","modifiers":[],"name":"getRadonModalRetrieval","nameLocation":"497:22:44","nodeType":"FunctionDefinition","parameters":{"id":10590,"nodeType":"ParameterList","parameters":[],"src":"519:2:44"},"returnParameters":{"id":10594,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10593,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10595,"src":"545:28:44","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13678_memory_ptr","typeString":"struct Witnet.RadonRetrieval"},"typeName":{"id":10592,"nodeType":"UserDefinedTypeName","pathNode":{"id":10591,"name":"Witnet.RadonRetrieval","nameLocations":["545:6:44","552:14:44"],"nodeType":"IdentifierPath","referencedDeclaration":13678,"src":"545:21:44"},"referencedDeclaration":13678,"src":"545:21:44","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13678_storage_ptr","typeString":"struct Witnet.RadonRetrieval"}},"visibility":"internal"}],"src":"544:30:44"},"scope":10613,"src":"488:87:44","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"f0e271bc","id":10607,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"592:18:44","nodeType":"FunctionDefinition","parameters":{"id":10602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10598,"mutability":"mutable","name":"commonRetrievalArgs","nameLocation":"629:19:44","nodeType":"VariableDeclaration","scope":10607,"src":"611:37:44","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_string_calldata_ptr_$dyn_calldata_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":10596,"name":"string","nodeType":"ElementaryTypeName","src":"611:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10597,"nodeType":"ArrayTypeName","src":"611:8:44","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"visibility":"internal"},{"constant":false,"id":10601,"mutability":"mutable","name":"dataProviders","nameLocation":"668:13:44","nodeType":"VariableDeclaration","scope":10607,"src":"650:31:44","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_string_calldata_ptr_$dyn_calldata_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":10599,"name":"string","nodeType":"ElementaryTypeName","src":"650:6:44","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10600,"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":10606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10605,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10607,"src":"701:16:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10604,"nodeType":"UserDefinedTypeName","pathNode":{"id":10603,"name":"Witnet.RadonHash","nameLocations":["701:6:44","708:9:44"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"701:16:44"},"referencedDeclaration":13102,"src":"701:16:44","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"700:18:44"},"scope":10613,"src":"583:136:44","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"1014d375","id":10612,"implemented":false,"kind":"function","modifiers":[],"name":"witOracle","nameLocation":"734:9:44","nodeType":"FunctionDefinition","parameters":{"id":10608,"nodeType":"ParameterList","parameters":[],"src":"743:2:44"},"returnParameters":{"id":10611,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10610,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10612,"src":"769:7:44","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10609,"name":"address","nodeType":"ElementaryTypeName","src":"769:7:44","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"768:9:44"},"scope":10613,"src":"725:53:44","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":10614,"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":[12052],"IWitOracleRadonRequestTemplate":[10664],"Secp256k1":[13068],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":10665,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10615,"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":10616,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":10665,"sourceUnit":16620,"src":"70:28:45","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"IWitOracleRadonRequestTemplate","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":10664,"linearizedBaseContracts":[10664],"name":"IWitOracleRadonRequestTemplate","nameLocation":"112:30:45","nodeType":"ContractDefinition","nodes":[{"functionSelector":"0f0adf5b","id":10622,"implemented":false,"kind":"function","modifiers":[],"name":"getCrowdAttestationTally","nameLocation":"161:24:45","nodeType":"FunctionDefinition","parameters":{"id":10617,"nodeType":"ParameterList","parameters":[],"src":"185:2:45"},"returnParameters":{"id":10621,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10620,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10622,"src":"211:26:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10619,"nodeType":"UserDefinedTypeName","pathNode":{"id":10618,"name":"Witnet.RadonReducer","nameLocations":["211:6:45","218:12:45"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"211:19:45"},"referencedDeclaration":13631,"src":"211:19:45","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"210:28:45"},"scope":10664,"src":"152:87:45","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"7f2b1d77","id":10628,"implemented":false,"kind":"function","modifiers":[],"name":"getDataResultType","nameLocation":"254:17:45","nodeType":"FunctionDefinition","parameters":{"id":10623,"nodeType":"ParameterList","parameters":[],"src":"271:2:45"},"returnParameters":{"id":10627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10626,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10628,"src":"297:21:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":10625,"nodeType":"UserDefinedTypeName","pathNode":{"id":10624,"name":"Witnet.RadonDataTypes","nameLocations":["297:6:45","304:14:45"],"nodeType":"IdentifierPath","referencedDeclaration":13603,"src":"297:21:45"},"referencedDeclaration":13603,"src":"297:21:45","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"296:23:45"},"scope":10664,"src":"245:75:45","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"bc04eba8","id":10635,"implemented":false,"kind":"function","modifiers":[],"name":"getDataSources","nameLocation":"336:14:45","nodeType":"FunctionDefinition","parameters":{"id":10629,"nodeType":"ParameterList","parameters":[],"src":"350:2:45"},"returnParameters":{"id":10634,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10633,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10635,"src":"376:30:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13678_memory_ptr_$dyn_memory_ptr","typeString":"struct Witnet.RadonRetrieval[]"},"typeName":{"baseType":{"id":10631,"nodeType":"UserDefinedTypeName","pathNode":{"id":10630,"name":"Witnet.RadonRetrieval","nameLocations":["376:6:45","383:14:45"],"nodeType":"IdentifierPath","referencedDeclaration":13678,"src":"376:21:45"},"referencedDeclaration":13678,"src":"376:21:45","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13678_storage_ptr","typeString":"struct Witnet.RadonRetrieval"}},"id":10632,"nodeType":"ArrayTypeName","src":"376:23:45","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13678_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonRetrieval[]"}},"visibility":"internal"}],"src":"375:32:45"},"scope":10664,"src":"327:81:45","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"13152e89","id":10641,"implemented":false,"kind":"function","modifiers":[],"name":"getDataSourcesAggregator","nameLocation":"423:24:45","nodeType":"FunctionDefinition","parameters":{"id":10636,"nodeType":"ParameterList","parameters":[],"src":"447:2:45"},"returnParameters":{"id":10640,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10639,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10641,"src":"473:26:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_memory_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":10638,"nodeType":"UserDefinedTypeName","pathNode":{"id":10637,"name":"Witnet.RadonReducer","nameLocations":["473:6:45","480:12:45"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"473:19:45"},"referencedDeclaration":13631,"src":"473:19:45","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"src":"472:28:45"},"scope":10664,"src":"414:87:45","stateMutability":"view","virtual":false,"visibility":"external"},{"functionSelector":"9ae40404","id":10647,"implemented":false,"kind":"function","modifiers":[],"name":"getDataSourcesArgsCount","nameLocation":"516:23:45","nodeType":"FunctionDefinition","parameters":{"id":10642,"nodeType":"ParameterList","parameters":[],"src":"539:2:45"},"returnParameters":{"id":10646,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10645,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10647,"src":"565:14:45","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":10643,"name":"uint8","nodeType":"ElementaryTypeName","src":"565:5:45","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":10644,"nodeType":"ArrayTypeName","src":"565:7:45","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"src":"564:16:45"},"scope":10664,"src":"507:74:45","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":10648,"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":10658,"implemented":false,"kind":"function","modifiers":[],"name":"verifyRadonRequest","nameLocation":"1505:18:45","nodeType":"FunctionDefinition","parameters":{"id":10653,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10652,"mutability":"mutable","name":"args","nameLocation":"1544:4:45","nodeType":"VariableDeclaration","scope":10658,"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":10649,"name":"string","nodeType":"ElementaryTypeName","src":"1524:6:45","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":10650,"nodeType":"ArrayTypeName","src":"1524:8:45","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}},"id":10651,"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":10657,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10656,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10658,"src":"1568:16:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":10655,"nodeType":"UserDefinedTypeName","pathNode":{"id":10654,"name":"Witnet.RadonHash","nameLocations":["1568:6:45","1575:9:45"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"1568:16:45"},"referencedDeclaration":13102,"src":"1568:16:45","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"1567:18:45"},"scope":10664,"src":"1496:90:45","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"functionSelector":"1014d375","id":10663,"implemented":false,"kind":"function","modifiers":[],"name":"witOracle","nameLocation":"1603:9:45","nodeType":"FunctionDefinition","parameters":{"id":10659,"nodeType":"ParameterList","parameters":[],"src":"1612:2:45"},"returnParameters":{"id":10662,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10661,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10663,"src":"1638:7:45","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10660,"name":"address","nodeType":"ElementaryTypeName","src":"1638:7:45","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1637:9:45"},"scope":10664,"src":"1594:53:45","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":10665,"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":[12052]},"id":12053,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":10666,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"100:23:46"},{"abstract":false,"baseContracts":[],"canonicalName":"Bech32","contractDependencies":[],"contractKind":"library","documentation":{"id":10667,"nodeType":"StructuredDocumentation","src":"127:82:46","text":" @dev Collection of functions related to the Bech32 address generation"},"fullyImplemented":true,"id":12052,"linearizedBaseContracts":[12052],"name":"Bech32","nameLocation":"219:6:46","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":10670,"mutability":"constant","name":"ALPHABET","nameLocation":"248:8:46","nodeType":"VariableDeclaration","scope":12052,"src":"233:60:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10668,"name":"bytes","nodeType":"ElementaryTypeName","src":"233:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"value":{"hexValue":"71707a7279397838676632747664773073336a6e35346b686365366d7561376c","id":10669,"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":10673,"mutability":"constant","name":"ALPHABET_REV","nameLocation":"315:12:46","nodeType":"VariableDeclaration","scope":12052,"src":"300:547:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10671,"name":"bytes","nodeType":"ElementaryTypeName","src":"300:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"value":{"hexValue":"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","id":10672,"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":10676,"mutability":"constant","name":"ALPHABET_REV_LOWER_ONLY","nameLocation":"869:23:46","nodeType":"VariableDeclaration","scope":12052,"src":"854:558:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10674,"name":"bytes","nodeType":"ElementaryTypeName","src":"854:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"value":{"hexValue":"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff","id":10675,"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":10679,"mutability":"constant","name":"ENC_BECH32","nameLocation":"2507:10:46","nodeType":"VariableDeclaration","scope":12052,"src":"2491:30:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10677,"name":"uint32","nodeType":"ElementaryTypeName","src":"2491:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"31","id":10678,"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":10682,"mutability":"constant","name":"ENC_BECH32M","nameLocation":"2544:11:46","nodeType":"VariableDeclaration","scope":12052,"src":"2528:40:46","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10680,"name":"uint32","nodeType":"ElementaryTypeName","src":"2528:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30783262633833306133","id":10681,"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":10699,"nodeType":"Block","src":"2696:66:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":10694,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10684,"src":"2740:4:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":10692,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2723:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10693,"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":10695,"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":10696,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10686,"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":10691,"name":"toBech32","nodeType":"Identifier","overloadedDeclarations":[10700,10732,10753,10811],"referencedDeclaration":10732,"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":10697,"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":10690,"id":10698,"nodeType":"Return","src":"2707:47:46"}]},"id":10700,"implemented":true,"kind":"function","modifiers":[],"name":"toBech32","nameLocation":"2588:8:46","nodeType":"FunctionDefinition","parameters":{"id":10687,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10684,"mutability":"mutable","name":"addr","nameLocation":"2615:4:46","nodeType":"VariableDeclaration","scope":10700,"src":"2607:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10683,"name":"address","nodeType":"ElementaryTypeName","src":"2607:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10686,"mutability":"mutable","name":"prefix","nameLocation":"2644:6:46","nodeType":"VariableDeclaration","scope":10700,"src":"2630:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10685,"name":"string","nodeType":"ElementaryTypeName","src":"2630:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2596:61:46"},"returnParameters":{"id":10690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10689,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10700,"src":"2681:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10688,"name":"string","nodeType":"ElementaryTypeName","src":"2681:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2680:15:46"},"scope":12052,"src":"2579:183:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10731,"nodeType":"Block","src":"2892:171:46","statements":[{"assignments":[10710],"declarations":[{"constant":false,"id":10710,"mutability":"mutable","name":"hrp","nameLocation":"2916:3:46","nodeType":"VariableDeclaration","scope":10731,"src":"2903:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10709,"name":"bytes","nodeType":"ElementaryTypeName","src":"2903:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10715,"initialValue":{"arguments":[{"id":10713,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10704,"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":10711,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"2922:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10712,"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":10714,"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":[10717],"declarations":[{"constant":false,"id":10717,"mutability":"mutable","name":"input","nameLocation":"2970:5:46","nodeType":"VariableDeclaration","scope":10731,"src":"2957:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10716,"name":"bytes","nodeType":"ElementaryTypeName","src":"2957:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10724,"initialValue":{"arguments":[{"id":10719,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10702,"src":"2990:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"38","id":10720,"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":10721,"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":10722,"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":10718,"name":"convertBits","nodeType":"Identifier","overloadedDeclarations":[11872,11894],"referencedDeclaration":11872,"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":10723,"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":10726,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10710,"src":"3032:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10727,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10717,"src":"3037:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10728,"name":"ENC_BECH32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10679,"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":10725,"name":"encode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11231,"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":10729,"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":10708,"id":10730,"nodeType":"Return","src":"3018:37:46"}]},"id":10732,"implemented":true,"kind":"function","modifiers":[],"name":"toBech32","nameLocation":"2779:8:46","nodeType":"FunctionDefinition","parameters":{"id":10705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10702,"mutability":"mutable","name":"data","nameLocation":"2811:4:46","nodeType":"VariableDeclaration","scope":10732,"src":"2798:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10701,"name":"bytes","nodeType":"ElementaryTypeName","src":"2798:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10704,"mutability":"mutable","name":"prefix","nameLocation":"2840:6:46","nodeType":"VariableDeclaration","scope":10732,"src":"2826:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10703,"name":"string","nodeType":"ElementaryTypeName","src":"2826:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2787:66:46"},"returnParameters":{"id":10708,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10707,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10732,"src":"2877:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10706,"name":"string","nodeType":"ElementaryTypeName","src":"2877:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"2876:15:46"},"scope":12052,"src":"2770:293:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10752,"nodeType":"Block","src":"3212:75:46","statements":[{"expression":{"arguments":[{"arguments":[{"id":10746,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10734,"src":"3256:4:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":10744,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3239:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10745,"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":10747,"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":10748,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10736,"src":"3263:6:46","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"id":10749,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10738,"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":10743,"name":"toBech32","nodeType":"Identifier","overloadedDeclarations":[10700,10732,10753,10811],"referencedDeclaration":10811,"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":10750,"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":10742,"id":10751,"nodeType":"Return","src":"3223:56:46"}]},"id":10753,"implemented":true,"kind":"function","modifiers":[],"name":"toBech32","nameLocation":"3080:8:46","nodeType":"FunctionDefinition","parameters":{"id":10739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10734,"mutability":"mutable","name":"addr","nameLocation":"3107:4:46","nodeType":"VariableDeclaration","scope":10753,"src":"3099:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10733,"name":"address","nodeType":"ElementaryTypeName","src":"3099:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":10736,"mutability":"mutable","name":"prefix","nameLocation":"3136:6:46","nodeType":"VariableDeclaration","scope":10753,"src":"3122:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10735,"name":"string","nodeType":"ElementaryTypeName","src":"3122:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10738,"mutability":"mutable","name":"version","nameLocation":"3159:7:46","nodeType":"VariableDeclaration","scope":10753,"src":"3153:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10737,"name":"uint8","nodeType":"ElementaryTypeName","src":"3153:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"3088:85:46"},"returnParameters":{"id":10742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10741,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10753,"src":"3197:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10740,"name":"string","nodeType":"ElementaryTypeName","src":"3197:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3196:15:46"},"scope":12052,"src":"3071:216:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10810,"nodeType":"Block","src":"3441:351:46","statements":[{"assignments":[10765],"declarations":[{"constant":false,"id":10765,"mutability":"mutable","name":"hrp","nameLocation":"3465:3:46","nodeType":"VariableDeclaration","scope":10810,"src":"3452:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10764,"name":"bytes","nodeType":"ElementaryTypeName","src":"3452:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10770,"initialValue":{"arguments":[{"id":10768,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10757,"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":10766,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3471:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10767,"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":10769,"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":[10772],"declarations":[{"constant":false,"id":10772,"mutability":"mutable","name":"input","nameLocation":"3519:5:46","nodeType":"VariableDeclaration","scope":10810,"src":"3506:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10771,"name":"bytes","nodeType":"ElementaryTypeName","src":"3506:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10779,"initialValue":{"arguments":[{"id":10774,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10755,"src":"3539:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"38","id":10775,"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":10776,"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":10777,"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":10773,"name":"convertBits","nodeType":"Identifier","overloadedDeclarations":[11872,11894],"referencedDeclaration":11872,"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":10778,"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":[10781],"declarations":[{"constant":false,"id":10781,"mutability":"mutable","name":"enc","nameLocation":"3574:3:46","nodeType":"VariableDeclaration","scope":10810,"src":"3567:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10780,"name":"uint32","nodeType":"ElementaryTypeName","src":"3567:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":10783,"initialValue":{"id":10782,"name":"ENC_BECH32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10679,"src":"3580:10:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"VariableDeclarationStatement","src":"3567:23:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":10786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10784,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10759,"src":"3605:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":10785,"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":10792,"nodeType":"IfStatement","src":"3601:61:46","trueBody":{"id":10791,"nodeType":"Block","src":"3618:44:46","statements":[{"expression":{"id":10789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":10787,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10781,"src":"3633:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":10788,"name":"ENC_BECH32M","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10682,"src":"3639:11:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"3633:17:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":10790,"nodeType":"ExpressionStatement","src":"3633:17:46"}]}},{"assignments":[10794],"declarations":[{"constant":false,"id":10794,"mutability":"mutable","name":"inputWithV","nameLocation":"3685:10:46","nodeType":"VariableDeclaration","scope":10810,"src":"3672:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10793,"name":"bytes","nodeType":"ElementaryTypeName","src":"3672:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10803,"initialValue":{"arguments":[{"arguments":[{"id":10799,"name":"version","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10759,"src":"3722:7:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":10798,"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":10797,"name":"bytes1","nodeType":"ElementaryTypeName","src":"3715:6:46","typeDescriptions":{}}},"id":10800,"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":10801,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10772,"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":10795,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3698:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10796,"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":10802,"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":10805,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10765,"src":"3763:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10806,"name":"inputWithV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10794,"src":"3768:10:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":10807,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10781,"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":10804,"name":"encode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11231,"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":10808,"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":10763,"id":10809,"nodeType":"Return","src":"3749:35:46"}]},"id":10811,"implemented":true,"kind":"function","modifiers":[],"name":"toBech32","nameLocation":"3304:8:46","nodeType":"FunctionDefinition","parameters":{"id":10760,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10755,"mutability":"mutable","name":"data","nameLocation":"3336:4:46","nodeType":"VariableDeclaration","scope":10811,"src":"3323:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10754,"name":"bytes","nodeType":"ElementaryTypeName","src":"3323:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10757,"mutability":"mutable","name":"prefix","nameLocation":"3365:6:46","nodeType":"VariableDeclaration","scope":10811,"src":"3351:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10756,"name":"string","nodeType":"ElementaryTypeName","src":"3351:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10759,"mutability":"mutable","name":"version","nameLocation":"3388:7:46","nodeType":"VariableDeclaration","scope":10811,"src":"3382:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10758,"name":"uint8","nodeType":"ElementaryTypeName","src":"3382:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"3312:90:46"},"returnParameters":{"id":10763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10762,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10811,"src":"3426:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10761,"name":"string","nodeType":"ElementaryTypeName","src":"3426:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3425:15:46"},"scope":12052,"src":"3295:497:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10844,"nodeType":"Block","src":"3892:234:46","statements":[{"assignments":[null,10822],"declarations":[null,{"constant":false,"id":10822,"mutability":"mutable","name":"data","nameLocation":"3921:4:46","nodeType":"VariableDeclaration","scope":10844,"src":"3906:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":10820,"name":"uint8","nodeType":"ElementaryTypeName","src":"3906:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":10821,"nodeType":"ArrayTypeName","src":"3906:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":10830,"initialValue":{"arguments":[{"arguments":[{"id":10826,"name":"bechAddr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10813,"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":10824,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"3950:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10825,"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":10827,"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":10828,"name":"ENC_BECH32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10679,"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":10823,"name":"decode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11421,"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":10829,"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":[10832],"declarations":[{"constant":false,"id":10832,"mutability":"mutable","name":"input","nameLocation":"4036:5:46","nodeType":"VariableDeclaration","scope":10844,"src":"4023:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10831,"name":"bytes","nodeType":"ElementaryTypeName","src":"4023:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10839,"initialValue":{"arguments":[{"id":10834,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10822,"src":"4056:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"hexValue":"35","id":10835,"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":10836,"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":10837,"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":10833,"name":"convertBits","nodeType":"Identifier","overloadedDeclarations":[11872,11894],"referencedDeclaration":11894,"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":10838,"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":10841,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10832,"src":"4112:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":10840,"name":"getAddressFromBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11070,"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":10842,"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":10817,"id":10843,"nodeType":"Return","src":"4085:33:46"}]},"id":10845,"implemented":true,"kind":"function","modifiers":[],"name":"fromBech32","nameLocation":"3809:10:46","nodeType":"FunctionDefinition","parameters":{"id":10814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10813,"mutability":"mutable","name":"bechAddr","nameLocation":"3844:8:46","nodeType":"VariableDeclaration","scope":10845,"src":"3830:22:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10812,"name":"string","nodeType":"ElementaryTypeName","src":"3830:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3819:40:46"},"returnParameters":{"id":10817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10816,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10845,"src":"3883:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10815,"name":"address","nodeType":"ElementaryTypeName","src":"3883:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"3882:9:46"},"scope":12052,"src":"3800:326:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":10888,"nodeType":"Block","src":"4257:310:46","statements":[{"assignments":[10855,10858],"declarations":[{"constant":false,"id":10855,"mutability":"mutable","name":"dHrp","nameLocation":"4282:4:46","nodeType":"VariableDeclaration","scope":10888,"src":"4269:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10854,"name":"bytes","nodeType":"ElementaryTypeName","src":"4269:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10858,"mutability":"mutable","name":"data","nameLocation":"4303:4:46","nodeType":"VariableDeclaration","scope":10888,"src":"4288:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":10856,"name":"uint8","nodeType":"ElementaryTypeName","src":"4288:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":10857,"nodeType":"ArrayTypeName","src":"4288:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":10866,"initialValue":{"arguments":[{"arguments":[{"id":10862,"name":"bechAddr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10847,"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":10860,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4332:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10861,"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":10863,"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":10864,"name":"ENC_BECH32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10679,"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":10859,"name":"decode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11421,"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":10865,"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":10870,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10849,"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":10868,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4422:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10869,"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":10871,"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":10872,"name":"dHrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10855,"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":10867,"name":"_requireHrpMatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11048,"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":10873,"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":10874,"nodeType":"ExpressionStatement","src":"4405:48:46"},{"assignments":[10876],"declarations":[{"constant":false,"id":10876,"mutability":"mutable","name":"input","nameLocation":"4477:5:46","nodeType":"VariableDeclaration","scope":10888,"src":"4464:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10875,"name":"bytes","nodeType":"ElementaryTypeName","src":"4464:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10883,"initialValue":{"arguments":[{"id":10878,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10858,"src":"4497:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"hexValue":"35","id":10879,"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":10880,"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":10881,"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":10877,"name":"convertBits","nodeType":"Identifier","overloadedDeclarations":[11872,11894],"referencedDeclaration":11894,"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":10882,"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":10885,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10876,"src":"4553:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":10884,"name":"getAddressFromBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11070,"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":10886,"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":10853,"id":10887,"nodeType":"Return","src":"4526:33:46"}]},"id":10889,"implemented":true,"kind":"function","modifiers":[],"name":"fromBech32","nameLocation":"4143:10:46","nodeType":"FunctionDefinition","parameters":{"id":10850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10847,"mutability":"mutable","name":"bechAddr","nameLocation":"4178:8:46","nodeType":"VariableDeclaration","scope":10889,"src":"4164:22:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10846,"name":"string","nodeType":"ElementaryTypeName","src":"4164:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10849,"mutability":"mutable","name":"prefix","nameLocation":"4211:6:46","nodeType":"VariableDeclaration","scope":10889,"src":"4197:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10848,"name":"string","nodeType":"ElementaryTypeName","src":"4197:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"4153:71:46"},"returnParameters":{"id":10853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10852,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":10889,"src":"4248:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":10851,"name":"address","nodeType":"ElementaryTypeName","src":"4248:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"4247:9:46"},"scope":12052,"src":"4134:433:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11028,"nodeType":"Block","src":"4742:829:46","statements":[{"assignments":[10903,10906],"declarations":[{"constant":false,"id":10903,"mutability":"mutable","name":"dHrp","nameLocation":"4767:4:46","nodeType":"VariableDeclaration","scope":11028,"src":"4754:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10902,"name":"bytes","nodeType":"ElementaryTypeName","src":"4754:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":10906,"mutability":"mutable","name":"data","nameLocation":"4788:4:46","nodeType":"VariableDeclaration","scope":11028,"src":"4773:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":10904,"name":"uint8","nodeType":"ElementaryTypeName","src":"4773:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":10905,"nodeType":"ArrayTypeName","src":"4773:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":10914,"initialValue":{"arguments":[{"arguments":[{"id":10910,"name":"bechAddr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10891,"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":10908,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4817:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10909,"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":10911,"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":10912,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10895,"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":10907,"name":"decode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11421,"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":10913,"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":10918,"name":"prefix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10893,"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":10916,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"4900:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":10917,"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":10919,"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":10920,"name":"dHrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10903,"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":10915,"name":"_requireHrpMatch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11048,"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":10921,"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":10922,"nodeType":"ExpressionStatement","src":"4883:48:46"},{"expression":{"arguments":[{"id":10935,"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":10933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10924,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10906,"src":"4952:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":10925,"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":10926,"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":10932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":10928,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10906,"src":"4971:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":10930,"indexExpression":{"hexValue":"30","id":10929,"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":10931,"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":10934,"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":10936,"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":10923,"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":10937,"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":10938,"nodeType":"ExpressionStatement","src":"4942:68:46"},{"assignments":[10943],"declarations":[{"constant":false,"id":10943,"mutability":"mutable","name":"dataNoV","nameLocation":"5036:7:46","nodeType":"VariableDeclaration","scope":11028,"src":"5021:22:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":10941,"name":"uint8","nodeType":"ElementaryTypeName","src":"5021:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":10942,"nodeType":"ArrayTypeName","src":"5021:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":10952,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10947,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10906,"src":"5058:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":10948,"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":10949,"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":10946,"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":10944,"name":"uint8","nodeType":"ElementaryTypeName","src":"5050:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":10945,"nodeType":"ArrayTypeName","src":"5050:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}}},"id":10951,"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":10974,"nodeType":"Block","src":"5125:51:46","statements":[{"expression":{"id":10972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":10964,"name":"dataNoV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10943,"src":"5140:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":10968,"indexExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":10967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10965,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10954,"src":"5148:1:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":10966,"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":10969,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10906,"src":"5157:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":10971,"indexExpression":{"id":10970,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10954,"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":10973,"nodeType":"ExpressionStatement","src":"5140:24:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10960,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":10957,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10954,"src":"5103:1:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":10958,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10906,"src":"5107:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":10959,"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":10975,"initializationExpression":{"assignments":[10954],"declarations":[{"constant":false,"id":10954,"mutability":"mutable","name":"i","nameLocation":"5096:1:46","nodeType":"VariableDeclaration","scope":10975,"src":"5090:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10953,"name":"uint8","nodeType":"ElementaryTypeName","src":"5090:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":10956,"initialValue":{"hexValue":"31","id":10955,"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":10962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"5120:3:46","subExpression":{"id":10961,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10954,"src":"5122:1:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":10963,"nodeType":"ExpressionStatement","src":"5120:3:46"},"nodeType":"ForStatement","src":"5085:91:46"},{"assignments":[10977],"declarations":[{"constant":false,"id":10977,"mutability":"mutable","name":"input","nameLocation":"5199:5:46","nodeType":"VariableDeclaration","scope":11028,"src":"5186:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10976,"name":"bytes","nodeType":"ElementaryTypeName","src":"5186:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":10984,"initialValue":{"arguments":[{"id":10979,"name":"dataNoV","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10943,"src":"5219:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"hexValue":"35","id":10980,"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":10981,"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":10982,"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":10978,"name":"convertBits","nodeType":"Identifier","overloadedDeclarations":[11872,11894],"referencedDeclaration":11894,"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":10983,"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":10994,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":10989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10986,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10977,"src":"5273:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10987,"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":10988,"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":10993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":10990,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10977,"src":"5294:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":10991,"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":10992,"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":10995,"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":10985,"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":10996,"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":10997,"nodeType":"ExpressionStatement","src":"5251:114:46"},{"expression":{"arguments":[{"id":11015,"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":11013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":10999,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10906,"src":"5400:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11001,"indexExpression":{"hexValue":"30","id":11000,"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":11002,"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":11007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11004,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10977,"src":"5416:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11005,"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":11006,"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":11012,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11009,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10977,"src":"5438:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11010,"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":11011,"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":11014,"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":11016,"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":10998,"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":11017,"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":11018,"nodeType":"ExpressionStatement","src":"5376:146:46"},{"expression":{"components":[{"arguments":[{"baseExpression":{"id":11021,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10906,"src":"5547:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11023,"indexExpression":{"hexValue":"30","id":11022,"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":11020,"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":11019,"name":"uint8","nodeType":"ElementaryTypeName","src":"5541:5:46","typeDescriptions":{}}},"id":11024,"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":11025,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10977,"src":"5557:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"id":11026,"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":10901,"id":11027,"nodeType":"Return","src":"5533:30:46"}]},"id":11029,"implemented":true,"kind":"function","modifiers":[],"name":"fromBech32WithVersion","nameLocation":"4584:21:46","nodeType":"FunctionDefinition","parameters":{"id":10896,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10891,"mutability":"mutable","name":"bechAddr","nameLocation":"4630:8:46","nodeType":"VariableDeclaration","scope":11029,"src":"4616:22:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10890,"name":"string","nodeType":"ElementaryTypeName","src":"4616:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10893,"mutability":"mutable","name":"prefix","nameLocation":"4663:6:46","nodeType":"VariableDeclaration","scope":11029,"src":"4649:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":10892,"name":"string","nodeType":"ElementaryTypeName","src":"4649:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":10895,"mutability":"mutable","name":"enc","nameLocation":"4687:3:46","nodeType":"VariableDeclaration","scope":11029,"src":"4680:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":10894,"name":"uint32","nodeType":"ElementaryTypeName","src":"4680:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"4605:92:46"},"returnParameters":{"id":10901,"nodeType":"ParameterList","parameters":[{"constant":false,"id":10898,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11029,"src":"4721:5:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":10897,"name":"uint8","nodeType":"ElementaryTypeName","src":"4721:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":10900,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11029,"src":"4728:12:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":10899,"name":"bytes","nodeType":"ElementaryTypeName","src":"4728:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4720:21:46"},"scope":12052,"src":"4575:996:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11047,"nodeType":"Block","src":"5682:86:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":11043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11038,"name":"hrp1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11031,"src":"5711:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11037,"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":11039,"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":11041,"name":"hrp2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11033,"src":"5730:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11040,"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":11042,"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":11044,"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":11036,"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":11045,"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":11046,"nodeType":"ExpressionStatement","src":"5693:67:46"}]},"id":11048,"implemented":true,"kind":"function","modifiers":[],"name":"_requireHrpMatch","nameLocation":"5588:16:46","nodeType":"FunctionDefinition","parameters":{"id":11034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11031,"mutability":"mutable","name":"hrp1","nameLocation":"5628:4:46","nodeType":"VariableDeclaration","scope":11048,"src":"5615:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11030,"name":"bytes","nodeType":"ElementaryTypeName","src":"5615:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11033,"mutability":"mutable","name":"hrp2","nameLocation":"5656:4:46","nodeType":"VariableDeclaration","scope":11048,"src":"5643:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11032,"name":"bytes","nodeType":"ElementaryTypeName","src":"5643:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5604:63:46"},"returnParameters":{"id":11035,"nodeType":"ParameterList","parameters":[],"src":"5682:0:46"},"scope":12052,"src":"5579:189:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11069,"nodeType":"Block","src":"5872:196:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11056,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11050,"src":"5891:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11057,"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":11058,"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":11060,"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":11055,"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":11061,"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":11062,"nodeType":"ExpressionStatement","src":"5883:57:46"},{"assignments":[11064],"declarations":[{"constant":false,"id":11064,"mutability":"mutable","name":"addr","nameLocation":"5961:4:46","nodeType":"VariableDeclaration","scope":11069,"src":"5953:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11063,"name":"address","nodeType":"ElementaryTypeName","src":"5953:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":11065,"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":"shanghai","externalReferences":[{"declaration":11064,"isOffset":false,"isSlot":false,"src":"6000:4:46","valueSize":1},{"declaration":11050,"isOffset":false,"isSlot":false,"src":"6018:4:46","valueSize":1}],"id":11066,"nodeType":"InlineAssembly","src":"5976:63:46"},{"expression":{"id":11067,"name":"addr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11064,"src":"6056:4:46","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":11054,"id":11068,"nodeType":"Return","src":"6049:11:46"}]},"id":11070,"implemented":true,"kind":"function","modifiers":[],"name":"getAddressFromBytes","nameLocation":"5785:19:46","nodeType":"FunctionDefinition","parameters":{"id":11051,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11050,"mutability":"mutable","name":"data","nameLocation":"5828:4:46","nodeType":"VariableDeclaration","scope":11070,"src":"5815:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11049,"name":"bytes","nodeType":"ElementaryTypeName","src":"5815:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5804:35:46"},"returnParameters":{"id":11054,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11053,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11070,"src":"5863:7:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":11052,"name":"address","nodeType":"ElementaryTypeName","src":"5863:7:46","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"5862:9:46"},"scope":12052,"src":"5776:292:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11230,"nodeType":"Block","src":"6214:960:46","statements":[{"id":11229,"nodeType":"UncheckedBlock","src":"6225:942:46","statements":[{"assignments":[11085],"declarations":[{"constant":false,"id":11085,"mutability":"mutable","name":"checksum","nameLocation":"6265:8:46","nodeType":"VariableDeclaration","scope":11229,"src":"6250:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11083,"name":"uint8","nodeType":"ElementaryTypeName","src":"6250:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11084,"nodeType":"ArrayTypeName","src":"6250:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":11091,"initialValue":{"arguments":[{"id":11087,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11072,"src":"6291:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":11088,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11074,"src":"6296:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":11089,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11076,"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":11086,"name":"createChecksum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11722,"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":11090,"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":[11093],"declarations":[{"constant":false,"id":11093,"mutability":"mutable","name":"result","nameLocation":"6335:6:46","nodeType":"VariableDeclaration","scope":11229,"src":"6322:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11092,"name":"bytes","nodeType":"ElementaryTypeName","src":"6322:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":11107,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11096,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11072,"src":"6354:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11097,"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":11098,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11074,"src":"6367:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11099,"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":11101,"name":"checksum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11085,"src":"6382:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11102,"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":11104,"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":11095,"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":11094,"name":"bytes","nodeType":"ElementaryTypeName","src":"6348:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":11106,"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":11126,"nodeType":"Block","src":"6452:53:46","statements":[{"expression":{"id":11124,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11118,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11093,"src":"6471:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11120,"indexExpression":{"id":11119,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11109,"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":11121,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11072,"src":"6483:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11123,"indexExpression":{"id":11122,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11109,"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":11125,"nodeType":"ExpressionStatement","src":"6471:18:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11111,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11109,"src":"6430:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11112,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11072,"src":"6434:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11113,"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":11127,"initializationExpression":{"assignments":[11109],"declarations":[{"constant":false,"id":11109,"mutability":"mutable","name":"i","nameLocation":"6427:1:46","nodeType":"VariableDeclaration","scope":11127,"src":"6422:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11108,"name":"uint","nodeType":"ElementaryTypeName","src":"6422:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11110,"nodeType":"VariableDeclarationStatement","src":"6422:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6446:4:46","subExpression":{"id":11115,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11109,"src":"6449:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11117,"nodeType":"ExpressionStatement","src":"6446:4:46"},"nodeType":"ForStatement","src":"6417:88:46"},{"expression":{"id":11136,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11128,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11093,"src":"6519:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11131,"indexExpression":{"expression":{"id":11129,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11072,"src":"6526:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11130,"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":11134,"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":11133,"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":11132,"name":"bytes1","nodeType":"ElementaryTypeName","src":"6540:6:46","typeDescriptions":{}}},"id":11135,"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":11137,"nodeType":"ExpressionStatement","src":"6519:32:46"},{"assignments":[11139],"declarations":[{"constant":false,"id":11139,"mutability":"mutable","name":"offset","nameLocation":"6571:6:46","nodeType":"VariableDeclaration","scope":11229,"src":"6566:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11138,"name":"uint","nodeType":"ElementaryTypeName","src":"6566:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11144,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11140,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11072,"src":"6580:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11141,"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":11142,"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":11180,"nodeType":"Block","src":"6646:190:46","statements":[{"assignments":[11156],"declarations":[{"constant":false,"id":11156,"mutability":"mutable","name":"_data","nameLocation":"6671:5:46","nodeType":"VariableDeclaration","scope":11180,"src":"6665:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11155,"name":"uint8","nodeType":"ElementaryTypeName","src":"6665:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":11163,"initialValue":{"arguments":[{"baseExpression":{"id":11159,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11074,"src":"6685:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11161,"indexExpression":{"id":11160,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11146,"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":11158,"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":11157,"name":"uint8","nodeType":"ElementaryTypeName","src":"6679:5:46","typeDescriptions":{}}},"id":11162,"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":11167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11164,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11156,"src":"6717:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11165,"name":"ALPHABET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10670,"src":"6725:8:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11166,"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":11179,"nodeType":"IfStatement","src":"6713:108:46","trueBody":{"id":11178,"nodeType":"Block","src":"6742:79:46","statements":[{"expression":{"id":11176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11168,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11093,"src":"6765:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11172,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11169,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11146,"src":"6772:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11170,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11139,"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":11173,"name":"ALPHABET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10670,"src":"6786:8:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11175,"indexExpression":{"id":11174,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11156,"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":11177,"nodeType":"ExpressionStatement","src":"6765:36:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11148,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11146,"src":"6622:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11149,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11074,"src":"6626:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11150,"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":11181,"initializationExpression":{"assignments":[11146],"declarations":[{"constant":false,"id":11146,"mutability":"mutable","name":"i","nameLocation":"6619:1:46","nodeType":"VariableDeclaration","scope":11181,"src":"6614:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11145,"name":"uint","nodeType":"ElementaryTypeName","src":"6614:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11147,"nodeType":"VariableDeclarationStatement","src":"6614:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6640:4:46","subExpression":{"id":11152,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11146,"src":"6643:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11154,"nodeType":"ExpressionStatement","src":"6640:4:46"},"nodeType":"ForStatement","src":"6609:227:46"},{"expression":{"id":11185,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11182,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11139,"src":"6850:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"id":11183,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11074,"src":"6860:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11184,"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":11186,"nodeType":"ExpressionStatement","src":"6850:22:46"},{"body":{"id":11222,"nodeType":"Block","src":"6927:193:46","statements":[{"assignments":[11198],"declarations":[{"constant":false,"id":11198,"mutability":"mutable","name":"_data","nameLocation":"6952:5:46","nodeType":"VariableDeclaration","scope":11222,"src":"6946:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11197,"name":"uint8","nodeType":"ElementaryTypeName","src":"6946:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":11205,"initialValue":{"arguments":[{"baseExpression":{"id":11201,"name":"checksum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11085,"src":"6966:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11203,"indexExpression":{"id":11202,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11188,"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":11200,"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":11199,"name":"uint8","nodeType":"ElementaryTypeName","src":"6960:5:46","typeDescriptions":{}}},"id":11204,"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":11209,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11206,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11198,"src":"7001:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11207,"name":"ALPHABET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10670,"src":"7009:8:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11208,"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":11221,"nodeType":"IfStatement","src":"6997:108:46","trueBody":{"id":11220,"nodeType":"Block","src":"7026:79:46","statements":[{"expression":{"id":11218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11210,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11093,"src":"7049:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11214,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11211,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11188,"src":"7056:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11212,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11139,"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":11215,"name":"ALPHABET","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10670,"src":"7070:8:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11217,"indexExpression":{"id":11216,"name":"_data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11198,"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":11219,"nodeType":"ExpressionStatement","src":"7049:36:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11190,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11188,"src":"6900:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11191,"name":"checksum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11085,"src":"6904:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11192,"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":11223,"initializationExpression":{"assignments":[11188],"declarations":[{"constant":false,"id":11188,"mutability":"mutable","name":"i","nameLocation":"6897:1:46","nodeType":"VariableDeclaration","scope":11223,"src":"6892:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11187,"name":"uint","nodeType":"ElementaryTypeName","src":"6892:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11189,"nodeType":"VariableDeclarationStatement","src":"6892:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"6921:4:46","subExpression":{"id":11194,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11188,"src":"6924:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11196,"nodeType":"ExpressionStatement","src":"6921:4:46"},"nodeType":"ForStatement","src":"6887:233:46"},{"expression":{"arguments":[{"id":11226,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11093,"src":"7148:6:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11225,"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":11224,"name":"string","nodeType":"ElementaryTypeName","src":"7141:6:46","typeDescriptions":{}}},"id":11227,"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":11080,"id":11228,"nodeType":"Return","src":"7134:21:46"}]}]},"id":11231,"implemented":true,"kind":"function","modifiers":[],"name":"encode","nameLocation":"6085:6:46","nodeType":"FunctionDefinition","parameters":{"id":11077,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11072,"mutability":"mutable","name":"hrp","nameLocation":"6115:3:46","nodeType":"VariableDeclaration","scope":11231,"src":"6102:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11071,"name":"bytes","nodeType":"ElementaryTypeName","src":"6102:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11074,"mutability":"mutable","name":"input","nameLocation":"6142:5:46","nodeType":"VariableDeclaration","scope":11231,"src":"6129:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11073,"name":"bytes","nodeType":"ElementaryTypeName","src":"6129:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11076,"mutability":"mutable","name":"enc","nameLocation":"6165:3:46","nodeType":"VariableDeclaration","scope":11231,"src":"6158:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11075,"name":"uint32","nodeType":"ElementaryTypeName","src":"6158:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"6091:84:46"},"returnParameters":{"id":11080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11079,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11231,"src":"6199:13:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":11078,"name":"string","nodeType":"ElementaryTypeName","src":"6199:6:46","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"6198:15:46"},"scope":12052,"src":"6076:1098:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11420,"nodeType":"Block","src":"7319:1539:46","statements":[{"id":11419,"nodeType":"UncheckedBlock","src":"7330:1521:46","statements":[{"assignments":[11244],"declarations":[{"constant":false,"id":11244,"mutability":"mutable","name":"pos","nameLocation":"7360:3:46","nodeType":"VariableDeclaration","scope":11419,"src":"7355:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11243,"name":"uint","nodeType":"ElementaryTypeName","src":"7355:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11245,"nodeType":"VariableDeclarationStatement","src":"7355:8:46"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11247,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11233,"src":"7404:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11248,"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":11249,"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":11251,"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":11246,"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":11252,"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":11253,"nodeType":"ExpressionStatement","src":"7378:112:46"},{"body":{"id":11318,"nodeType":"Block","src":"7548:573:46","statements":[{"assignments":[11266],"declarations":[{"constant":false,"id":11266,"mutability":"mutable","name":"charAt","nameLocation":"7573:6:46","nodeType":"VariableDeclaration","scope":11318,"src":"7567:12:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11265,"name":"uint8","nodeType":"ElementaryTypeName","src":"7567:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":11273,"initialValue":{"arguments":[{"baseExpression":{"id":11269,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11233,"src":"7588:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11271,"indexExpression":{"id":11270,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11255,"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":11268,"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":11267,"name":"uint8","nodeType":"ElementaryTypeName","src":"7582:5:46","typeDescriptions":{}}},"id":11272,"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":11281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11277,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11275,"name":"charAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11266,"src":"7648:6:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3333","id":11276,"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":11280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11278,"name":"charAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11266,"src":"7690:6:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"313236","id":11279,"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":11282,"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":11274,"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":11283,"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":11284,"nodeType":"ExpressionStatement","src":"7618:148:46"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11293,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11285,"name":"charAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11266,"src":"7789:6:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"hexValue":"31","id":11290,"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":11289,"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":11288,"name":"bytes1","nodeType":"ElementaryTypeName","src":"7805:6:46","typeDescriptions":{}}},"id":11291,"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":11287,"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":11286,"name":"uint8","nodeType":"ElementaryTypeName","src":"7799:5:46","typeDescriptions":{}}},"id":11292,"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":11317,"nodeType":"IfStatement","src":"7785:321:46","trueBody":{"id":11316,"nodeType":"Block","src":"7819:287:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":11301,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11297,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11295,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11244,"src":"7876:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":11296,"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":11300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11298,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11255,"src":"7918:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"31","id":11299,"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":11307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11304,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11302,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11255,"src":"7958:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"37","id":11303,"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":11305,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11233,"src":"7967:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11306,"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":11309,"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":11294,"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":11310,"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":11311,"nodeType":"ExpressionStatement","src":"7842:214:46"},{"expression":{"id":11314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11312,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11244,"src":"8079:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":11313,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11255,"src":"8085:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8079:7:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11315,"nodeType":"ExpressionStatement","src":"8079:7:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11258,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11255,"src":"7522:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11259,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11233,"src":"7526:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11260,"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":11319,"initializationExpression":{"assignments":[11255],"declarations":[{"constant":false,"id":11255,"mutability":"mutable","name":"p","nameLocation":"7515:1:46","nodeType":"VariableDeclaration","scope":11319,"src":"7510:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11254,"name":"uint","nodeType":"ElementaryTypeName","src":"7510:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11257,"initialValue":{"hexValue":"30","id":11256,"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":11263,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"7542:4:46","subExpression":{"id":11262,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11255,"src":"7545:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11264,"nodeType":"ExpressionStatement","src":"7542:4:46"},"nodeType":"ForStatement","src":"7505:616:46"},{"expression":{"id":11325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11320,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11238,"src":"8135:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11323,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11244,"src":"8151:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":11322,"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":11321,"name":"bytes","nodeType":"ElementaryTypeName","src":"8145:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":11324,"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":11326,"nodeType":"ExpressionStatement","src":"8135:20:46"},{"body":{"id":11344,"nodeType":"Block","src":"8198:55:46","statements":[{"expression":{"id":11342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11336,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11238,"src":"8217:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11338,"indexExpression":{"id":11337,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11328,"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":11339,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11233,"src":"8226:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11341,"indexExpression":{"id":11340,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11328,"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":11343,"nodeType":"ExpressionStatement","src":"8217:19:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11332,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11330,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11328,"src":"8183:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":11331,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11244,"src":"8187:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8183:7:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11345,"initializationExpression":{"assignments":[11328],"declarations":[{"constant":false,"id":11328,"mutability":"mutable","name":"i","nameLocation":"8180:1:46","nodeType":"VariableDeclaration","scope":11345,"src":"8175:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11327,"name":"uint","nodeType":"ElementaryTypeName","src":"8175:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11329,"nodeType":"VariableDeclarationStatement","src":"8175:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11334,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"8192:4:46","subExpression":{"id":11333,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11328,"src":"8195:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11335,"nodeType":"ExpressionStatement","src":"8192:4:46"},"nodeType":"ForStatement","src":"8170:83:46"},{"expression":{"id":11357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11346,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"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":11355,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11350,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11233,"src":"8286:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11351,"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":11352,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11244,"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":11354,"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":11349,"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":11347,"name":"uint8","nodeType":"ElementaryTypeName","src":"8278:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11348,"nodeType":"ArrayTypeName","src":"8278:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}}},"id":11356,"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":11358,"nodeType":"ExpressionStatement","src":"8267:44:46"},{"body":{"id":11400,"nodeType":"Block","src":"8362:219:46","statements":[{"assignments":[11370],"declarations":[{"constant":false,"id":11370,"mutability":"mutable","name":"charAt","nameLocation":"8388:6:46","nodeType":"VariableDeclaration","scope":11400,"src":"8381:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":11369,"name":"bytes1","nodeType":"ElementaryTypeName","src":"8381:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"id":11383,"initialValue":{"baseExpression":{"id":11371,"name":"ALPHABET_REV_LOWER_ONLY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":10676,"src":"8397:23:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11382,"indexExpression":{"arguments":[{"baseExpression":{"id":11374,"name":"bechStr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11233,"src":"8427:7:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11380,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11379,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11375,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11360,"src":"8435:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":11376,"name":"pos","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11244,"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":11378,"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":11373,"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":11372,"name":"uint8","nodeType":"ElementaryTypeName","src":"8421:5:46","typeDescriptions":{}}},"id":11381,"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":11387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11385,"name":"charAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11370,"src":"8476:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30786666","id":11386,"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":11388,"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":11384,"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":11389,"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":11390,"nodeType":"ExpressionStatement","src":"8468:55:46"},{"expression":{"id":11398,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11391,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"src":"8542:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11393,"indexExpression":{"id":11392,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11360,"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":11396,"name":"charAt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11370,"src":"8558:6:46","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"}],"id":11395,"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":11394,"name":"uint8","nodeType":"ElementaryTypeName","src":"8552:5:46","typeDescriptions":{}}},"id":11397,"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":11399,"nodeType":"ExpressionStatement","src":"8542:23:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11362,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11360,"src":"8339:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11363,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"src":"8343:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11364,"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":11401,"initializationExpression":{"assignments":[11360],"declarations":[{"constant":false,"id":11360,"mutability":"mutable","name":"i","nameLocation":"8336:1:46","nodeType":"VariableDeclaration","scope":11401,"src":"8331:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11359,"name":"uint","nodeType":"ElementaryTypeName","src":"8331:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11361,"nodeType":"VariableDeclarationStatement","src":"8331:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11367,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"8356:4:46","subExpression":{"id":11366,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11360,"src":"8359:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11368,"nodeType":"ExpressionStatement","src":"8356:4:46"},"nodeType":"ForStatement","src":"8326:255:46"},{"expression":{"arguments":[{"arguments":[{"id":11404,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11238,"src":"8636:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":11405,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"src":"8641:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"id":11406,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11235,"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":11403,"name":"verifyChecksum","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11815,"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":11407,"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":11408,"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":11402,"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":11409,"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":11410,"nodeType":"ExpressionStatement","src":"8595:115:46"},{"assignments":[11412],"declarations":[{"constant":false,"id":11412,"mutability":"mutable","name":"dataLength","nameLocation":"8730:10:46","nodeType":"VariableDeclaration","scope":11419,"src":"8725:15:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11411,"name":"uint","nodeType":"ElementaryTypeName","src":"8725:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11417,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11416,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11413,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11241,"src":"8743:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11414,"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":11415,"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":"shanghai","externalReferences":[{"declaration":11241,"isOffset":false,"isSlot":false,"src":"8808:4:46","valueSize":1},{"declaration":11412,"isOffset":false,"isSlot":false,"src":"8814:10:46","valueSize":1}],"id":11418,"nodeType":"InlineAssembly","src":"8773:67:46"}]}]},"id":11421,"implemented":true,"kind":"function","modifiers":[],"name":"decode","nameLocation":"7191:6:46","nodeType":"FunctionDefinition","parameters":{"id":11236,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11233,"mutability":"mutable","name":"bechStr","nameLocation":"7211:7:46","nodeType":"VariableDeclaration","scope":11421,"src":"7198:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11232,"name":"bytes","nodeType":"ElementaryTypeName","src":"7198:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11235,"mutability":"mutable","name":"enc","nameLocation":"7227:3:46","nodeType":"VariableDeclaration","scope":11421,"src":"7220:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11234,"name":"uint32","nodeType":"ElementaryTypeName","src":"7220:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"7197:34:46"},"returnParameters":{"id":11242,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11238,"mutability":"mutable","name":"hrp","nameLocation":"7288:3:46","nodeType":"VariableDeclaration","scope":11421,"src":"7275:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11237,"name":"bytes","nodeType":"ElementaryTypeName","src":"7275:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11241,"mutability":"mutable","name":"data","nameLocation":"7308:4:46","nodeType":"VariableDeclaration","scope":11421,"src":"7293:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11239,"name":"uint8","nodeType":"ElementaryTypeName","src":"7293:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11240,"nodeType":"ArrayTypeName","src":"7293:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"src":"7274:39:46"},"scope":12052,"src":"7182:1676:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11487,"nodeType":"Block","src":"8962:275:46","statements":[{"id":11486,"nodeType":"UncheckedBlock","src":"8973:257:46","statements":[{"expression":{"id":11441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11429,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11427,"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":11439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11433,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"9016:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11434,"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":11435,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"9029:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11436,"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":11438,"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":11432,"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":11430,"name":"uint8","nodeType":"ElementaryTypeName","src":"9008:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11431,"nodeType":"ArrayTypeName","src":"9008:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}}},"id":11440,"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":11442,"nodeType":"ExpressionStatement","src":"8998:46:46"},{"body":{"id":11484,"nodeType":"Block","src":"9094:125:46","statements":[{"expression":{"id":11464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11453,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11427,"src":"9113:3:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11455,"indexExpression":{"id":11454,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11444,"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":11463,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":11458,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"9128:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11460,"indexExpression":{"id":11459,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11444,"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":11457,"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":11456,"name":"uint8","nodeType":"ElementaryTypeName","src":"9122:5:46","typeDescriptions":{}}},"id":11461,"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":11462,"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":11465,"nodeType":"ExpressionStatement","src":"9113:27:46"},{"expression":{"id":11482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11466,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11427,"src":"9159:3:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11473,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11472,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11467,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11444,"src":"9163:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":11468,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"9167:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11469,"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":11471,"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":11481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":11476,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"9191:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11478,"indexExpression":{"id":11477,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11444,"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":11475,"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":11474,"name":"uint8","nodeType":"ElementaryTypeName","src":"9185:5:46","typeDescriptions":{}}},"id":11479,"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":11480,"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":11483,"nodeType":"ExpressionStatement","src":"9159:44:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11446,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11444,"src":"9072:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11447,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11423,"src":"9076:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11448,"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":11485,"initializationExpression":{"assignments":[11444],"declarations":[{"constant":false,"id":11444,"mutability":"mutable","name":"p","nameLocation":"9069:1:46","nodeType":"VariableDeclaration","scope":11485,"src":"9064:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11443,"name":"uint","nodeType":"ElementaryTypeName","src":"9064:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11445,"nodeType":"VariableDeclarationStatement","src":"9064:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11451,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"9088:4:46","subExpression":{"id":11450,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11444,"src":"9091:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11452,"nodeType":"ExpressionStatement","src":"9088:4:46"},"nodeType":"ForStatement","src":"9059:160:46"}]}]},"id":11488,"implemented":true,"kind":"function","modifiers":[],"name":"hrpExpand","nameLocation":"8875:9:46","nodeType":"FunctionDefinition","parameters":{"id":11424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11423,"mutability":"mutable","name":"hrp","nameLocation":"8908:3:46","nodeType":"VariableDeclaration","scope":11488,"src":"8895:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11422,"name":"bytes","nodeType":"ElementaryTypeName","src":"8895:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"8884:34:46"},"returnParameters":{"id":11428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11427,"mutability":"mutable","name":"ret","nameLocation":"8957:3:46","nodeType":"VariableDeclaration","scope":11488,"src":"8942:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11425,"name":"uint8","nodeType":"ElementaryTypeName","src":"8942:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11426,"nodeType":"ArrayTypeName","src":"8942:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"src":"8941:20:46"},"scope":12052,"src":"8866:371:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11583,"nodeType":"Block","src":"9317:631:46","statements":[{"assignments":[11497],"declarations":[{"constant":false,"id":11497,"mutability":"mutable","name":"chk","nameLocation":"9335:3:46","nodeType":"VariableDeclaration","scope":11583,"src":"9328:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11496,"name":"uint32","nodeType":"ElementaryTypeName","src":"9328:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11499,"initialValue":{"hexValue":"31","id":11498,"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":[11505],"declarations":[{"constant":false,"id":11505,"mutability":"mutable","name":"GEN","nameLocation":"9370:3:46","nodeType":"VariableDeclaration","scope":11583,"src":"9353:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$5_memory_ptr","typeString":"uint32[5]"},"typeName":{"baseType":{"id":11503,"name":"uint32","nodeType":"ElementaryTypeName","src":"9353:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11504,"length":{"hexValue":"35","id":11502,"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":11512,"initialValue":{"components":[{"hexValue":"30783362366135376232","id":11506,"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":11507,"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":11508,"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":11509,"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":11510,"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":11511,"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":11580,"nodeType":"UncheckedBlock","src":"9525:393:46","statements":[{"body":{"id":11578,"nodeType":"Block","src":"9593:314:46","statements":[{"assignments":[11525],"declarations":[{"constant":false,"id":11525,"mutability":"mutable","name":"top","nameLocation":"9619:3:46","nodeType":"VariableDeclaration","scope":11578,"src":"9612:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11524,"name":"uint32","nodeType":"ElementaryTypeName","src":"9612:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11529,"initialValue":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11526,"name":"chk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11497,"src":"9625:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"3235","id":11527,"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":11547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11530,"name":"chk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11497,"src":"9653:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11533,"name":"chk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11497,"src":"9667:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307831666666666666","id":11534,"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":11532,"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":11531,"name":"uint32","nodeType":"ElementaryTypeName","src":"9660:6:46","typeDescriptions":{}}},"id":11536,"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":11537,"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":11539,"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":11542,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11491,"src":"9699:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11544,"indexExpression":{"id":11543,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11514,"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":11541,"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":11540,"name":"uint32","nodeType":"ElementaryTypeName","src":"9692:6:46","typeDescriptions":{}}},"id":11545,"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":11548,"nodeType":"ExpressionStatement","src":"9653:56:46"},{"body":{"id":11576,"nodeType":"Block","src":"9759:133:46","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11567,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11559,"name":"top","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11525,"src":"9788:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11560,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11550,"src":"9795:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"9788:8:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"id":11562,"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":11563,"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":11565,"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":11566,"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":11575,"nodeType":"IfStatement","src":"9782:91:46","trueBody":{"id":11574,"nodeType":"Block","src":"9809:64:46","statements":[{"expression":{"id":11572,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11568,"name":"chk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11497,"src":"9836:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"^=","rightHandSide":{"baseExpression":{"id":11569,"name":"GEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11505,"src":"9843:3:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$5_memory_ptr","typeString":"uint32[5] memory"}},"id":11571,"indexExpression":{"id":11570,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11550,"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":11573,"nodeType":"ExpressionStatement","src":"9836:13:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11555,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11553,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11550,"src":"9747:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"35","id":11554,"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":11577,"initializationExpression":{"assignments":[11550],"declarations":[{"constant":false,"id":11550,"mutability":"mutable","name":"j","nameLocation":"9740:1:46","nodeType":"VariableDeclaration","scope":11577,"src":"9733:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11549,"name":"uint32","nodeType":"ElementaryTypeName","src":"9733:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11552,"initialValue":{"hexValue":"30","id":11551,"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":11557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"9754:3:46","subExpression":{"id":11556,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11550,"src":"9756:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11558,"nodeType":"ExpressionStatement","src":"9754:3:46"},"nodeType":"ForStatement","src":"9728:164:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11517,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11514,"src":"9569:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11518,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11491,"src":"9573:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11519,"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":11579,"initializationExpression":{"assignments":[11514],"declarations":[{"constant":false,"id":11514,"mutability":"mutable","name":"i","nameLocation":"9562:1:46","nodeType":"VariableDeclaration","scope":11579,"src":"9555:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11513,"name":"uint32","nodeType":"ElementaryTypeName","src":"9555:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11516,"initialValue":{"hexValue":"30","id":11515,"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":11522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"9588:3:46","subExpression":{"id":11521,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11514,"src":"9590:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11523,"nodeType":"ExpressionStatement","src":"9588:3:46"},"nodeType":"ForStatement","src":"9550:357:46"}]},{"expression":{"id":11581,"name":"chk","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11497,"src":"9937:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":11495,"id":11582,"nodeType":"Return","src":"9930:10:46"}]},"id":11584,"implemented":true,"kind":"function","modifiers":[],"name":"polymod","nameLocation":"9254:7:46","nodeType":"FunctionDefinition","parameters":{"id":11492,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11491,"mutability":"mutable","name":"values","nameLocation":"9278:6:46","nodeType":"VariableDeclaration","scope":11584,"src":"9262:22:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[]"},"typeName":{"baseType":{"id":11489,"name":"uint32","nodeType":"ElementaryTypeName","src":"9262:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11490,"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":11495,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11494,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11584,"src":"9309:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11493,"name":"uint32","nodeType":"ElementaryTypeName","src":"9309:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9308:8:46"},"scope":12052,"src":"9245:703:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11721,"nodeType":"Block","src":"10106:686:46","statements":[{"id":11720,"nodeType":"UncheckedBlock","src":"10117:668:46","statements":[{"assignments":[11600],"declarations":[{"constant":false,"id":11600,"mutability":"mutable","name":"values","nameLocation":"10157:6:46","nodeType":"VariableDeclaration","scope":11720,"src":"10142:21:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11598,"name":"uint8","nodeType":"ElementaryTypeName","src":"10142:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11599,"nodeType":"ArrayTypeName","src":"10142:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":11604,"initialValue":{"arguments":[{"id":11602,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11586,"src":"10176:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11601,"name":"hrpExpand","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11488,"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":11603,"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":[11609],"declarations":[{"constant":false,"id":11609,"mutability":"mutable","name":"comb","nameLocation":"10211:4:46","nodeType":"VariableDeclaration","scope":11720,"src":"10195:20:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[]"},"typeName":{"baseType":{"id":11607,"name":"uint32","nodeType":"ElementaryTypeName","src":"10195:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11608,"nodeType":"ArrayTypeName","src":"10195:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_storage_ptr","typeString":"uint32[]"}},"visibility":"internal"}],"id":11621,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11617,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11613,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11600,"src":"10231:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11614,"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":11615,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11588,"src":"10247:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11616,"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":11618,"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":11612,"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":11610,"name":"uint32","nodeType":"ElementaryTypeName","src":"10222:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11611,"nodeType":"ArrayTypeName","src":"10222:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_storage_ptr","typeString":"uint32[]"}}},"id":11620,"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":11670,"nodeType":"Block","src":"10332:224:46","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11638,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11635,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11623,"src":"10355:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11636,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11600,"src":"10359:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11637,"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":11668,"nodeType":"Block","src":"10450:91:46","statements":[{"expression":{"id":11666,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11651,"name":"comb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11609,"src":"10473:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11653,"indexExpression":{"id":11652,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11623,"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":11658,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11588,"src":"10496:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11663,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11659,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11623,"src":"10501:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"expression":{"id":11660,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11600,"src":"10505:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11661,"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":11657,"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":11656,"name":"uint8","nodeType":"ElementaryTypeName","src":"10490:5:46","typeDescriptions":{}}},"id":11664,"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":11655,"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":11654,"name":"uint32","nodeType":"ElementaryTypeName","src":"10483:6:46","typeDescriptions":{}}},"id":11665,"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":11667,"nodeType":"ExpressionStatement","src":"10473:48:46"}]},"id":11669,"nodeType":"IfStatement","src":"10351:190:46","trueBody":{"id":11650,"nodeType":"Block","src":"10374:70:46","statements":[{"expression":{"id":11648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11639,"name":"comb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11609,"src":"10397:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11641,"indexExpression":{"id":11640,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11623,"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":11644,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11600,"src":"10414:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11646,"indexExpression":{"id":11645,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11623,"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":11643,"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":11642,"name":"uint32","nodeType":"ElementaryTypeName","src":"10407:6:46","typeDescriptions":{}}},"id":11647,"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":11649,"nodeType":"ExpressionStatement","src":"10397:27:46"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11631,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11625,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11623,"src":"10293:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11630,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11626,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11600,"src":"10297:6:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11627,"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":11628,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11588,"src":"10313:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11629,"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":11671,"initializationExpression":{"assignments":[11623],"declarations":[{"constant":false,"id":11623,"mutability":"mutable","name":"i","nameLocation":"10290:1:46","nodeType":"VariableDeclaration","scope":11671,"src":"10285:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11622,"name":"uint","nodeType":"ElementaryTypeName","src":"10285:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11624,"nodeType":"VariableDeclarationStatement","src":"10285:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11633,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"10326:4:46","subExpression":{"id":11632,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11623,"src":"10329:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11634,"nodeType":"ExpressionStatement","src":"10326:4:46"},"nodeType":"ForStatement","src":"10280:276:46"},{"expression":{"id":11678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11672,"name":"res","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11594,"src":"10584:3:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"36","id":11676,"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":11675,"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":11673,"name":"uint8","nodeType":"ElementaryTypeName","src":"10594:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11674,"nodeType":"ArrayTypeName","src":"10594:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}}},"id":11677,"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":11679,"nodeType":"ExpressionStatement","src":"10584:20:46"},{"assignments":[11681],"declarations":[{"constant":false,"id":11681,"mutability":"mutable","name":"mod","nameLocation":"10626:3:46","nodeType":"VariableDeclaration","scope":11720,"src":"10619:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11680,"name":"uint32","nodeType":"ElementaryTypeName","src":"10619:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11687,"initialValue":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11683,"name":"comb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11609,"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":11682,"name":"polymod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11584,"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":11684,"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":11685,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11590,"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":11718,"nodeType":"Block","src":"10696:78:46","statements":[{"expression":{"id":11716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11698,"name":"res","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11594,"src":"10715:3:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11700,"indexExpression":{"id":11699,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11689,"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":11714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11703,"name":"mod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11681,"src":"10731:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11709,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"35","id":11704,"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":11707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"35","id":11705,"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":11706,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11689,"src":"10748:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"10744:5:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11708,"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":11710,"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":11712,"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":11713,"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":11702,"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":11701,"name":"uint8","nodeType":"ElementaryTypeName","src":"10724:5:46","typeDescriptions":{}}},"id":11715,"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":11717,"nodeType":"ExpressionStatement","src":"10715:43:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11694,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11692,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11689,"src":"10683:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"36","id":11693,"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":11719,"initializationExpression":{"assignments":[11689],"declarations":[{"constant":false,"id":11689,"mutability":"mutable","name":"p","nameLocation":"10676:1:46","nodeType":"VariableDeclaration","scope":11719,"src":"10671:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11688,"name":"uint","nodeType":"ElementaryTypeName","src":"10671:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11691,"initialValue":{"hexValue":"30","id":11690,"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":11696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"10690:4:46","subExpression":{"id":11695,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11689,"src":"10693:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11697,"nodeType":"ExpressionStatement","src":"10690:4:46"},"nodeType":"ForStatement","src":"10666:108:46"}]}]},"id":11722,"implemented":true,"kind":"function","modifiers":[],"name":"createChecksum","nameLocation":"9965:14:46","nodeType":"FunctionDefinition","parameters":{"id":11591,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11586,"mutability":"mutable","name":"hrp","nameLocation":"10003:3:46","nodeType":"VariableDeclaration","scope":11722,"src":"9990:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11585,"name":"bytes","nodeType":"ElementaryTypeName","src":"9990:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11588,"mutability":"mutable","name":"data","nameLocation":"10030:4:46","nodeType":"VariableDeclaration","scope":11722,"src":"10017:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11587,"name":"bytes","nodeType":"ElementaryTypeName","src":"10017:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11590,"mutability":"mutable","name":"enc","nameLocation":"10052:3:46","nodeType":"VariableDeclaration","scope":11722,"src":"10045:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11589,"name":"uint32","nodeType":"ElementaryTypeName","src":"10045:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"9979:83:46"},"returnParameters":{"id":11595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11594,"mutability":"mutable","name":"res","nameLocation":"10101:3:46","nodeType":"VariableDeclaration","scope":11722,"src":"10086:18:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11592,"name":"uint8","nodeType":"ElementaryTypeName","src":"10086:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11593,"nodeType":"ArrayTypeName","src":"10086:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"src":"10085:20:46"},"scope":12052,"src":"9956:836:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11814,"nodeType":"Block","src":"10938:448:46","statements":[{"id":11813,"nodeType":"UncheckedBlock","src":"10949:430:46","statements":[{"assignments":[11738],"declarations":[{"constant":false,"id":11738,"mutability":"mutable","name":"ehrp","nameLocation":"10989:4:46","nodeType":"VariableDeclaration","scope":11813,"src":"10974:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11736,"name":"uint8","nodeType":"ElementaryTypeName","src":"10974:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11737,"nodeType":"ArrayTypeName","src":"10974:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":11742,"initialValue":{"arguments":[{"id":11740,"name":"hrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11724,"src":"11006:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":11739,"name":"hrpExpand","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11488,"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":11741,"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":[11747],"declarations":[{"constant":false,"id":11747,"mutability":"mutable","name":"cData","nameLocation":"11041:5:46","nodeType":"VariableDeclaration","scope":11813,"src":"11025:21:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[]"},"typeName":{"baseType":{"id":11745,"name":"uint32","nodeType":"ElementaryTypeName","src":"11025:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11746,"nodeType":"ArrayTypeName","src":"11025:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_storage_ptr","typeString":"uint32[]"}},"visibility":"internal"}],"id":11757,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":11751,"name":"ehrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11738,"src":"11062:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11752,"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":11753,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11727,"src":"11076:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11754,"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":11750,"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":11748,"name":"uint32","nodeType":"ElementaryTypeName","src":"11053:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11749,"nodeType":"ArrayTypeName","src":"11053:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_storage_ptr","typeString":"uint32[]"}}},"id":11756,"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":11779,"nodeType":"Block","src":"11139:61:46","statements":[{"expression":{"id":11777,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11768,"name":"cData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11747,"src":"11158:5:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11770,"indexExpression":{"id":11769,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11759,"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":11773,"name":"ehrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11738,"src":"11176:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11775,"indexExpression":{"id":11774,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11759,"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":11772,"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":11771,"name":"uint32","nodeType":"ElementaryTypeName","src":"11169:6:46","typeDescriptions":{}}},"id":11776,"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":11778,"nodeType":"ExpressionStatement","src":"11158:26:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11761,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11759,"src":"11116:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11762,"name":"ehrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11738,"src":"11120:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11763,"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":11780,"initializationExpression":{"assignments":[11759],"declarations":[{"constant":false,"id":11759,"mutability":"mutable","name":"i","nameLocation":"11113:1:46","nodeType":"VariableDeclaration","scope":11780,"src":"11108:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11758,"name":"uint","nodeType":"ElementaryTypeName","src":"11108:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11760,"nodeType":"VariableDeclarationStatement","src":"11108:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"11133:4:46","subExpression":{"id":11765,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11759,"src":"11136:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11767,"nodeType":"ExpressionStatement","src":"11133:4:46"},"nodeType":"ForStatement","src":"11103:97:46"},{"body":{"id":11805,"nodeType":"Block","src":"11250:75:46","statements":[{"expression":{"id":11803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11791,"name":"cData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11747,"src":"11269:5:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint32_$dyn_memory_ptr","typeString":"uint32[] memory"}},"id":11796,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11795,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11792,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11782,"src":"11275:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"expression":{"id":11793,"name":"ehrp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11738,"src":"11279:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11794,"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":11799,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11727,"src":"11301:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11801,"indexExpression":{"id":11800,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11782,"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":11798,"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":11797,"name":"uint32","nodeType":"ElementaryTypeName","src":"11294:6:46","typeDescriptions":{}}},"id":11802,"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":11804,"nodeType":"ExpressionStatement","src":"11269:40:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11787,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11784,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11782,"src":"11227:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11785,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11727,"src":"11231:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11786,"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":11806,"initializationExpression":{"assignments":[11782],"declarations":[{"constant":false,"id":11782,"mutability":"mutable","name":"i","nameLocation":"11224:1:46","nodeType":"VariableDeclaration","scope":11806,"src":"11219:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11781,"name":"uint","nodeType":"ElementaryTypeName","src":"11219:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11783,"nodeType":"VariableDeclarationStatement","src":"11219:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"11244:4:46","subExpression":{"id":11788,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11782,"src":"11247:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11790,"nodeType":"ExpressionStatement","src":"11244:4:46"},"nodeType":"ForStatement","src":"11214:111:46"},{"expression":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":11811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":11808,"name":"cData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11747,"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":11807,"name":"polymod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11584,"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":11809,"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":11810,"name":"enc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11729,"src":"11364:3:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"11346:21:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":11733,"id":11812,"nodeType":"Return","src":"11339:28:46"}]}]},"id":11815,"implemented":true,"kind":"function","modifiers":[],"name":"verifyChecksum","nameLocation":"10809:14:46","nodeType":"FunctionDefinition","parameters":{"id":11730,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11724,"mutability":"mutable","name":"hrp","nameLocation":"10847:3:46","nodeType":"VariableDeclaration","scope":11815,"src":"10834:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11723,"name":"bytes","nodeType":"ElementaryTypeName","src":"10834:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11727,"mutability":"mutable","name":"data","nameLocation":"10876:4:46","nodeType":"VariableDeclaration","scope":11815,"src":"10861:19:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11725,"name":"uint8","nodeType":"ElementaryTypeName","src":"10861:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11726,"nodeType":"ArrayTypeName","src":"10861:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"},{"constant":false,"id":11729,"mutability":"mutable","name":"enc","nameLocation":"10898:3:46","nodeType":"VariableDeclaration","scope":11815,"src":"10891:10:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11728,"name":"uint32","nodeType":"ElementaryTypeName","src":"10891:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"10823:85:46"},"returnParameters":{"id":11733,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11732,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11815,"src":"10932:4:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11731,"name":"bool","nodeType":"ElementaryTypeName","src":"10932:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"10931:6:46"},"scope":12052,"src":"10800:586:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11871,"nodeType":"Block","src":"11552:246:46","statements":[{"assignments":[11832],"declarations":[{"constant":false,"id":11832,"mutability":"mutable","name":"dataBits","nameLocation":"11578:8:46","nodeType":"VariableDeclaration","scope":11871,"src":"11563:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11830,"name":"uint8","nodeType":"ElementaryTypeName","src":"11563:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11831,"nodeType":"ArrayTypeName","src":"11563:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"}],"id":11839,"initialValue":{"arguments":[{"expression":{"id":11836,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11817,"src":"11601:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11837,"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":11835,"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":11833,"name":"uint8","nodeType":"ElementaryTypeName","src":"11593:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11834,"nodeType":"ArrayTypeName","src":"11593:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}}},"id":11838,"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":11862,"nodeType":"Block","src":"11671:55:46","statements":[{"expression":{"id":11860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":11851,"name":"dataBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11832,"src":"11686:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11853,"indexExpression":{"id":11852,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11841,"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":11856,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11817,"src":"11706:4:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":11858,"indexExpression":{"id":11857,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11841,"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":11855,"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":11854,"name":"uint8","nodeType":"ElementaryTypeName","src":"11700:5:46","typeDescriptions":{}}},"id":11859,"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":11861,"nodeType":"ExpressionStatement","src":"11686:28:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11844,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11841,"src":"11645:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11845,"name":"dataBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11832,"src":"11649:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11846,"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":11863,"initializationExpression":{"assignments":[11841],"declarations":[{"constant":false,"id":11841,"mutability":"mutable","name":"p","nameLocation":"11638:1:46","nodeType":"VariableDeclaration","scope":11863,"src":"11631:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":11840,"name":"uint32","nodeType":"ElementaryTypeName","src":"11631:6:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":11843,"initialValue":{"hexValue":"30","id":11842,"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":11849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"11666:3:46","subExpression":{"id":11848,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11841,"src":"11668:1:46","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":11850,"nodeType":"ExpressionStatement","src":"11666:3:46"},"nodeType":"ForStatement","src":"11626:100:46"},{"expression":{"arguments":[{"id":11865,"name":"dataBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11832,"src":"11758:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"id":11866,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11819,"src":"11768:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11867,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11821,"src":"11778:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11868,"name":"pad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11823,"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":11864,"name":"_convertBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12051,"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":11869,"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":11827,"id":11870,"nodeType":"Return","src":"11738:52:46"}]},"id":11872,"implemented":true,"kind":"function","modifiers":[],"name":"convertBits","nameLocation":"11403:11:46","nodeType":"FunctionDefinition","parameters":{"id":11824,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11817,"mutability":"mutable","name":"data","nameLocation":"11438:4:46","nodeType":"VariableDeclaration","scope":11872,"src":"11425:17:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11816,"name":"bytes","nodeType":"ElementaryTypeName","src":"11425:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":11819,"mutability":"mutable","name":"frombits","nameLocation":"11458:8:46","nodeType":"VariableDeclaration","scope":11872,"src":"11453:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11818,"name":"uint","nodeType":"ElementaryTypeName","src":"11453:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11821,"mutability":"mutable","name":"tobits","nameLocation":"11482:6:46","nodeType":"VariableDeclaration","scope":11872,"src":"11477:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11820,"name":"uint","nodeType":"ElementaryTypeName","src":"11477:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11823,"mutability":"mutable","name":"pad","nameLocation":"11504:3:46","nodeType":"VariableDeclaration","scope":11872,"src":"11499:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11822,"name":"bool","nodeType":"ElementaryTypeName","src":"11499:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"11414:100:46"},"returnParameters":{"id":11827,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11826,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11872,"src":"11538:12:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11825,"name":"bytes","nodeType":"ElementaryTypeName","src":"11538:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"11537:14:46"},"scope":12052,"src":"11394:404:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":11893,"nodeType":"Block","src":"11966:67:46","statements":[{"expression":{"arguments":[{"id":11887,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11875,"src":"11997:4:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},{"id":11888,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11877,"src":"12003:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11889,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11879,"src":"12013:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":11890,"name":"pad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11881,"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":11886,"name":"_convertBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12051,"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":11891,"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":11885,"id":11892,"nodeType":"Return","src":"11977:48:46"}]},"id":11894,"implemented":true,"kind":"function","modifiers":[],"name":"convertBits","nameLocation":"11815:11:46","nodeType":"FunctionDefinition","parameters":{"id":11882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11875,"mutability":"mutable","name":"data","nameLocation":"11852:4:46","nodeType":"VariableDeclaration","scope":11894,"src":"11837: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":"11837:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11874,"nodeType":"ArrayTypeName","src":"11837:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"},{"constant":false,"id":11877,"mutability":"mutable","name":"frombits","nameLocation":"11872:8:46","nodeType":"VariableDeclaration","scope":11894,"src":"11867:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11876,"name":"uint","nodeType":"ElementaryTypeName","src":"11867:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11879,"mutability":"mutable","name":"tobits","nameLocation":"11896:6:46","nodeType":"VariableDeclaration","scope":11894,"src":"11891:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11878,"name":"uint","nodeType":"ElementaryTypeName","src":"11891:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11881,"mutability":"mutable","name":"pad","nameLocation":"11918:3:46","nodeType":"VariableDeclaration","scope":11894,"src":"11913:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11880,"name":"bool","nodeType":"ElementaryTypeName","src":"11913:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"11826:102:46"},"returnParameters":{"id":11885,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11884,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":11894,"src":"11952:12:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11883,"name":"bytes","nodeType":"ElementaryTypeName","src":"11952:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"11951:14:46"},"scope":12052,"src":"11806:227:46","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12050,"nodeType":"Block","src":"12210:1197:46","statements":[{"assignments":[11909],"declarations":[{"constant":false,"id":11909,"mutability":"mutable","name":"acc","nameLocation":"12226:3:46","nodeType":"VariableDeclaration","scope":12050,"src":"12221:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11908,"name":"uint","nodeType":"ElementaryTypeName","src":"12221:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11911,"initialValue":{"hexValue":"30","id":11910,"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":[11913],"declarations":[{"constant":false,"id":11913,"mutability":"mutable","name":"bits","nameLocation":"12249:4:46","nodeType":"VariableDeclaration","scope":12050,"src":"12244:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11912,"name":"uint","nodeType":"ElementaryTypeName","src":"12244:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11915,"initialValue":{"hexValue":"30","id":11914,"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":[11917],"declarations":[{"constant":false,"id":11917,"mutability":"mutable","name":"maxv","nameLocation":"12275:4:46","nodeType":"VariableDeclaration","scope":12050,"src":"12270:9:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11916,"name":"uint","nodeType":"ElementaryTypeName","src":"12270:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11924,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11923,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":11918,"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":11919,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11901,"src":"12288:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12283:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11921,"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":11922,"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":11998,"nodeType":"UncheckedBlock","src":"12312:667:46","statements":[{"body":{"id":11996,"nodeType":"Block","src":"12376:592:46","statements":[{"assignments":[11936],"declarations":[{"constant":false,"id":11936,"mutability":"mutable","name":"value","nameLocation":"12401:5:46","nodeType":"VariableDeclaration","scope":11996,"src":"12395:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":11935,"name":"uint8","nodeType":"ElementaryTypeName","src":"12395:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":11940,"initialValue":{"baseExpression":{"id":11937,"name":"dataBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11897,"src":"12409:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11939,"indexExpression":{"id":11938,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11926,"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":11951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11942,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11936,"src":"12469:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":11943,"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":11950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":11947,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11945,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11936,"src":"12484:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11946,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11899,"src":"12493:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12484:17:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":11948,"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":11949,"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":11952,"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":11941,"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":11953,"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":11954,"nodeType":"ExpressionStatement","src":"12439:166:46"},{"expression":{"id":11962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11955,"name":"acc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11909,"src":"12626:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11956,"name":"acc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11909,"src":"12633:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"id":11957,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11899,"src":"12640:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12633:15:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11959,"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":11960,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11936,"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":11963,"nodeType":"ExpressionStatement","src":"12626:31:46"},{"expression":{"id":11966,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11964,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11913,"src":"12676:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":11965,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11899,"src":"12684:8:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12676:16:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11967,"nodeType":"ExpressionStatement","src":"12676:16:46"},{"body":{"id":11994,"nodeType":"Block","src":"12736:217:46","statements":[{"expression":{"id":11973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11971,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11913,"src":"12759:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":11972,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11901,"src":"12767:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12759:14:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11974,"nodeType":"ExpressionStatement","src":"12759:14:46"},{"expression":{"id":11992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":11975,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11906,"src":"12796:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":11978,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11906,"src":"12845:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11988,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11983,"name":"acc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11909,"src":"12889:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"id":11984,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11913,"src":"12896:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12889:11:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":11986,"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":11987,"name":"maxv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11917,"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":11982,"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":11981,"name":"uint8","nodeType":"ElementaryTypeName","src":"12882:5:46","typeDescriptions":{}}},"id":11989,"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":11980,"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":11979,"name":"bytes1","nodeType":"ElementaryTypeName","src":"12875:6:46","typeDescriptions":{}}},"id":11990,"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":11976,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"12802:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":11977,"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":11991,"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":11993,"nodeType":"ExpressionStatement","src":"12796:137:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11970,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11968,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11913,"src":"12720:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":11969,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11901,"src":"12728:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"12720:14:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":11995,"nodeType":"WhileStatement","src":"12713:240:46"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":11931,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":11928,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11926,"src":"12350:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":11929,"name":"dataBits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11897,"src":"12354:8:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[] memory"}},"id":11930,"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":11997,"initializationExpression":{"assignments":[11926],"declarations":[{"constant":false,"id":11926,"mutability":"mutable","name":"p","nameLocation":"12347:1:46","nodeType":"VariableDeclaration","scope":11997,"src":"12342:6:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11925,"name":"uint","nodeType":"ElementaryTypeName","src":"12342:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":11927,"nodeType":"VariableDeclarationStatement","src":"12342:6:46"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":11933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"12371:3:46","subExpression":{"id":11932,"name":"p","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11926,"src":"12373:1:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":11934,"nodeType":"ExpressionStatement","src":"12371:3:46"},"nodeType":"ForStatement","src":"12337:631:46"}]},{"condition":{"id":11999,"name":"pad","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11903,"src":"12995:3:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12048,"nodeType":"Block","src":"13217:183:46","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12029,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11913,"src":"13258:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":12030,"name":"frombits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11899,"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":12043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12032,"name":"acc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11909,"src":"13279:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12035,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12033,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11901,"src":"13287:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12034,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11913,"src":"13296:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13287:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12036,"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":12038,"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":12039,"name":"maxv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11917,"src":"13305:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13278:31:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12041,"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":12042,"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":12045,"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":12028,"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":12046,"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":12047,"nodeType":"ExpressionStatement","src":"13232:156:46"}]},"id":12049,"nodeType":"IfStatement","src":"12991:409:46","trueBody":{"id":12027,"nodeType":"Block","src":"13000:211:46","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12000,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11913,"src":"13019:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":12001,"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":12026,"nodeType":"IfStatement","src":"13015:185:46","trueBody":{"id":12025,"nodeType":"Block","src":"13029:171:46","statements":[{"expression":{"id":12023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12003,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11906,"src":"13048:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12006,"name":"ret","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11906,"src":"13093:3:46","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12019,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12011,"name":"acc","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11909,"src":"13133:3:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<<","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12012,"name":"tobits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11901,"src":"13141:6:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12013,"name":"bits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11913,"src":"13150:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"13141:13:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12015,"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":12017,"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":12018,"name":"maxv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11917,"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":12010,"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":12009,"name":"uint8","nodeType":"ElementaryTypeName","src":"13126:5:46","typeDescriptions":{}}},"id":12020,"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":12008,"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":12007,"name":"bytes1","nodeType":"ElementaryTypeName","src":"13119:6:46","typeDescriptions":{}}},"id":12021,"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":12004,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"13054:3:46","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":12005,"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":12022,"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":12024,"nodeType":"ExpressionStatement","src":"13048:136:46"}]}}]}}]},"id":12051,"implemented":true,"kind":"function","modifiers":[],"name":"_convertBits","nameLocation":"12050:12:46","nodeType":"FunctionDefinition","parameters":{"id":11904,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11897,"mutability":"mutable","name":"dataBits","nameLocation":"12088:8:46","nodeType":"VariableDeclaration","scope":12051,"src":"12073:23:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_memory_ptr","typeString":"uint8[]"},"typeName":{"baseType":{"id":11895,"name":"uint8","nodeType":"ElementaryTypeName","src":"12073:5:46","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":11896,"nodeType":"ArrayTypeName","src":"12073:7:46","typeDescriptions":{"typeIdentifier":"t_array$_t_uint8_$dyn_storage_ptr","typeString":"uint8[]"}},"visibility":"internal"},{"constant":false,"id":11899,"mutability":"mutable","name":"frombits","nameLocation":"12112:8:46","nodeType":"VariableDeclaration","scope":12051,"src":"12107:13:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11898,"name":"uint","nodeType":"ElementaryTypeName","src":"12107:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11901,"mutability":"mutable","name":"tobits","nameLocation":"12136:6:46","nodeType":"VariableDeclaration","scope":12051,"src":"12131:11:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":11900,"name":"uint","nodeType":"ElementaryTypeName","src":"12131:4:46","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":11903,"mutability":"mutable","name":"pad","nameLocation":"12158:3:46","nodeType":"VariableDeclaration","scope":12051,"src":"12153:8:46","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":11902,"name":"bool","nodeType":"ElementaryTypeName","src":"12153:4:46","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"12062:106:46"},"returnParameters":{"id":11907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":11906,"mutability":"mutable","name":"ret","nameLocation":"12205:3:46","nodeType":"VariableDeclaration","scope":12051,"src":"12192:16:46","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":11905,"name":"bytes","nodeType":"ElementaryTypeName","src":"12192:5:46","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"12191:18:46"},"scope":12052,"src":"12041:1366:46","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":12053,"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":[13068]},"id":13069,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":12054,"literals":["solidity",">=","0.8",".17"],"nodeType":"PragmaDirective","src":"35:26:47"},{"abstract":false,"baseContracts":[],"canonicalName":"Secp256k1","contractDependencies":[],"contractKind":"library","documentation":{"id":12055,"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":13068,"linearizedBaseContracts":[13068],"name":"Secp256k1","nameLocation":"307:9:47","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":12058,"mutability":"constant","name":"U255_MAX_PLUS_1","nameLocation":"382:15:47","nodeType":"VariableDeclaration","scope":13068,"src":"357:129:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12056,"name":"uint256","nodeType":"ElementaryTypeName","src":"357:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"3537383936303434363138363538303937373131373835343932353034333433393533393236363334393932333332383230323832303139373238373932303033393536353634383139393638","id":12057,"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":12061,"mutability":"constant","name":"A","nameLocation":"544:1:47","nodeType":"VariableDeclaration","scope":13068,"src":"519:30:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12059,"name":"uint256","nodeType":"ElementaryTypeName","src":"519:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":12060,"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":12064,"mutability":"constant","name":"B","nameLocation":"581:1:47","nodeType":"VariableDeclaration","scope":13068,"src":"556:30:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12062,"name":"uint256","nodeType":"ElementaryTypeName","src":"556:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"37","id":12063,"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":12067,"mutability":"constant","name":"GX","nameLocation":"618:2:47","nodeType":"VariableDeclaration","scope":13068,"src":"593:96:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12065,"name":"uint256","nodeType":"ElementaryTypeName","src":"593:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"307837394245363637454639444342424143353541303632393543453837304230373032394246434442324443453238443935394632383135423136463831373938","id":12066,"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":12070,"mutability":"constant","name":"GY","nameLocation":"721:2:47","nodeType":"VariableDeclaration","scope":13068,"src":"696:96:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12068,"name":"uint256","nodeType":"ElementaryTypeName","src":"696:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"307834383341444137373236413343343635354441344642464330453131303841384644313742343438413638353534313939433437443038464642313044344238","id":12069,"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":12073,"mutability":"constant","name":"P","nameLocation":"824:1:47","nodeType":"VariableDeclaration","scope":13068,"src":"799:95:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12071,"name":"uint256","nodeType":"ElementaryTypeName","src":"799:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"307846464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646464646454646464646433246","id":12072,"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":12076,"mutability":"constant","name":"N","nameLocation":"926:1:47","nodeType":"VariableDeclaration","scope":13068,"src":"901:95:47","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12074,"name":"uint256","nodeType":"ElementaryTypeName","src":"901:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"307846464646464646464646464646464646464646464646464646464646464646454241414544434536414634384130334242464432354538434430333634313431","id":12075,"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":12249,"nodeType":"Block","src":"1396:687:47","statements":[{"assignments":[12093],"declarations":[{"constant":false,"id":12093,"mutability":"mutable","name":"x","nameLocation":"1415:1:47","nodeType":"VariableDeclaration","scope":12249,"src":"1407:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12092,"name":"uint256","nodeType":"ElementaryTypeName","src":"1407:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12104,"initialValue":{"arguments":[{"id":12095,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12083,"src":"1426:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12101,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12096,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"1429:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":12099,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12097,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12081,"src":"1434:1:47","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"31","id":12098,"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":12100,"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":12102,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12094,"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":12103,"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":12127,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12123,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12119,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12107,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12105,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12093,"src":"1460:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12106,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12108,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"1469:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12109,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12076,"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":12114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12112,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12083,"src":"1478:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":12113,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12076,"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":12118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12116,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"1487:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12117,"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":12122,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12120,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12083,"src":"1497:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12121,"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":12126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12124,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12081,"src":"1507:1:47","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"31","id":12125,"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":12133,"nodeType":"IfStatement","src":"1456:98:47","trueBody":{"id":12132,"nodeType":"Block","src":"1514:40:47","statements":[{"expression":{"components":[{"hexValue":"30","id":12128,"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":12129,"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":12130,"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":12091,"id":12131,"nodeType":"Return","src":"1529:13:47"}]}},{"assignments":[12135],"declarations":[{"constant":false,"id":12135,"mutability":"mutable","name":"rInv","nameLocation":"1572:4:47","nodeType":"VariableDeclaration","scope":12249,"src":"1564:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12134,"name":"uint256","nodeType":"ElementaryTypeName","src":"1564:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12140,"initialValue":{"arguments":[{"id":12137,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12083,"src":"1586:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12138,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12076,"src":"1589:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12136,"name":"invMod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13067,"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":12139,"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":[12142],"declarations":[{"constant":false,"id":12142,"mutability":"mutable","name":"y2","nameLocation":"1612:2:47","nodeType":"VariableDeclaration","scope":12249,"src":"1604:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12141,"name":"uint256","nodeType":"ElementaryTypeName","src":"1604:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12164,"initialValue":{"arguments":[{"arguments":[{"id":12145,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12093,"src":"1631:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12147,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12093,"src":"1641:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12148,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12093,"src":"1644:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12149,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12146,"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":12150,"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":12151,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12144,"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":12152,"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":12155,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12093,"src":"1669:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12156,"name":"A","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12061,"src":"1672:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12157,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12154,"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":12158,"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":12159,"name":"B","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12064,"src":"1679:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12160,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12153,"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":12161,"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":12162,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12143,"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":12163,"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":12175,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12165,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12142,"src":"1699:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12167,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12142,"src":"1711:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12173,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12170,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"id":12168,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"1716:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":12169,"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":12171,"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":12172,"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":12166,"name":"expMod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12284,"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":12174,"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":12176,"nodeType":"ExpressionStatement","src":"1699:28:47"},{"assignments":[12178],"declarations":[{"constant":false,"id":12178,"mutability":"mutable","name":"y","nameLocation":"1746:1:47","nodeType":"VariableDeclaration","scope":12249,"src":"1738:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12177,"name":"uint256","nodeType":"ElementaryTypeName","src":"1738:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12195,"initialValue":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12188,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12179,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12142,"src":"1752:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":12180,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12081,"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":12182,"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":12184,"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":12185,"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":12187,"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":12189,"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":12193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12191,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"1781:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12192,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12142,"src":"1785:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1781:6:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"1750:37:47","trueExpression":{"id":12190,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12142,"src":"1776:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"1738:49:47"},{"assignments":[12197,12199,12201],"declarations":[{"constant":false,"id":12197,"mutability":"mutable","name":"qx","nameLocation":"1809:2:47","nodeType":"VariableDeclaration","scope":12249,"src":"1801:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12196,"name":"uint256","nodeType":"ElementaryTypeName","src":"1801:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12199,"mutability":"mutable","name":"qy","nameLocation":"1821:2:47","nodeType":"VariableDeclaration","scope":12249,"src":"1813:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12198,"name":"uint256","nodeType":"ElementaryTypeName","src":"1813:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12201,"mutability":"mutable","name":"qz","nameLocation":"1833:2:47","nodeType":"VariableDeclaration","scope":12249,"src":"1825:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12200,"name":"uint256","nodeType":"ElementaryTypeName","src":"1825:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12214,"initialValue":{"arguments":[{"arguments":[{"id":12204,"name":"rInv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12135,"src":"1853:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12205,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12076,"src":"1859:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12206,"name":"digest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12079,"src":"1863:6:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1859:10:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12208,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12076,"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":12203,"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":12209,"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":12210,"name":"GX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12067,"src":"1875:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12211,"name":"GY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12070,"src":"1879:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":12212,"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":12202,"name":"jacMul","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12699,"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":12213,"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":[12216,12218,12220],"declarations":[{"constant":false,"id":12216,"mutability":"mutable","name":"qx2","nameLocation":"1905:3:47","nodeType":"VariableDeclaration","scope":12249,"src":"1897:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12215,"name":"uint256","nodeType":"ElementaryTypeName","src":"1897:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12218,"mutability":"mutable","name":"qy2","nameLocation":"1918:3:47","nodeType":"VariableDeclaration","scope":12249,"src":"1910:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12217,"name":"uint256","nodeType":"ElementaryTypeName","src":"1910:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12220,"mutability":"mutable","name":"qz2","nameLocation":"1931:3:47","nodeType":"VariableDeclaration","scope":12249,"src":"1923:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12219,"name":"uint256","nodeType":"ElementaryTypeName","src":"1923:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12231,"initialValue":{"arguments":[{"arguments":[{"id":12223,"name":"rInv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12135,"src":"1952:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12224,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12085,"src":"1958:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12225,"name":"N","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12076,"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":12222,"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":12226,"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":12227,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12093,"src":"1965:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12228,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12178,"src":"1968:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"31","id":12229,"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":12221,"name":"jacMul","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12699,"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":12230,"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":[12233,12235],"declarations":[{"constant":false,"id":12233,"mutability":"mutable","name":"qx3","nameLocation":"1993:3:47","nodeType":"VariableDeclaration","scope":12249,"src":"1985:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12232,"name":"uint256","nodeType":"ElementaryTypeName","src":"1985:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12235,"mutability":"mutable","name":"qy3","nameLocation":"2006:3:47","nodeType":"VariableDeclaration","scope":12249,"src":"1998:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12234,"name":"uint256","nodeType":"ElementaryTypeName","src":"1998:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12244,"initialValue":{"arguments":[{"id":12237,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12197,"src":"2019:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12238,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12199,"src":"2023:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12239,"name":"qz","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12201,"src":"2027:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12240,"name":"qx2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12216,"src":"2031:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12241,"name":"qy2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12218,"src":"2036:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12242,"name":"qz2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12220,"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":12236,"name":"ecAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12928,"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":12243,"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":12245,"name":"qx3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12233,"src":"2066:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12246,"name":"qy3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12235,"src":"2071:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12247,"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":12091,"id":12248,"nodeType":"Return","src":"2058:17:47"}]},"documentation":{"id":12077,"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":12250,"implemented":true,"kind":"function","modifiers":[],"name":"recover","nameLocation":"1257:7:47","nodeType":"FunctionDefinition","parameters":{"id":12086,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12079,"mutability":"mutable","name":"digest","nameLocation":"1283:6:47","nodeType":"VariableDeclaration","scope":12250,"src":"1275:14:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12078,"name":"uint256","nodeType":"ElementaryTypeName","src":"1275:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12081,"mutability":"mutable","name":"v","nameLocation":"1306:1:47","nodeType":"VariableDeclaration","scope":12250,"src":"1300:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":12080,"name":"uint8","nodeType":"ElementaryTypeName","src":"1300:5:47","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":12083,"mutability":"mutable","name":"r","nameLocation":"1326:1:47","nodeType":"VariableDeclaration","scope":12250,"src":"1318:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12082,"name":"uint256","nodeType":"ElementaryTypeName","src":"1318:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12085,"mutability":"mutable","name":"s","nameLocation":"1346:1:47","nodeType":"VariableDeclaration","scope":12250,"src":"1338:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12084,"name":"uint256","nodeType":"ElementaryTypeName","src":"1338:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1264:90:47"},"returnParameters":{"id":12091,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12088,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12250,"src":"1378:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12087,"name":"uint256","nodeType":"ElementaryTypeName","src":"1378:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12090,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12250,"src":"1387:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12089,"name":"uint256","nodeType":"ElementaryTypeName","src":"1387:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1377:18:47"},"scope":13068,"src":"1248:835:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12283,"nodeType":"Block","src":"2533:711:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12260,"name":"_base","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12253,"src":"2548:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12261,"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":12265,"nodeType":"IfStatement","src":"2544:24:47","trueBody":{"expression":{"hexValue":"30","id":12263,"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":12259,"id":12264,"nodeType":"Return","src":"2560:8:47"}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12268,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12266,"name":"_exp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12255,"src":"2583:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12267,"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":12271,"nodeType":"IfStatement","src":"2579:23:47","trueBody":{"expression":{"hexValue":"31","id":12269,"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":12259,"id":12270,"nodeType":"Return","src":"2594:8:47"}},{"assignments":[12273],"declarations":[{"constant":false,"id":12273,"mutability":"mutable","name":"r","nameLocation":"2623:1:47","nodeType":"VariableDeclaration","scope":12283,"src":"2615:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12272,"name":"uint256","nodeType":"ElementaryTypeName","src":"2615:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12275,"initialValue":{"hexValue":"31","id":12274,"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":[12277],"declarations":[{"constant":false,"id":12277,"mutability":"mutable","name":"bit","nameLocation":"2647:3:47","nodeType":"VariableDeclaration","scope":12283,"src":"2639:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12276,"name":"uint256","nodeType":"ElementaryTypeName","src":"2639:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12279,"initialValue":{"id":12278,"name":"U255_MAX_PLUS_1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12058,"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":"shanghai","externalReferences":[{"declaration":12073,"isOffset":false,"isSlot":false,"src":"2800:1:47","valueSize":1},{"declaration":12073,"isOffset":false,"isSlot":false,"src":"2848:1:47","valueSize":1},{"declaration":12073,"isOffset":false,"isSlot":false,"src":"2893:1:47","valueSize":1},{"declaration":12073,"isOffset":false,"isSlot":false,"src":"2949:1:47","valueSize":1},{"declaration":12073,"isOffset":false,"isSlot":false,"src":"2994:1:47","valueSize":1},{"declaration":12073,"isOffset":false,"isSlot":false,"src":"3050:1:47","valueSize":1},{"declaration":12073,"isOffset":false,"isSlot":false,"src":"3095:1:47","valueSize":1},{"declaration":12073,"isOffset":false,"isSlot":false,"src":"3151:1:47","valueSize":1},{"declaration":12253,"isOffset":false,"isSlot":false,"src":"2808:5:47","valueSize":1},{"declaration":12253,"isOffset":false,"isSlot":false,"src":"2901:5:47","valueSize":1},{"declaration":12253,"isOffset":false,"isSlot":false,"src":"3002:5:47","valueSize":1},{"declaration":12253,"isOffset":false,"isSlot":false,"src":"3103:5:47","valueSize":1},{"declaration":12255,"isOffset":false,"isSlot":false,"src":"2833:4:47","valueSize":1},{"declaration":12255,"isOffset":false,"isSlot":false,"src":"2926:4:47","valueSize":1},{"declaration":12255,"isOffset":false,"isSlot":false,"src":"3027:4:47","valueSize":1},{"declaration":12255,"isOffset":false,"isSlot":false,"src":"3128:4:47","valueSize":1},{"declaration":12277,"isOffset":false,"isSlot":false,"src":"2729:3:47","valueSize":1},{"declaration":12277,"isOffset":false,"isSlot":false,"src":"2839:3:47","valueSize":1},{"declaration":12277,"isOffset":false,"isSlot":false,"src":"2936:3:47","valueSize":1},{"declaration":12277,"isOffset":false,"isSlot":false,"src":"3037:3:47","valueSize":1},{"declaration":12277,"isOffset":false,"isSlot":false,"src":"3138:3:47","valueSize":1},{"declaration":12277,"isOffset":false,"isSlot":false,"src":"3171:3:47","valueSize":1},{"declaration":12277,"isOffset":false,"isSlot":false,"src":"3182:3:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"2775:1:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"2794:1:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"2797:1:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"2868:1:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"2887:1:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"2890:1:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"2969:1:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"2988:1:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"2991:1:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"3070:1:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"3089:1:47","valueSize":1},{"declaration":12273,"isOffset":false,"isSlot":false,"src":"3092:1:47","valueSize":1}],"id":12280,"nodeType":"InlineAssembly","src":"2679:537:47"},{"expression":{"id":12281,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12273,"src":"3235:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12259,"id":12282,"nodeType":"Return","src":"3228:8:47"}]},"documentation":{"id":12251,"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":12284,"implemented":true,"kind":"function","modifiers":[],"name":"expMod","nameLocation":"2465:6:47","nodeType":"FunctionDefinition","parameters":{"id":12256,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12253,"mutability":"mutable","name":"_base","nameLocation":"2480:5:47","nodeType":"VariableDeclaration","scope":12284,"src":"2472:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12252,"name":"uint256","nodeType":"ElementaryTypeName","src":"2472:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12255,"mutability":"mutable","name":"_exp","nameLocation":"2495:4:47","nodeType":"VariableDeclaration","scope":12284,"src":"2487:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12254,"name":"uint256","nodeType":"ElementaryTypeName","src":"2487:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2471:29:47"},"returnParameters":{"id":12259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12258,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12284,"src":"2524:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12257,"name":"uint256","nodeType":"ElementaryTypeName","src":"2524:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2523:9:47"},"scope":13068,"src":"2456:788:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12604,"nodeType":"Block","src":"4004:1535:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12308,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12306,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12287,"src":"4019:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12307,"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":12311,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12309,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12289,"src":"4031:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12310,"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":12318,"nodeType":"IfStatement","src":"4015:48:47","trueBody":{"expression":{"components":[{"id":12313,"name":"_x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12293,"src":"4049:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12314,"name":"_y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12295,"src":"4054:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12315,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12297,"src":"4059:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12316,"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":12305,"id":12317,"nodeType":"Return","src":"4041:22:47"}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12319,"name":"_x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12293,"src":"4078:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12320,"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":12324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12322,"name":"_y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12295,"src":"4090:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12323,"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":12331,"nodeType":"IfStatement","src":"4074:48:47","trueBody":{"expression":{"components":[{"id":12326,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12287,"src":"4108:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12327,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12289,"src":"4113:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12328,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12291,"src":"4118:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12329,"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":12305,"id":12330,"nodeType":"Return","src":"4100:22:47"}},{"assignments":[12337],"declarations":[{"constant":false,"id":12337,"mutability":"mutable","name":"zs","nameLocation":"4291:2:47","nodeType":"VariableDeclaration","scope":12604,"src":"4273:20:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4]"},"typeName":{"baseType":{"id":12335,"name":"uint256","nodeType":"ElementaryTypeName","src":"4273:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12336,"length":{"hexValue":"34","id":12334,"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":12338,"nodeType":"VariableDeclarationStatement","src":"4273:20:47"},{"expression":{"id":12347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12339,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4330:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12341,"indexExpression":{"hexValue":"30","id":12340,"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":12343,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12291,"src":"4345:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12344,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12291,"src":"4350:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12345,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12342,"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":12346,"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":12348,"nodeType":"ExpressionStatement","src":"4330:27:47"},{"expression":{"id":12359,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12349,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4368:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12351,"indexExpression":{"hexValue":"31","id":12350,"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":12353,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12291,"src":"4383:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12354,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4388:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12356,"indexExpression":{"hexValue":"30","id":12355,"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":12357,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12352,"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":12358,"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":12360,"nodeType":"ExpressionStatement","src":"4368:29:47"},{"expression":{"id":12369,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12361,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4408:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12363,"indexExpression":{"hexValue":"32","id":12362,"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":12365,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12297,"src":"4423:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12366,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12297,"src":"4428:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12367,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12364,"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":12368,"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":12370,"nodeType":"ExpressionStatement","src":"4408:27:47"},{"expression":{"id":12381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12371,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4446:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12373,"indexExpression":{"hexValue":"33","id":12372,"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":12375,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12297,"src":"4461:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12376,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4466:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12378,"indexExpression":{"hexValue":"32","id":12377,"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":12379,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12374,"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":12380,"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":12382,"nodeType":"ExpressionStatement","src":"4446:29:47"},{"expression":{"id":12413,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12383,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4515:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"arguments":[{"id":12385,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12287,"src":"4528:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12386,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4533:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12388,"indexExpression":{"hexValue":"32","id":12387,"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":12389,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12384,"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":12390,"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":12392,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12289,"src":"4551:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12393,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4556:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12395,"indexExpression":{"hexValue":"33","id":12394,"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":12396,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12391,"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":12397,"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":12399,"name":"_x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12293,"src":"4574:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12400,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4579:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12402,"indexExpression":{"hexValue":"30","id":12401,"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":12403,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12398,"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":12404,"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":12406,"name":"_y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12295,"src":"4597:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"id":12407,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4602:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12409,"indexExpression":{"hexValue":"31","id":12408,"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":12410,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12405,"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":12411,"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":12412,"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":12414,"nodeType":"ExpressionStatement","src":"4515:97:47"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":12416,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4721:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12418,"indexExpression":{"hexValue":"30","id":12417,"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":12419,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4730:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12421,"indexExpression":{"hexValue":"32","id":12420,"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":12429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":12423,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4739:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12425,"indexExpression":{"hexValue":"31","id":12424,"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":12426,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4748:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12428,"indexExpression":{"hexValue":"33","id":12427,"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":12431,"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":12415,"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":12432,"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":12433,"nodeType":"ExpressionStatement","src":"4713:75:47"},{"assignments":[12439],"declarations":[{"constant":false,"id":12439,"mutability":"mutable","name":"hr","nameLocation":"4819:2:47","nodeType":"VariableDeclaration","scope":12604,"src":"4801:20:47","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4]"},"typeName":{"baseType":{"id":12437,"name":"uint256","nodeType":"ElementaryTypeName","src":"4801:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":12438,"length":{"hexValue":"34","id":12436,"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":12440,"nodeType":"VariableDeclarationStatement","src":"4801:20:47"},{"expression":{"id":12455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12441,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"4845:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12443,"indexExpression":{"hexValue":"30","id":12442,"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":12445,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4860:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12447,"indexExpression":{"hexValue":"32","id":12446,"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":12452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12448,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"4867:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"baseExpression":{"id":12449,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4871:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12451,"indexExpression":{"hexValue":"30","id":12450,"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":12453,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12444,"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":12454,"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":12456,"nodeType":"ExpressionStatement","src":"4845:35:47"},{"expression":{"id":12471,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12457,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"4904:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12459,"indexExpression":{"hexValue":"31","id":12458,"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":12461,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4919:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12463,"indexExpression":{"hexValue":"33","id":12462,"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":12468,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12464,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"4926:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"baseExpression":{"id":12465,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"4930:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12467,"indexExpression":{"hexValue":"31","id":12466,"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":12469,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12460,"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":12470,"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":12472,"nodeType":"ExpressionStatement","src":"4904:35:47"},{"expression":{"id":12485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12473,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"4965:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12475,"indexExpression":{"hexValue":"32","id":12474,"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":12477,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"4980:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12479,"indexExpression":{"hexValue":"30","id":12478,"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":12480,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"4987:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12482,"indexExpression":{"hexValue":"30","id":12481,"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":12483,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12476,"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":12484,"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":12486,"nodeType":"ExpressionStatement","src":"4965:31:47"},{"expression":{"id":12499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":12487,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5023:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12489,"indexExpression":{"hexValue":"33","id":12488,"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":12491,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5038:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12493,"indexExpression":{"hexValue":"32","id":12492,"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":12494,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5045:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12496,"indexExpression":{"hexValue":"30","id":12495,"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":12497,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12490,"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":12498,"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":12500,"nodeType":"ExpressionStatement","src":"5023:31:47"},{"assignments":[12502],"declarations":[{"constant":false,"id":12502,"mutability":"mutable","name":"qx","nameLocation":"5108:2:47","nodeType":"VariableDeclaration","scope":12604,"src":"5100:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12501,"name":"uint256","nodeType":"ElementaryTypeName","src":"5100:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12520,"initialValue":{"arguments":[{"arguments":[{"baseExpression":{"id":12505,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5127:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12507,"indexExpression":{"hexValue":"31","id":12506,"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":12508,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5134:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12510,"indexExpression":{"hexValue":"31","id":12509,"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":12511,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12504,"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":12512,"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":12517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12513,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"5145:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"baseExpression":{"id":12514,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5149:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12516,"indexExpression":{"hexValue":"33","id":12515,"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":12518,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12503,"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":12519,"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":12541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12521,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12502,"src":"5169:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12523,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12502,"src":"5181:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12524,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"5185:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"hexValue":"32","id":12526,"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":12528,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"5206:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12530,"indexExpression":{"hexValue":"30","id":12529,"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":12531,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5213:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12533,"indexExpression":{"hexValue":"32","id":12532,"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":12534,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12527,"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":12535,"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":12536,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12525,"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":12537,"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":12539,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12522,"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":12540,"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":12542,"nodeType":"ExpressionStatement","src":"5169:61:47"},{"assignments":[12544],"declarations":[{"constant":false,"id":12544,"mutability":"mutable","name":"qy","nameLocation":"5292:2:47","nodeType":"VariableDeclaration","scope":12604,"src":"5284:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12543,"name":"uint256","nodeType":"ElementaryTypeName","src":"5284:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12566,"initialValue":{"arguments":[{"baseExpression":{"id":12546,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5304:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12548,"indexExpression":{"hexValue":"31","id":12547,"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":12551,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"5325:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12553,"indexExpression":{"hexValue":"30","id":12552,"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":12554,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5332:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12556,"indexExpression":{"hexValue":"32","id":12555,"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":12557,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12550,"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":12558,"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":12561,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12559,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"5343:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12560,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12502,"src":"5347:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5343:6:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12562,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12549,"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":12563,"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":12564,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12545,"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":12565,"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":12583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12567,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12544,"src":"5368:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":12569,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12544,"src":"5380:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12580,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12570,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"5384:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"baseExpression":{"id":12572,"name":"zs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12337,"src":"5395:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12574,"indexExpression":{"hexValue":"31","id":12573,"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":12575,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5402:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12577,"indexExpression":{"hexValue":"33","id":12576,"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":12578,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12571,"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":12579,"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":12581,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12568,"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":12582,"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":12584,"nodeType":"ExpressionStatement","src":"5368:47:47"},{"assignments":[12586],"declarations":[{"constant":false,"id":12586,"mutability":"mutable","name":"qz","nameLocation":"5459:2:47","nodeType":"VariableDeclaration","scope":12604,"src":"5451:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12585,"name":"uint256","nodeType":"ElementaryTypeName","src":"5451:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12598,"initialValue":{"arguments":[{"baseExpression":{"id":12588,"name":"hr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12439,"src":"5471:2:47","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_memory_ptr","typeString":"uint256[4] memory"}},"id":12590,"indexExpression":{"hexValue":"30","id":12589,"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":12592,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12291,"src":"5485:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12593,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12297,"src":"5490:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12594,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12591,"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":12595,"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":12596,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12587,"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":12597,"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":12599,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12502,"src":"5520:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12600,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12544,"src":"5524:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12601,"name":"qz","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12586,"src":"5528:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12602,"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":12305,"id":12603,"nodeType":"Return","src":"5512:19:47"}]},"documentation":{"id":12285,"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":12605,"implemented":true,"kind":"function","modifiers":[],"name":"jacAdd","nameLocation":"3726:6:47","nodeType":"FunctionDefinition","parameters":{"id":12298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12287,"mutability":"mutable","name":"_x1","nameLocation":"3751:3:47","nodeType":"VariableDeclaration","scope":12605,"src":"3743:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12286,"name":"uint256","nodeType":"ElementaryTypeName","src":"3743:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12289,"mutability":"mutable","name":"_y1","nameLocation":"3773:3:47","nodeType":"VariableDeclaration","scope":12605,"src":"3765:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12288,"name":"uint256","nodeType":"ElementaryTypeName","src":"3765:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12291,"mutability":"mutable","name":"_z1","nameLocation":"3795:3:47","nodeType":"VariableDeclaration","scope":12605,"src":"3787:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12290,"name":"uint256","nodeType":"ElementaryTypeName","src":"3787:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12293,"mutability":"mutable","name":"_x2","nameLocation":"3817:3:47","nodeType":"VariableDeclaration","scope":12605,"src":"3809:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12292,"name":"uint256","nodeType":"ElementaryTypeName","src":"3809:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12295,"mutability":"mutable","name":"_y2","nameLocation":"3839:3:47","nodeType":"VariableDeclaration","scope":12605,"src":"3831:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12294,"name":"uint256","nodeType":"ElementaryTypeName","src":"3831:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12297,"mutability":"mutable","name":"_z2","nameLocation":"3861:3:47","nodeType":"VariableDeclaration","scope":12605,"src":"3853:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12296,"name":"uint256","nodeType":"ElementaryTypeName","src":"3853:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3732:139:47"},"returnParameters":{"id":12305,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12300,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12605,"src":"3936:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12299,"name":"uint256","nodeType":"ElementaryTypeName","src":"3936:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12302,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12605,"src":"3958:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12301,"name":"uint256","nodeType":"ElementaryTypeName","src":"3958:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12304,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12605,"src":"3980:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12303,"name":"uint256","nodeType":"ElementaryTypeName","src":"3980:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3921:77:47"},"scope":13068,"src":"3717:1822:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12698,"nodeType":"Block","src":"6140:560:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12623,"name":"_d","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12608,"src":"6203:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12624,"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":12632,"nodeType":"IfStatement","src":"6199:59:47","trueBody":{"id":12631,"nodeType":"Block","src":"6212:46:47","statements":[{"expression":{"components":[{"id":12626,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12610,"src":"6235:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12627,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12612,"src":"6239:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12628,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12614,"src":"6243:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12629,"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":12622,"id":12630,"nodeType":"Return","src":"6227:19:47"}]}},{"assignments":[12634],"declarations":[{"constant":false,"id":12634,"mutability":"mutable","name":"remaining","nameLocation":"6278:9:47","nodeType":"VariableDeclaration","scope":12698,"src":"6270:17:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12633,"name":"uint256","nodeType":"ElementaryTypeName","src":"6270:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12636,"initialValue":{"id":12635,"name":"_d","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12608,"src":"6290:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"6270:22:47"},{"assignments":[12638],"declarations":[{"constant":false,"id":12638,"mutability":"mutable","name":"qx","nameLocation":"6311:2:47","nodeType":"VariableDeclaration","scope":12698,"src":"6303:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12637,"name":"uint256","nodeType":"ElementaryTypeName","src":"6303:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12640,"initialValue":{"hexValue":"30","id":12639,"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":[12642],"declarations":[{"constant":false,"id":12642,"mutability":"mutable","name":"qy","nameLocation":"6336:2:47","nodeType":"VariableDeclaration","scope":12698,"src":"6328:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12641,"name":"uint256","nodeType":"ElementaryTypeName","src":"6328:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12644,"initialValue":{"hexValue":"30","id":12643,"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":[12646],"declarations":[{"constant":false,"id":12646,"mutability":"mutable","name":"qz","nameLocation":"6361:2:47","nodeType":"VariableDeclaration","scope":12698,"src":"6353:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12645,"name":"uint256","nodeType":"ElementaryTypeName","src":"6353:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12648,"initialValue":{"hexValue":"31","id":12647,"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":12691,"nodeType":"Block","src":"6440:223:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12652,"name":"remaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12634,"src":"6460:9:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"31","id":12653,"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":12655,"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":12656,"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":12673,"nodeType":"IfStatement","src":"6455:106:47","trueBody":{"id":12672,"nodeType":"Block","src":"6481:80:47","statements":[{"expression":{"id":12670,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":12658,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12638,"src":"6501:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12659,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12642,"src":"6505:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12660,"name":"qz","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12646,"src":"6509:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12661,"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":12663,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12638,"src":"6522:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12664,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12642,"src":"6526:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12665,"name":"qz","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12646,"src":"6530:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12666,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12610,"src":"6534:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12667,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12612,"src":"6538:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12668,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12614,"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":12662,"name":"jacAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12605,"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":12669,"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":12671,"nodeType":"ExpressionStatement","src":"6500:45:47"}]}},{"expression":{"id":12678,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12674,"name":"remaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12634,"src":"6575:9:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12677,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12675,"name":"remaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12634,"src":"6587:9:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":12676,"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":12679,"nodeType":"ExpressionStatement","src":"6575:25:47"},{"expression":{"id":12689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":12680,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12610,"src":"6616:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12681,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12612,"src":"6620:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12682,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12614,"src":"6624:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12683,"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":12685,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12610,"src":"6640:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12686,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12612,"src":"6644:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12687,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12614,"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":12684,"name":"jacDouble","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12844,"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":12688,"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":12690,"nodeType":"ExpressionStatement","src":"6615:36:47"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12651,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12649,"name":"remaining","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12634,"src":"6424:9:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":12650,"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":12692,"nodeType":"WhileStatement","src":"6417:246:47"},{"expression":{"components":[{"id":12693,"name":"qx","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12638,"src":"6681:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12694,"name":"qy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12642,"src":"6685:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12695,"name":"qz","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12646,"src":"6689:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12696,"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":12622,"id":12697,"nodeType":"Return","src":"6673:19:47"}]},"documentation":{"id":12606,"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":12699,"implemented":true,"kind":"function","modifiers":[],"name":"jacMul","nameLocation":"5910:6:47","nodeType":"FunctionDefinition","parameters":{"id":12615,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12608,"mutability":"mutable","name":"_d","nameLocation":"5935:2:47","nodeType":"VariableDeclaration","scope":12699,"src":"5927:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12607,"name":"uint256","nodeType":"ElementaryTypeName","src":"5927:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12610,"mutability":"mutable","name":"_x","nameLocation":"5956:2:47","nodeType":"VariableDeclaration","scope":12699,"src":"5948:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12609,"name":"uint256","nodeType":"ElementaryTypeName","src":"5948:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12612,"mutability":"mutable","name":"_y","nameLocation":"5977:2:47","nodeType":"VariableDeclaration","scope":12699,"src":"5969:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12611,"name":"uint256","nodeType":"ElementaryTypeName","src":"5969:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12614,"mutability":"mutable","name":"_z","nameLocation":"5998:2:47","nodeType":"VariableDeclaration","scope":12699,"src":"5990:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12613,"name":"uint256","nodeType":"ElementaryTypeName","src":"5990:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5916:91:47"},"returnParameters":{"id":12622,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12617,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12699,"src":"6072:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12616,"name":"uint256","nodeType":"ElementaryTypeName","src":"6072:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12619,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12699,"src":"6094:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12618,"name":"uint256","nodeType":"ElementaryTypeName","src":"6094:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12621,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12699,"src":"6116:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12620,"name":"uint256","nodeType":"ElementaryTypeName","src":"6116:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6057:77:47"},"scope":13068,"src":"5901:799:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12843,"nodeType":"Block","src":"7237:1149:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12715,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12706,"src":"7252:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":12716,"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":12723,"nodeType":"IfStatement","src":"7248:32:47","trueBody":{"expression":{"components":[{"id":12718,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12702,"src":"7269:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12719,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12704,"src":"7273:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12720,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12706,"src":"7277:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12721,"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":12714,"id":12722,"nodeType":"Return","src":"7261:19:47"}},{"assignments":[12725],"declarations":[{"constant":false,"id":12725,"mutability":"mutable","name":"x","nameLocation":"7602:1:47","nodeType":"VariableDeclaration","scope":12843,"src":"7594:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12724,"name":"uint256","nodeType":"ElementaryTypeName","src":"7594:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12731,"initialValue":{"arguments":[{"id":12727,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12702,"src":"7613:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12728,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12702,"src":"7617:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12729,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12726,"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":12730,"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":[12733],"declarations":[{"constant":false,"id":12733,"mutability":"mutable","name":"y","nameLocation":"7649:1:47","nodeType":"VariableDeclaration","scope":12843,"src":"7641:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12732,"name":"uint256","nodeType":"ElementaryTypeName","src":"7641:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12739,"initialValue":{"arguments":[{"id":12735,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12704,"src":"7660:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12736,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12704,"src":"7664:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12737,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12734,"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":12738,"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":[12741],"declarations":[{"constant":false,"id":12741,"mutability":"mutable","name":"z","nameLocation":"7696:1:47","nodeType":"VariableDeclaration","scope":12843,"src":"7688:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12740,"name":"uint256","nodeType":"ElementaryTypeName","src":"7688:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12747,"initialValue":{"arguments":[{"id":12743,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12706,"src":"7707:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12744,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12706,"src":"7711:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12745,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12742,"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":12746,"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":[12749],"declarations":[{"constant":false,"id":12749,"mutability":"mutable","name":"s","nameLocation":"7759:1:47","nodeType":"VariableDeclaration","scope":12843,"src":"7751:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12748,"name":"uint256","nodeType":"ElementaryTypeName","src":"7751:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12759,"initialValue":{"arguments":[{"hexValue":"34","id":12751,"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":12753,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12702,"src":"7780:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12754,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12733,"src":"7784:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12755,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12752,"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":12756,"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":12757,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12750,"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":12758,"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":[12761],"declarations":[{"constant":false,"id":12761,"mutability":"mutable","name":"m","nameLocation":"7826:1:47","nodeType":"VariableDeclaration","scope":12843,"src":"7818:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12760,"name":"uint256","nodeType":"ElementaryTypeName","src":"7818:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12779,"initialValue":{"arguments":[{"arguments":[{"hexValue":"33","id":12764,"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":12765,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12725,"src":"7847:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12766,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12763,"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":12767,"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":12769,"name":"A","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12061,"src":"7861:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12771,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12741,"src":"7871:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12772,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12741,"src":"7874:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12773,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12770,"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":12774,"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":12775,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12768,"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":12776,"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":12777,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12762,"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":12778,"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":12796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12780,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12725,"src":"8099:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":12783,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12761,"src":"8117:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12784,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12761,"src":"8120:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12785,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12782,"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":12786,"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":12793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12787,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"8127:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":12789,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12749,"src":"8138:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12790,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12749,"src":"8141:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12791,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12788,"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":12792,"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":12794,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12781,"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":12795,"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":12797,"nodeType":"ExpressionStatement","src":"8099:51:47"},{"expression":{"id":12824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12798,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12733,"src":"8195:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":12801,"name":"m","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12761,"src":"8213:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12803,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12749,"src":"8223:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12804,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"8226:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":12805,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12725,"src":"8230:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"8226:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12807,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12802,"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":12808,"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":12809,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12800,"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":12810,"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":12821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12811,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"8241:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"hexValue":"38","id":12813,"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":12815,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12733,"src":"8262:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12816,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12733,"src":"8265:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12817,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12814,"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":12818,"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":12819,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12812,"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":12820,"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":12822,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12799,"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":12823,"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":12825,"nodeType":"ExpressionStatement","src":"8195:83:47"},{"expression":{"id":12836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":12826,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12741,"src":"8314:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"32","id":12828,"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":12830,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12704,"src":"8335:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12831,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12706,"src":"8339:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12832,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12829,"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":12833,"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":12834,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12827,"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":12835,"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":12837,"nodeType":"ExpressionStatement","src":"8314:35:47"},{"expression":{"components":[{"id":12838,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12725,"src":"8370:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12839,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12733,"src":"8373:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12840,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12741,"src":"8376:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12841,"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":12714,"id":12842,"nodeType":"Return","src":"8362:16:47"}]},"documentation":{"id":12700,"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":12844,"implemented":true,"kind":"function","modifiers":[],"name":"jacDouble","nameLocation":"7025:9:47","nodeType":"FunctionDefinition","parameters":{"id":12707,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12702,"mutability":"mutable","name":"_x","nameLocation":"7053:2:47","nodeType":"VariableDeclaration","scope":12844,"src":"7045:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12701,"name":"uint256","nodeType":"ElementaryTypeName","src":"7045:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12704,"mutability":"mutable","name":"_y","nameLocation":"7074:2:47","nodeType":"VariableDeclaration","scope":12844,"src":"7066:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12703,"name":"uint256","nodeType":"ElementaryTypeName","src":"7066:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12706,"mutability":"mutable","name":"_z","nameLocation":"7095:2:47","nodeType":"VariableDeclaration","scope":12844,"src":"7087:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12705,"name":"uint256","nodeType":"ElementaryTypeName","src":"7087:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7034:70:47"},"returnParameters":{"id":12714,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12709,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12844,"src":"7169:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12708,"name":"uint256","nodeType":"ElementaryTypeName","src":"7169:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12711,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12844,"src":"7191:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12710,"name":"uint256","nodeType":"ElementaryTypeName","src":"7191:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12713,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12844,"src":"7213:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12712,"name":"uint256","nodeType":"ElementaryTypeName","src":"7213:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7154:77:47"},"scope":13068,"src":"7016:1370:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12927,"nodeType":"Block","src":"8982:533:47","statements":[{"assignments":[12865],"declarations":[{"constant":false,"id":12865,"mutability":"mutable","name":"x","nameLocation":"9001:1:47","nodeType":"VariableDeclaration","scope":12927,"src":"8993:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12864,"name":"uint256","nodeType":"ElementaryTypeName","src":"8993:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12867,"initialValue":{"hexValue":"30","id":12866,"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":[12869],"declarations":[{"constant":false,"id":12869,"mutability":"mutable","name":"y","nameLocation":"9025:1:47","nodeType":"VariableDeclaration","scope":12927,"src":"9017:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12868,"name":"uint256","nodeType":"ElementaryTypeName","src":"9017:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12871,"initialValue":{"hexValue":"30","id":12870,"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":[12873],"declarations":[{"constant":false,"id":12873,"mutability":"mutable","name":"z","nameLocation":"9049:1:47","nodeType":"VariableDeclaration","scope":12927,"src":"9041:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12872,"name":"uint256","nodeType":"ElementaryTypeName","src":"9041:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12875,"initialValue":{"hexValue":"30","id":12874,"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":12878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12876,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12847,"src":"9109:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":12877,"name":"_x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12853,"src":"9116:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"9109:10:47","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":12919,"nodeType":"Block","src":"9367:75:47","statements":[{"expression":{"id":12917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":12905,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12865,"src":"9383:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12906,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"9386:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12907,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12873,"src":"9389:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12908,"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":12910,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12847,"src":"9401:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12911,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12849,"src":"9406:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12912,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12851,"src":"9411:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12913,"name":"_x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12853,"src":"9416:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12914,"name":"_y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12855,"src":"9421:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12915,"name":"_z2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12857,"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":12909,"name":"jacAdd","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12605,"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":12916,"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":12918,"nodeType":"ExpressionStatement","src":"9382:48:47"}]},"id":12920,"nodeType":"IfStatement","src":"9105:337:47","trueBody":{"id":12904,"nodeType":"Block","src":"9121:240:47","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":12880,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12849,"src":"9178:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12881,"name":"_y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12855,"src":"9183:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12882,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12879,"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":12883,"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":12884,"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":12902,"nodeType":"Block","src":"9251:99:47","statements":[{"expression":{"id":12900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":12891,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12865,"src":"9299:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12892,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"9302:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12893,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12873,"src":"9305:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12894,"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":12896,"name":"_x1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12847,"src":"9320:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12897,"name":"_y1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12849,"src":"9325:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12898,"name":"_z1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12851,"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":12895,"name":"jacDouble","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12844,"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":12899,"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":12901,"nodeType":"ExpressionStatement","src":"9298:36:47"}]},"id":12903,"nodeType":"IfStatement","src":"9167:183:47","trueBody":{"id":12890,"nodeType":"Block","src":"9197:48:47","statements":[{"expression":{"components":[{"hexValue":"30","id":12886,"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":12887,"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":12888,"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":12863,"id":12889,"nodeType":"Return","src":"9216:13:47"}]}}]}},{"expression":{"arguments":[{"id":12922,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12865,"src":"9499:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12923,"name":"y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12869,"src":"9502:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12924,"name":"z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12873,"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":12921,"name":"toAffine","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12982,"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":12925,"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":12863,"id":12926,"nodeType":"Return","src":"9483:24:47"}]},"documentation":{"id":12845,"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":12928,"implemented":true,"kind":"function","modifiers":[],"name":"ecAdd","nameLocation":"8796:5:47","nodeType":"FunctionDefinition","parameters":{"id":12858,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12847,"mutability":"mutable","name":"_x1","nameLocation":"8820:3:47","nodeType":"VariableDeclaration","scope":12928,"src":"8812:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12846,"name":"uint256","nodeType":"ElementaryTypeName","src":"8812:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12849,"mutability":"mutable","name":"_y1","nameLocation":"8842:3:47","nodeType":"VariableDeclaration","scope":12928,"src":"8834:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12848,"name":"uint256","nodeType":"ElementaryTypeName","src":"8834:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12851,"mutability":"mutable","name":"_z1","nameLocation":"8864:3:47","nodeType":"VariableDeclaration","scope":12928,"src":"8856:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12850,"name":"uint256","nodeType":"ElementaryTypeName","src":"8856:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12853,"mutability":"mutable","name":"_x2","nameLocation":"8886:3:47","nodeType":"VariableDeclaration","scope":12928,"src":"8878:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12852,"name":"uint256","nodeType":"ElementaryTypeName","src":"8878:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12855,"mutability":"mutable","name":"_y2","nameLocation":"8908:3:47","nodeType":"VariableDeclaration","scope":12928,"src":"8900:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12854,"name":"uint256","nodeType":"ElementaryTypeName","src":"8900:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12857,"mutability":"mutable","name":"_z2","nameLocation":"8930:3:47","nodeType":"VariableDeclaration","scope":12928,"src":"8922:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12856,"name":"uint256","nodeType":"ElementaryTypeName","src":"8922:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8801:139:47"},"returnParameters":{"id":12863,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12860,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12928,"src":"8964:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12859,"name":"uint256","nodeType":"ElementaryTypeName","src":"8964:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12862,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12928,"src":"8973:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12861,"name":"uint256","nodeType":"ElementaryTypeName","src":"8973:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8963:18:47"},"scope":13068,"src":"8787:728:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":12981,"nodeType":"Block","src":"10010:228:47","statements":[{"assignments":[12943],"declarations":[{"constant":false,"id":12943,"mutability":"mutable","name":"zInv","nameLocation":"10029:4:47","nodeType":"VariableDeclaration","scope":12981,"src":"10021:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12942,"name":"uint256","nodeType":"ElementaryTypeName","src":"10021:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12948,"initialValue":{"arguments":[{"id":12945,"name":"_z","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12935,"src":"10043:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12946,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"src":"10047:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":12944,"name":"invMod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13067,"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":12947,"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":[12950],"declarations":[{"constant":false,"id":12950,"mutability":"mutable","name":"zInv2","nameLocation":"10068:5:47","nodeType":"VariableDeclaration","scope":12981,"src":"10060:13:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12949,"name":"uint256","nodeType":"ElementaryTypeName","src":"10060:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12956,"initialValue":{"arguments":[{"id":12952,"name":"zInv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12943,"src":"10083:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12953,"name":"zInv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12943,"src":"10089:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12954,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12951,"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":12955,"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":[12958],"declarations":[{"constant":false,"id":12958,"mutability":"mutable","name":"x2","nameLocation":"10116:2:47","nodeType":"VariableDeclaration","scope":12981,"src":"10108:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12957,"name":"uint256","nodeType":"ElementaryTypeName","src":"10108:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12964,"initialValue":{"arguments":[{"id":12960,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12931,"src":"10128:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12961,"name":"zInv2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12950,"src":"10132:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12962,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12959,"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":12963,"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":[12966],"declarations":[{"constant":false,"id":12966,"mutability":"mutable","name":"y2","nameLocation":"10160:2:47","nodeType":"VariableDeclaration","scope":12981,"src":"10152:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12965,"name":"uint256","nodeType":"ElementaryTypeName","src":"10152:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":12976,"initialValue":{"arguments":[{"id":12968,"name":"_y","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12933,"src":"10172:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":12970,"name":"zInv","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12943,"src":"10183:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12971,"name":"zInv2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12950,"src":"10189:5:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12972,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12969,"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":12973,"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":12974,"name":"P","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12073,"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":12967,"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":12975,"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":12977,"name":"x2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12958,"src":"10223:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":12978,"name":"y2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12966,"src":"10227:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":12979,"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":12941,"id":12980,"nodeType":"Return","src":"10215:15:47"}]},"documentation":{"id":12929,"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":12982,"implemented":true,"kind":"function","modifiers":[],"name":"toAffine","nameLocation":"9890:8:47","nodeType":"FunctionDefinition","parameters":{"id":12936,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12931,"mutability":"mutable","name":"_x","nameLocation":"9917:2:47","nodeType":"VariableDeclaration","scope":12982,"src":"9909:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12930,"name":"uint256","nodeType":"ElementaryTypeName","src":"9909:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12933,"mutability":"mutable","name":"_y","nameLocation":"9938:2:47","nodeType":"VariableDeclaration","scope":12982,"src":"9930:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12932,"name":"uint256","nodeType":"ElementaryTypeName","src":"9930:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12935,"mutability":"mutable","name":"_z","nameLocation":"9959:2:47","nodeType":"VariableDeclaration","scope":12982,"src":"9951:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12934,"name":"uint256","nodeType":"ElementaryTypeName","src":"9951:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9898:70:47"},"returnParameters":{"id":12941,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12938,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12982,"src":"9992:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12937,"name":"uint256","nodeType":"ElementaryTypeName","src":"9992:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12940,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":12982,"src":"10001:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12939,"name":"uint256","nodeType":"ElementaryTypeName","src":"10001:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9991:18:47"},"scope":13068,"src":"9881:357:47","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13066,"nodeType":"Block","src":"10596:379:47","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":13003,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":12999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":12995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12993,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12985,"src":"10615:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":12994,"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":12998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":12996,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12985,"src":"10626:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":12997,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12987,"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":13002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13000,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12987,"src":"10639:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":13001,"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":13004,"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":12992,"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":13005,"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":13006,"nodeType":"ExpressionStatement","src":"10607:59:47"},{"assignments":[13008],"declarations":[{"constant":false,"id":13008,"mutability":"mutable","name":"q","nameLocation":"10685:1:47","nodeType":"VariableDeclaration","scope":13066,"src":"10677:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13007,"name":"uint256","nodeType":"ElementaryTypeName","src":"10677:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13010,"initialValue":{"hexValue":"30","id":13009,"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":[13012],"declarations":[{"constant":false,"id":13012,"mutability":"mutable","name":"newT","nameLocation":"10709:4:47","nodeType":"VariableDeclaration","scope":13066,"src":"10701:12:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13011,"name":"uint256","nodeType":"ElementaryTypeName","src":"10701:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13014,"initialValue":{"hexValue":"31","id":13013,"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":[13016],"declarations":[{"constant":false,"id":13016,"mutability":"mutable","name":"r","nameLocation":"10736:1:47","nodeType":"VariableDeclaration","scope":13066,"src":"10728:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13015,"name":"uint256","nodeType":"ElementaryTypeName","src":"10728:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13018,"initialValue":{"id":13017,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12987,"src":"10740:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"10728:15:47"},{"assignments":[13020],"declarations":[{"constant":false,"id":13020,"mutability":"mutable","name":"t","nameLocation":"10762:1:47","nodeType":"VariableDeclaration","scope":13066,"src":"10754:9:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13019,"name":"uint256","nodeType":"ElementaryTypeName","src":"10754:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":13021,"nodeType":"VariableDeclarationStatement","src":"10754:9:47"},{"body":{"id":13062,"nodeType":"Block","src":"10790:157:47","statements":[{"expression":{"id":13029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":13025,"name":"t","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13020,"src":"10805:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13028,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13026,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13016,"src":"10809:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":13027,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12985,"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":13030,"nodeType":"ExpressionStatement","src":"10805:10:47"},{"expression":{"id":13048,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":13031,"name":"q","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13008,"src":"10831:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13032,"name":"newT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13012,"src":"10834:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13033,"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":13034,"name":"newT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13012,"src":"10843:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":13036,"name":"q","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13008,"src":"10856:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13037,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12987,"src":"10860:3:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[{"id":13039,"name":"t","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13020,"src":"10873:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13040,"name":"newT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13012,"src":"10876:4:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13041,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12987,"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":13038,"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":13042,"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":13044,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"10859:28:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13045,"name":"_pp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12987,"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":13035,"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":13046,"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":13047,"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":13049,"nodeType":"ExpressionStatement","src":"10830:64:47"},{"expression":{"id":13060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"components":[{"id":13050,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13016,"src":"10910:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":13051,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12985,"src":"10913:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":13052,"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":13053,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12985,"src":"10920:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13054,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13016,"src":"10924:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13055,"name":"t","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13020,"src":"10928:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":13056,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12985,"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":13059,"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":13061,"nodeType":"ExpressionStatement","src":"10909:26:47"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13024,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":13022,"name":"_x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12985,"src":"10781:2:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":13023,"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":13063,"nodeType":"WhileStatement","src":"10774:173:47"},{"expression":{"id":13064,"name":"q","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13008,"src":"10966:1:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":12991,"id":13065,"nodeType":"Return","src":"10959:8:47"}]},"documentation":{"id":12983,"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":13067,"implemented":true,"kind":"function","modifiers":[],"name":"invMod","nameLocation":"10532:6:47","nodeType":"FunctionDefinition","parameters":{"id":12988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12985,"mutability":"mutable","name":"_x","nameLocation":"10547:2:47","nodeType":"VariableDeclaration","scope":13067,"src":"10539:10:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12984,"name":"uint256","nodeType":"ElementaryTypeName","src":"10539:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":12987,"mutability":"mutable","name":"_pp","nameLocation":"10559:3:47","nodeType":"VariableDeclaration","scope":13067,"src":"10551:11:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12986,"name":"uint256","nodeType":"ElementaryTypeName","src":"10551:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10538:25:47"},"returnParameters":{"id":12991,"nodeType":"ParameterList","parameters":[{"constant":false,"id":12990,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13067,"src":"10587:7:47","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":12989,"name":"uint256","nodeType":"ElementaryTypeName","src":"10587:7:47","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10586:9:47"},"scope":13068,"src":"10523:452:47","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":13069,"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":[12052],"Secp256k1":[13068],"Witnet":[16619],"WitnetBuffer":[18509],"WitnetCBOR":[20052]},"id":16620,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":13070,"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":13071,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16620,"sourceUnit":12053,"src":"70:22:48","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/libs/Secp256k1.sol","file":"./Secp256k1.sol","id":13072,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16620,"sourceUnit":13069,"src":"94:25:48","symbolAliases":[],"unitAlias":""},{"absolutePath":"witnet-solidity-bridge/contracts/libs/WitnetCBOR.sol","file":"./WitnetCBOR.sol","id":13073,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":16620,"sourceUnit":20053,"src":"121:26:48","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"Witnet","contractDependencies":[],"contractKind":"library","fullyImplemented":true,"id":16619,"linearizedBaseContracts":[16619],"name":"Witnet","nameLocation":"159:6:48","nodeType":"ContractDefinition","nodes":[{"global":false,"id":13077,"libraryName":{"id":13074,"name":"Bech32","nameLocations":["181:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":12052,"src":"181:6:48"},"nodeType":"UsingForDirective","src":"175:32:48","typeName":{"id":13076,"nodeType":"UserDefinedTypeName","pathNode":{"id":13075,"name":"Witnet.Address","nameLocations":["192:6:48","199:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13092,"src":"192:14:48"},"referencedDeclaration":13092,"src":"192:14:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}}},{"global":false,"id":13081,"libraryName":{"id":13078,"name":"WitnetBuffer","nameLocations":["219:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":18509,"src":"219:12:48"},"nodeType":"UsingForDirective","src":"213:43:48","typeName":{"id":13080,"nodeType":"UserDefinedTypeName","pathNode":{"id":13079,"name":"WitnetBuffer.Buffer","nameLocations":["236:12:48","249:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"236:19:48"},"referencedDeclaration":16642,"src":"236:19:48","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}}},{"global":false,"id":13085,"libraryName":{"id":13082,"name":"WitnetCBOR","nameLocations":["268:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":20052,"src":"268:10:48"},"nodeType":"UsingForDirective","src":"262:37:48","typeName":{"id":13084,"nodeType":"UserDefinedTypeName","pathNode":{"id":13083,"name":"WitnetCBOR.CBOR","nameLocations":["283:10:48","294:4:48"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"283:15:48"},"referencedDeclaration":18536,"src":"283:15:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}}},{"global":false,"id":13090,"libraryName":{"id":13086,"name":"WitnetCBOR","nameLocations":["311:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":20052,"src":"311:10:48"},"nodeType":"UsingForDirective","src":"305:39:48","typeName":{"baseType":{"id":13088,"nodeType":"UserDefinedTypeName","pathNode":{"id":13087,"name":"WitnetCBOR.CBOR","nameLocations":["326:10:48","337:4:48"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"326:15:48"},"referencedDeclaration":18536,"src":"326:15:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":13089,"nodeType":"ArrayTypeName","src":"326:17:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}}},{"canonicalName":"Witnet.Address","id":13092,"name":"Address","nameLocation":"357:7:48","nodeType":"UserDefinedValueTypeDefinition","src":"352:24:48","underlyingType":{"id":13091,"name":"bytes20","nodeType":"ElementaryTypeName","src":"368:7:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}},{"canonicalName":"Witnet.BlockNumber","id":13094,"name":"BlockNumber","nameLocation":"389:11:48","nodeType":"UserDefinedValueTypeDefinition","src":"384:27:48","underlyingType":{"id":13093,"name":"uint64","nodeType":"ElementaryTypeName","src":"404:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}},{"canonicalName":"Witnet.QueryEvmReward","id":13096,"name":"QueryEvmReward","nameLocation":"428:14:48","nodeType":"UserDefinedValueTypeDefinition","src":"423:30:48","underlyingType":{"id":13095,"name":"uint72","nodeType":"ElementaryTypeName","src":"446:6:48","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}}},{"canonicalName":"Witnet.QueryHash","id":13098,"name":"QueryHash","nameLocation":"464:9:48","nodeType":"UserDefinedValueTypeDefinition","src":"459:26:48","underlyingType":{"id":13097,"name":"bytes15","nodeType":"ElementaryTypeName","src":"477:7:48","typeDescriptions":{"typeIdentifier":"t_bytes15","typeString":"bytes15"}}},{"canonicalName":"Witnet.QueryId","id":13100,"name":"QueryId","nameLocation":"496:7:48","nodeType":"UserDefinedValueTypeDefinition","src":"491:23:48","underlyingType":{"id":13099,"name":"uint64","nodeType":"ElementaryTypeName","src":"507:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}},{"canonicalName":"Witnet.RadonHash","id":13102,"name":"RadonHash","nameLocation":"527:9:48","nodeType":"UserDefinedValueTypeDefinition","src":"522:26:48","underlyingType":{"id":13101,"name":"bytes32","nodeType":"ElementaryTypeName","src":"540:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"canonicalName":"Witnet.ServiceProvider","id":13104,"name":"ServiceProvider","nameLocation":"559:15:48","nodeType":"UserDefinedValueTypeDefinition","src":"554:32:48","underlyingType":{"id":13103,"name":"bytes20","nodeType":"ElementaryTypeName","src":"578:7:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}}},{"canonicalName":"Witnet.Timestamp","id":13106,"name":"Timestamp","nameLocation":"603:9:48","nodeType":"UserDefinedValueTypeDefinition","src":"598:25:48","underlyingType":{"id":13105,"name":"uint64","nodeType":"ElementaryTypeName","src":"616:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}},{"canonicalName":"Witnet.TransactionHash","id":13108,"name":"TransactionHash","nameLocation":"634:15:48","nodeType":"UserDefinedValueTypeDefinition","src":"629:32:48","underlyingType":{"id":13107,"name":"bytes32","nodeType":"ElementaryTypeName","src":"653:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}},{"constant":true,"id":13111,"mutability":"constant","name":"WIT_1_GENESIS_TIMESTAMP","nameLocation":"695:23:48","nodeType":"VariableDeclaration","scope":16619,"src":"669:53:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13109,"name":"uint32","nodeType":"ElementaryTypeName","src":"669:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30","id":13110,"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":13114,"mutability":"constant","name":"WIT_1_SECS_PER_EPOCH","nameLocation":"766:20:48","nodeType":"VariableDeclaration","scope":16619,"src":"740:51:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13112,"name":"uint32","nodeType":"ElementaryTypeName","src":"740:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"3435","id":13113,"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":13117,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_INDEX","nameLocation":"826:26:48","nodeType":"VariableDeclaration","scope":16619,"src":"800:56:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13115,"name":"uint32","nodeType":"ElementaryTypeName","src":"800:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30","id":13116,"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":13120,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_PREV_INDEX","nameLocation":"902:31:48","nodeType":"VariableDeclaration","scope":16619,"src":"876:61:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13118,"name":"uint32","nodeType":"ElementaryTypeName","src":"876:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30","id":13119,"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":13123,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_PREV_ROOT","nameLocation":"978:30:48","nodeType":"VariableDeclaration","scope":16619,"src":"952:60:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13121,"name":"bytes24","nodeType":"ElementaryTypeName","src":"952:7:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"value":{"hexValue":"30","id":13122,"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":13126,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_DDR_TALLIES_MERKLE_ROOT","nameLocation":"1054:44:48","nodeType":"VariableDeclaration","scope":16619,"src":"1028:74:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13124,"name":"bytes16","nodeType":"ElementaryTypeName","src":"1028:7:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30","id":13125,"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":13129,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_DRO_TALLIES_MERKLE_ROOT","nameLocation":"1143:44:48","nodeType":"VariableDeclaration","scope":16619,"src":"1117:74:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13127,"name":"bytes16","nodeType":"ElementaryTypeName","src":"1117:7:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"value":{"hexValue":"30","id":13128,"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":13132,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_0","nameLocation":"1232:48:48","nodeType":"VariableDeclaration","scope":16619,"src":"1206:78:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13130,"name":"uint256","nodeType":"ElementaryTypeName","src":"1206:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":13131,"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":13135,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_1","nameLocation":"1324:48:48","nodeType":"VariableDeclaration","scope":16619,"src":"1298:78:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13133,"name":"uint256","nodeType":"ElementaryTypeName","src":"1298:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":13134,"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":13138,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_2","nameLocation":"1416:48:48","nodeType":"VariableDeclaration","scope":16619,"src":"1390:78:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13136,"name":"uint256","nodeType":"ElementaryTypeName","src":"1390:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":13137,"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":13141,"mutability":"constant","name":"WIT_2_GENESIS_BEACON_NEXT_COMMITTEE_AGG_PUBKEY_3","nameLocation":"1508:48:48","nodeType":"VariableDeclaration","scope":16619,"src":"1482:78:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":13139,"name":"uint256","nodeType":"ElementaryTypeName","src":"1482:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":13140,"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":13144,"mutability":"constant","name":"WIT_2_GENESIS_EPOCH","nameLocation":"1600:19:48","nodeType":"VariableDeclaration","scope":16619,"src":"1574:49:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13142,"name":"uint32","nodeType":"ElementaryTypeName","src":"1574:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30","id":13143,"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":13147,"mutability":"constant","name":"WIT_2_GENESIS_TIMESTAMP","nameLocation":"1668:23:48","nodeType":"VariableDeclaration","scope":16619,"src":"1642:53:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13145,"name":"uint32","nodeType":"ElementaryTypeName","src":"1642:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"30","id":13146,"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":13150,"mutability":"constant","name":"WIT_2_SECS_PER_EPOCH","nameLocation":"1736:20:48","nodeType":"VariableDeclaration","scope":16619,"src":"1710:51:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13148,"name":"uint32","nodeType":"ElementaryTypeName","src":"1710:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"3230","id":13149,"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":13153,"mutability":"constant","name":"WIT_2_FAST_FORWARD_COMMITTEE_SIZE","nameLocation":"1804:33:48","nodeType":"VariableDeclaration","scope":16619,"src":"1778:64:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13151,"name":"uint32","nodeType":"ElementaryTypeName","src":"1778:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"hexValue":"3634","id":13152,"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":13175,"nodeType":"Block","src":"1921:84:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"id":13167,"name":"wrb","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13155,"src":"1975:3:48","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":13166,"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":13165,"name":"address","nodeType":"ElementaryTypeName","src":"1967:7:48","typeDescriptions":{}}},"id":13168,"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":13169,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"1981:5:48","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":13170,"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":13163,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"1956:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":13164,"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":13171,"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":13162,"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":13172,"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":13161,"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":13160,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1939:6:48","typeDescriptions":{}}},"id":13173,"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":13159,"id":13174,"nodeType":"Return","src":"1932:65:48"}]},"id":13176,"implemented":true,"kind":"function","modifiers":[],"name":"channel","nameLocation":"1869:7:48","nodeType":"FunctionDefinition","parameters":{"id":13156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13155,"mutability":"mutable","name":"wrb","nameLocation":"1885:3:48","nodeType":"VariableDeclaration","scope":13176,"src":"1877:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13154,"name":"address","nodeType":"ElementaryTypeName","src":"1877:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1876:13:48"},"returnParameters":{"id":13159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13158,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13176,"src":"1913:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":13157,"name":"bytes4","nodeType":"ElementaryTypeName","src":"1913:6:48","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"1912:8:48"},"scope":16619,"src":"1860:145:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"canonicalName":"Witnet.Beacon","id":13191,"members":[{"constant":false,"id":13178,"mutability":"mutable","name":"index","nameLocation":"2046:5:48","nodeType":"VariableDeclaration","scope":13191,"src":"2038:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13177,"name":"uint32","nodeType":"ElementaryTypeName","src":"2038:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13180,"mutability":"mutable","name":"prevIndex","nameLocation":"2070:9:48","nodeType":"VariableDeclaration","scope":13191,"src":"2062:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13179,"name":"uint32","nodeType":"ElementaryTypeName","src":"2062:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13182,"mutability":"mutable","name":"prevRoot","nameLocation":"2098:8:48","nodeType":"VariableDeclaration","scope":13191,"src":"2090:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13181,"name":"bytes24","nodeType":"ElementaryTypeName","src":"2090:7:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"},{"constant":false,"id":13184,"mutability":"mutable","name":"ddrTalliesMerkleRoot","nameLocation":"2125:20:48","nodeType":"VariableDeclaration","scope":13191,"src":"2117:28:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13183,"name":"bytes16","nodeType":"ElementaryTypeName","src":"2117:7:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":13186,"mutability":"mutable","name":"droTalliesMerkleRoot","nameLocation":"2164:20:48","nodeType":"VariableDeclaration","scope":13191,"src":"2156:28:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"},"typeName":{"id":13185,"name":"bytes16","nodeType":"ElementaryTypeName","src":"2156:7:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},"visibility":"internal"},{"constant":false,"id":13190,"mutability":"mutable","name":"nextCommitteeAggPubkey","nameLocation":"2206:22:48","nodeType":"VariableDeclaration","scope":13191,"src":"2195:33:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$4_storage_ptr","typeString":"uint256[4]"},"typeName":{"baseType":{"id":13187,"name":"uint256","nodeType":"ElementaryTypeName","src":"2195:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13189,"length":{"hexValue":"34","id":13188,"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":16619,"src":"2013:223:48","visibility":"public"},{"canonicalName":"Witnet.DataPullReport","id":13208,"members":[{"constant":false,"id":13194,"mutability":"mutable","name":"queryId","nameLocation":"2285:7:48","nodeType":"VariableDeclaration","scope":13208,"src":"2277:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"},"typeName":{"id":13193,"nodeType":"UserDefinedTypeName","pathNode":{"id":13192,"name":"QueryId","nameLocations":["2277:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13100,"src":"2277:7:48"},"referencedDeclaration":13100,"src":"2277:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":13197,"mutability":"mutable","name":"queryHash","nameLocation":"2313:9:48","nodeType":"VariableDeclaration","scope":13208,"src":"2303:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"},"typeName":{"id":13196,"nodeType":"UserDefinedTypeName","pathNode":{"id":13195,"name":"QueryHash","nameLocations":["2303:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13098,"src":"2303:9:48"},"referencedDeclaration":13098,"src":"2303:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"}},"visibility":"internal"},{"constant":false,"id":13199,"mutability":"mutable","name":"witDrRelayerSignature","nameLocation":"2407:21:48","nodeType":"VariableDeclaration","scope":13208,"src":"2401:27:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13198,"name":"bytes","nodeType":"ElementaryTypeName","src":"2401:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":13202,"mutability":"mutable","name":"witDrResultEpoch","nameLocation":"2483:16:48","nodeType":"VariableDeclaration","scope":13208,"src":"2471:28:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":13201,"nodeType":"UserDefinedTypeName","pathNode":{"id":13200,"name":"BlockNumber","nameLocations":["2471:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"2471:11:48"},"referencedDeclaration":13094,"src":"2471:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"},{"constant":false,"id":13204,"mutability":"mutable","name":"witDrResultCborBytes","nameLocation":"2516:20:48","nodeType":"VariableDeclaration","scope":13208,"src":"2510:26:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13203,"name":"bytes","nodeType":"ElementaryTypeName","src":"2510:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":13207,"mutability":"mutable","name":"witDrTxHash","nameLocation":"2563:11:48","nodeType":"VariableDeclaration","scope":13208,"src":"2547:27:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":13206,"nodeType":"UserDefinedTypeName","pathNode":{"id":13205,"name":"TransactionHash","nameLocations":["2547:15:48"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"2547:15:48"},"referencedDeclaration":13108,"src":"2547:15:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"}],"name":"DataPullReport","nameLocation":"2251:14:48","nodeType":"StructDefinition","scope":16619,"src":"2244:338:48","visibility":"public"},{"canonicalName":"Witnet.DataPushReport","id":13223,"members":[{"constant":false,"id":13211,"mutability":"mutable","name":"witDrTxHash","nameLocation":"2639:11:48","nodeType":"VariableDeclaration","scope":13223,"src":"2623:27:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":13210,"nodeType":"UserDefinedTypeName","pathNode":{"id":13209,"name":"TransactionHash","nameLocations":["2623:15:48"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"2623:15:48"},"referencedDeclaration":13108,"src":"2623:15:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":13214,"mutability":"mutable","name":"queryRadHash","nameLocation":"2671:12:48","nodeType":"VariableDeclaration","scope":13223,"src":"2661:22:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":13213,"nodeType":"UserDefinedTypeName","pathNode":{"id":13212,"name":"RadonHash","nameLocations":["2661:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"2661:9:48"},"referencedDeclaration":13102,"src":"2661:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":13217,"mutability":"mutable","name":"queryParams","nameLocation":"2704:11:48","nodeType":"VariableDeclaration","scope":13223,"src":"2694:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":13216,"nodeType":"UserDefinedTypeName","pathNode":{"id":13215,"name":"QuerySLA","nameLocations":["2694:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"2694:8:48"},"referencedDeclaration":13324,"src":"2694:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"},{"constant":false,"id":13220,"mutability":"mutable","name":"resultTimestamp","nameLocation":"2736:15:48","nodeType":"VariableDeclaration","scope":13223,"src":"2726:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":13219,"nodeType":"UserDefinedTypeName","pathNode":{"id":13218,"name":"Timestamp","nameLocations":["2726:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"2726:9:48"},"referencedDeclaration":13106,"src":"2726:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":13222,"mutability":"mutable","name":"resultCborBytes","nameLocation":"2768:15:48","nodeType":"VariableDeclaration","scope":13223,"src":"2762:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13221,"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":16619,"src":"2590:201:48","visibility":"public"},{"canonicalName":"Witnet.DataResult","documentation":{"id":13224,"nodeType":"StructuredDocumentation","src":"2799:72:48","text":"Data struct containing the Witnet-provided result to a Data Request."},"id":13240,"members":[{"constant":false,"id":13227,"mutability":"mutable","name":"status","nameLocation":"2922:6:48","nodeType":"VariableDeclaration","scope":13240,"src":"2906:22:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":13226,"nodeType":"UserDefinedTypeName","pathNode":{"id":13225,"name":"ResultStatus","nameLocations":["2906:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13581,"src":"2906:12:48"},"referencedDeclaration":13581,"src":"2906:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"},{"constant":false,"id":13230,"mutability":"mutable","name":"dataType","nameLocation":"2955:8:48","nodeType":"VariableDeclaration","scope":13240,"src":"2939:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":13229,"nodeType":"UserDefinedTypeName","pathNode":{"id":13228,"name":"RadonDataTypes","nameLocations":["2939:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13603,"src":"2939:14:48"},"referencedDeclaration":13603,"src":"2939:14:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"},{"constant":false,"id":13233,"mutability":"mutable","name":"drTxHash","nameLocation":"2990:8:48","nodeType":"VariableDeclaration","scope":13240,"src":"2974:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":13232,"nodeType":"UserDefinedTypeName","pathNode":{"id":13231,"name":"TransactionHash","nameLocations":["2974:15:48"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"2974:15:48"},"referencedDeclaration":13108,"src":"2974:15:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":13236,"mutability":"mutable","name":"timestamp","nameLocation":"3025:9:48","nodeType":"VariableDeclaration","scope":13240,"src":"3009:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":13235,"nodeType":"UserDefinedTypeName","pathNode":{"id":13234,"name":"Timestamp","nameLocations":["3009:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"3009:9:48"},"referencedDeclaration":13106,"src":"3009:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":13239,"mutability":"mutable","name":"value","nameLocation":"3061:5:48","nodeType":"VariableDeclaration","scope":13240,"src":"3045:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":13238,"nodeType":"UserDefinedTypeName","pathNode":{"id":13237,"name":"WitnetCBOR.CBOR","nameLocations":["3045:10:48","3056:4:48"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"3045:15:48"},"referencedDeclaration":18536,"src":"3045:15:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"name":"DataResult","nameLocation":"2884:10:48","nodeType":"StructDefinition","scope":16619,"src":"2877:197:48","visibility":"public"},{"canonicalName":"Witnet.FastForward","id":13253,"members":[{"constant":false,"id":13243,"mutability":"mutable","name":"beacon","nameLocation":"3119:6:48","nodeType":"VariableDeclaration","scope":13253,"src":"3112:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":13242,"nodeType":"UserDefinedTypeName","pathNode":{"id":13241,"name":"Beacon","nameLocations":["3112:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13191,"src":"3112:6:48"},"referencedDeclaration":13191,"src":"3112:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"},{"constant":false,"id":13247,"mutability":"mutable","name":"committeeAggSignature","nameLocation":"3147:21:48","nodeType":"VariableDeclaration","scope":13253,"src":"3136:32:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$2_storage_ptr","typeString":"uint256[2]"},"typeName":{"baseType":{"id":13244,"name":"uint256","nodeType":"ElementaryTypeName","src":"3136:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13246,"length":{"hexValue":"32","id":13245,"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":13252,"mutability":"mutable","name":"committeeMissingPubkeys","nameLocation":"3192:23:48","nodeType":"VariableDeclaration","scope":13253,"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":13248,"name":"uint256","nodeType":"ElementaryTypeName","src":"3179:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":13250,"length":{"hexValue":"34","id":13249,"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":13251,"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":16619,"src":"3082:141:48","visibility":"public"},{"canonicalName":"Witnet.Query","documentation":{"id":13254,"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":13273,"members":[{"constant":false,"id":13257,"mutability":"mutable","name":"request","nameLocation":"3384:7:48","nodeType":"VariableDeclaration","scope":13273,"src":"3371:20:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QueryRequest_$13300_storage_ptr","typeString":"struct Witnet.QueryRequest"},"typeName":{"id":13256,"nodeType":"UserDefinedTypeName","pathNode":{"id":13255,"name":"QueryRequest","nameLocations":["3371:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13300,"src":"3371:12:48"},"referencedDeclaration":13300,"src":"3371:12:48","typeDescriptions":{"typeIdentifier":"t_struct$_QueryRequest_$13300_storage_ptr","typeString":"struct Witnet.QueryRequest"}},"visibility":"internal"},{"constant":false,"id":13260,"mutability":"mutable","name":"response","nameLocation":"3416:8:48","nodeType":"VariableDeclaration","scope":13273,"src":"3402:22:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QueryResponse_$13316_storage_ptr","typeString":"struct Witnet.QueryResponse"},"typeName":{"id":13259,"nodeType":"UserDefinedTypeName","pathNode":{"id":13258,"name":"QueryResponse","nameLocations":["3402:13:48"],"nodeType":"IdentifierPath","referencedDeclaration":13316,"src":"3402:13:48"},"referencedDeclaration":13316,"src":"3402:13:48","typeDescriptions":{"typeIdentifier":"t_struct$_QueryResponse_$13316_storage_ptr","typeString":"struct Witnet.QueryResponse"}},"visibility":"internal"},{"constant":false,"id":13263,"mutability":"mutable","name":"slaParams","nameLocation":"3444:9:48","nodeType":"VariableDeclaration","scope":13273,"src":"3435:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":13262,"nodeType":"UserDefinedTypeName","pathNode":{"id":13261,"name":"QuerySLA","nameLocations":["3435:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"3435:8:48"},"referencedDeclaration":13324,"src":"3435:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"},{"constant":false,"id":13266,"mutability":"mutable","name":"hash","nameLocation":"3557:4:48","nodeType":"VariableDeclaration","scope":13273,"src":"3547:14:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"},"typeName":{"id":13265,"nodeType":"UserDefinedTypeName","pathNode":{"id":13264,"name":"QueryHash","nameLocations":["3547:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13098,"src":"3547:9:48"},"referencedDeclaration":13098,"src":"3547:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"}},"visibility":"internal"},{"constant":false,"id":13269,"mutability":"mutable","name":"reward","nameLocation":"3694:6:48","nodeType":"VariableDeclaration","scope":13273,"src":"3679:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13096","typeString":"Witnet.QueryEvmReward"},"typeName":{"id":13268,"nodeType":"UserDefinedTypeName","pathNode":{"id":13267,"name":"QueryEvmReward","nameLocations":["3679:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13096,"src":"3679:14:48"},"referencedDeclaration":13096,"src":"3679:14:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryEvmReward_$13096","typeString":"Witnet.QueryEvmReward"}},"visibility":"internal"},{"constant":false,"id":13272,"mutability":"mutable","name":"checkpoint","nameLocation":"3791:10:48","nodeType":"VariableDeclaration","scope":13273,"src":"3779:22:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":13271,"nodeType":"UserDefinedTypeName","pathNode":{"id":13270,"name":"BlockNumber","nameLocations":["3779:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"3779:11:48"},"referencedDeclaration":13094,"src":"3779:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"name":"Query","nameLocation":"3354:5:48","nodeType":"StructDefinition","scope":16619,"src":"3347:462:48","visibility":"public"},{"canonicalName":"Witnet.QueryStatus","documentation":{"id":13274,"nodeType":"StructuredDocumentation","src":"3817:38:48","text":"Possible status of a Witnet query."},"id":13282,"members":[{"id":13275,"name":"Unknown","nameLocation":"3889:7:48","nodeType":"EnumValue","src":"3889:7:48"},{"id":13276,"name":"Posted","nameLocation":"3907:6:48","nodeType":"EnumValue","src":"3907:6:48"},{"id":13277,"name":"Reported","nameLocation":"3924:8:48","nodeType":"EnumValue","src":"3924:8:48"},{"id":13278,"name":"Finalized","nameLocation":"3943:9:48","nodeType":"EnumValue","src":"3943:9:48"},{"id":13279,"name":"Delayed","nameLocation":"3963:7:48","nodeType":"EnumValue","src":"3963:7:48"},{"id":13280,"name":"Expired","nameLocation":"3981:7:48","nodeType":"EnumValue","src":"3981:7:48"},{"id":13281,"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":13287,"members":[{"constant":false,"id":13284,"mutability":"mutable","name":"consumer","nameLocation":"4062:8:48","nodeType":"VariableDeclaration","scope":13287,"src":"4054:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13283,"name":"address","nodeType":"ElementaryTypeName","src":"4054:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13286,"mutability":"mutable","name":"gasLimit","nameLocation":"4175:8:48","nodeType":"VariableDeclaration","scope":13287,"src":"4167:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":13285,"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":16619,"src":"4022:270:48","visibility":"public"},{"canonicalName":"Witnet.QueryRequest","documentation":{"id":13288,"nodeType":"StructuredDocumentation","src":"4300:82:48","text":"Data kept in EVM-storage for every Request posted to the Witnet Request Board."},"id":13300,"members":[{"constant":false,"id":13290,"mutability":"mutable","name":"requester","nameLocation":"4429:9:48","nodeType":"VariableDeclaration","scope":13300,"src":"4419:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13289,"name":"address","nodeType":"ElementaryTypeName","src":"4419:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13292,"mutability":"mutable","name":"callbackGas","nameLocation":"4522:11:48","nodeType":"VariableDeclaration","scope":13300,"src":"4512:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":13291,"name":"uint24","nodeType":"ElementaryTypeName","src":"4512:6:48","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"},{"constant":false,"id":13294,"mutability":"mutable","name":"_0","nameLocation":"4542:2:48","nodeType":"VariableDeclaration","scope":13300,"src":"4535:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"},"typeName":{"id":13293,"name":"uint72","nodeType":"ElementaryTypeName","src":"4535:6:48","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"visibility":"internal"},{"constant":false,"id":13296,"mutability":"mutable","name":"radonBytecode","nameLocation":"4633:13:48","nodeType":"VariableDeclaration","scope":13300,"src":"4623:23:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13295,"name":"bytes","nodeType":"ElementaryTypeName","src":"4623:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":13299,"mutability":"mutable","name":"radonHash","nameLocation":"4757:9:48","nodeType":"VariableDeclaration","scope":13300,"src":"4747:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":13298,"nodeType":"UserDefinedTypeName","pathNode":{"id":13297,"name":"RadonHash","nameLocations":["4747:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"4747:9:48"},"referencedDeclaration":13102,"src":"4747:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"name":"QueryRequest","nameLocation":"4395:12:48","nodeType":"StructDefinition","scope":16619,"src":"4388:475:48","visibility":"public"},{"canonicalName":"Witnet.QueryResponse","documentation":{"id":13301,"nodeType":"StructuredDocumentation","src":"4871:75:48","text":"QueryResponse metadata and result as resolved by the Witnet blockchain."},"id":13316,"members":[{"constant":false,"id":13303,"mutability":"mutable","name":"reporter","nameLocation":"4992:8:48","nodeType":"VariableDeclaration","scope":13316,"src":"4984:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13302,"name":"address","nodeType":"ElementaryTypeName","src":"4984:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":13305,"mutability":"mutable","name":"_0","nameLocation":"5009:2:48","nodeType":"VariableDeclaration","scope":13316,"src":"5002:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":13304,"name":"uint32","nodeType":"ElementaryTypeName","src":"5002:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":13308,"mutability":"mutable","name":"resultTimestamp","nameLocation":"5099:15:48","nodeType":"VariableDeclaration","scope":13316,"src":"5089:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":13307,"nodeType":"UserDefinedTypeName","pathNode":{"id":13306,"name":"Timestamp","nameLocations":["5089:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"5089:9:48"},"referencedDeclaration":13106,"src":"5089:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":13311,"mutability":"mutable","name":"resultDrTxHash","nameLocation":"5239:14:48","nodeType":"VariableDeclaration","scope":13316,"src":"5223:30:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},"typeName":{"id":13310,"nodeType":"UserDefinedTypeName","pathNode":{"id":13309,"name":"TransactionHash","nameLocations":["5223:15:48"],"nodeType":"IdentifierPath","referencedDeclaration":13108,"src":"5223:15:48"},"referencedDeclaration":13108,"src":"5223:15:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},"visibility":"internal"},{"constant":false,"id":13313,"mutability":"mutable","name":"resultCborBytes","nameLocation":"5367:15:48","nodeType":"VariableDeclaration","scope":13316,"src":"5361:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13312,"name":"bytes","nodeType":"ElementaryTypeName","src":"5361:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":13315,"mutability":"mutable","name":"disputer","nameLocation":"5486:8:48","nodeType":"VariableDeclaration","scope":13316,"src":"5478:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13314,"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":16619,"src":"4952:550:48","visibility":"public"},{"canonicalName":"Witnet.QuerySLA","documentation":{"id":13317,"nodeType":"StructuredDocumentation","src":"5510:87:48","text":"Structure containing all possible SLA security parameters for Wit/2.1 Data Requests"},"id":13324,"members":[{"constant":false,"id":13319,"mutability":"mutable","name":"witResultMaxSize","nameLocation":"5638:16:48","nodeType":"VariableDeclaration","scope":13324,"src":"5630:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":13318,"name":"uint16","nodeType":"ElementaryTypeName","src":"5630:6:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":13321,"mutability":"mutable","name":"witCommitteeSize","nameLocation":"5761:16:48","nodeType":"VariableDeclaration","scope":13324,"src":"5753:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":13320,"name":"uint16","nodeType":"ElementaryTypeName","src":"5753:6:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"},{"constant":false,"id":13323,"mutability":"mutable","name":"witUnitaryReward","nameLocation":"5886:16:48","nodeType":"VariableDeclaration","scope":13324,"src":"5878:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":13322,"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":16619,"src":"5603:405:48","visibility":"public"},{"canonicalName":"Witnet.ResultStatus","id":13581,"members":[{"id":13325,"name":"NoErrors","nameLocation":"6075:8:48","nodeType":"EnumValue","src":"6075:8:48"},{"id":13326,"name":"SourceScriptNotCBOR","nameLocation":"6461:19:48","nodeType":"EnumValue","src":"6461:19:48"},{"id":13327,"name":"SourceScriptNotArray","nameLocation":"6582:20:48","nodeType":"EnumValue","src":"6582:20:48"},{"id":13328,"name":"SourceScriptNotRADON","nameLocation":"6716:20:48","nodeType":"EnumValue","src":"6716:20:48"},{"id":13329,"name":"SourceRequestBody","nameLocation":"6848:17:48","nodeType":"EnumValue","src":"6848:17:48"},{"id":13330,"name":"SourceRequestHeaders","nameLocation":"6980:20:48","nodeType":"EnumValue","src":"6980:20:48"},{"id":13331,"name":"SourceRequestURL","nameLocation":"7111:16:48","nodeType":"EnumValue","src":"7111:16:48"},{"id":13332,"name":"SourceFormat0x07","nameLocation":"7173:16:48","nodeType":"EnumValue","src":"7173:16:48"},{"id":13333,"name":"SourceFormat0x08","nameLocation":"7191:16:48","nodeType":"EnumValue","src":"7191:16:48"},{"id":13334,"name":"SourceFormat0x09","nameLocation":"7209:16:48","nodeType":"EnumValue","src":"7209:16:48"},{"id":13335,"name":"SourceFormat0x0A","nameLocation":"7227:16:48","nodeType":"EnumValue","src":"7227:16:48"},{"id":13336,"name":"SourceFormat0x0B","nameLocation":"7245:16:48","nodeType":"EnumValue","src":"7245:16:48"},{"id":13337,"name":"SourceFormat0x0C","nameLocation":"7263:16:48","nodeType":"EnumValue","src":"7263:16:48"},{"id":13338,"name":"SourceFormat0x0D","nameLocation":"7290:16:48","nodeType":"EnumValue","src":"7290:16:48"},{"id":13339,"name":"SourceFormat0x0E","nameLocation":"7308:16:48","nodeType":"EnumValue","src":"7308:16:48"},{"id":13340,"name":"SourceFormat0x0F","nameLocation":"7326:16:48","nodeType":"EnumValue","src":"7326:16:48"},{"id":13341,"name":"RequestTooManySources","nameLocation":"7700:21:48","nodeType":"EnumValue","src":"7700:21:48"},{"id":13342,"name":"ScriptTooManyCalls","nameLocation":"7797:18:48","nodeType":"EnumValue","src":"7797:18:48"},{"id":13343,"name":"Complexity0x12","nameLocation":"7861:14:48","nodeType":"EnumValue","src":"7861:14:48"},{"id":13344,"name":"Complexity0x13","nameLocation":"7877:14:48","nodeType":"EnumValue","src":"7877:14:48"},{"id":13345,"name":"Complexity0x14","nameLocation":"7893:14:48","nodeType":"EnumValue","src":"7893:14:48"},{"id":13346,"name":"Complexity0x15","nameLocation":"7909:14:48","nodeType":"EnumValue","src":"7909:14:48"},{"id":13347,"name":"Complexity0x16","nameLocation":"7925:14:48","nodeType":"EnumValue","src":"7925:14:48"},{"id":13348,"name":"Complexity0x17","nameLocation":"7941:14:48","nodeType":"EnumValue","src":"7941:14:48"},{"id":13349,"name":"Complexity0x18","nameLocation":"7957:14:48","nodeType":"EnumValue","src":"7957:14:48"},{"id":13350,"name":"Complexity0x19","nameLocation":"7982:14:48","nodeType":"EnumValue","src":"7982:14:48"},{"id":13351,"name":"Complexity0x1A","nameLocation":"7998:14:48","nodeType":"EnumValue","src":"7998:14:48"},{"id":13352,"name":"Complexity0x1B","nameLocation":"8014:14:48","nodeType":"EnumValue","src":"8014:14:48"},{"id":13353,"name":"Complexity0x1C","nameLocation":"8030:14:48","nodeType":"EnumValue","src":"8030:14:48"},{"id":13354,"name":"Complexity0x1D","nameLocation":"8046:14:48","nodeType":"EnumValue","src":"8046:14:48"},{"id":13355,"name":"Complexity0x1E","nameLocation":"8062:14:48","nodeType":"EnumValue","src":"8062:14:48"},{"id":13356,"name":"Complexity0x1F","nameLocation":"8078:14:48","nodeType":"EnumValue","src":"8078:14:48"},{"id":13357,"name":"UnsupportedOperator","nameLocation":"8470:19:48","nodeType":"EnumValue","src":"8470:19:48"},{"id":13358,"name":"UnsupportedFilter","nameLocation":"8592:17:48","nodeType":"EnumValue","src":"8592:17:48"},{"id":13359,"name":"UnsupportedHashFunction","nameLocation":"8711:23:48","nodeType":"EnumValue","src":"8711:23:48"},{"id":13360,"name":"UnsupportedReducer","nameLocation":"8837:18:48","nodeType":"EnumValue","src":"8837:18:48"},{"id":13361,"name":"UnsupportedRequestType","nameLocation":"8958:22:48","nodeType":"EnumValue","src":"8958:22:48"},{"id":13362,"name":"UnsupportedEncodingFunction","nameLocation":"9088:27:48","nodeType":"EnumValue","src":"9088:27:48"},{"id":13363,"name":"Operator0x26","nameLocation":"9161:12:48","nodeType":"EnumValue","src":"9161:12:48"},{"id":13364,"name":"Operator0x27","nameLocation":"9175:12:48","nodeType":"EnumValue","src":"9175:12:48"},{"id":13365,"name":"WrongArguments","nameLocation":"9300:14:48","nodeType":"EnumValue","src":"9300:14:48"},{"id":13366,"name":"Operator0x29","nameLocation":"9360:12:48","nodeType":"EnumValue","src":"9360:12:48"},{"id":13367,"name":"Operator0x2A","nameLocation":"9374:12:48","nodeType":"EnumValue","src":"9374:12:48"},{"id":13368,"name":"Operator0x2B","nameLocation":"9388:12:48","nodeType":"EnumValue","src":"9388:12:48"},{"id":13369,"name":"Operator0x2C","nameLocation":"9402:12:48","nodeType":"EnumValue","src":"9402:12:48"},{"id":13370,"name":"Operator0x2D","nameLocation":"9416:12:48","nodeType":"EnumValue","src":"9416:12:48"},{"id":13371,"name":"Operator0x2E","nameLocation":"9430:12:48","nodeType":"EnumValue","src":"9430:12:48"},{"id":13372,"name":"Operator0x2F","nameLocation":"9444:12:48","nodeType":"EnumValue","src":"9444:12:48"},{"id":13373,"name":"HttpErrors","nameLocation":"9860:10:48","nodeType":"EnumValue","src":"9860:10:48"},{"id":13374,"name":"RetrievalsTimeout","nameLocation":"9948:17:48","nodeType":"EnumValue","src":"9948:17:48"},{"id":13375,"name":"RetrieveCircumstance0x32","nameLocation":"10011:24:48","nodeType":"EnumValue","src":"10011:24:48"},{"id":13376,"name":"RetrieveCircumstance0x33","nameLocation":"10037:24:48","nodeType":"EnumValue","src":"10037:24:48"},{"id":13377,"name":"RetrieveCircumstance0x34","nameLocation":"10063:24:48","nodeType":"EnumValue","src":"10063:24:48"},{"id":13378,"name":"RetrieveCircumstance0x35","nameLocation":"10089:24:48","nodeType":"EnumValue","src":"10089:24:48"},{"id":13379,"name":"RetrieveCircumstance0x36","nameLocation":"10124:24:48","nodeType":"EnumValue","src":"10124:24:48"},{"id":13380,"name":"RetrieveCircumstance0x37","nameLocation":"10150:24:48","nodeType":"EnumValue","src":"10150:24:48"},{"id":13381,"name":"RetrieveCircumstance0x38","nameLocation":"10176:24:48","nodeType":"EnumValue","src":"10176:24:48"},{"id":13382,"name":"RetrieveCircumstance0x39","nameLocation":"10202:24:48","nodeType":"EnumValue","src":"10202:24:48"},{"id":13383,"name":"RetrieveCircumstance0x3A","nameLocation":"10237:24:48","nodeType":"EnumValue","src":"10237:24:48"},{"id":13384,"name":"RetrieveCircumstance0x3B","nameLocation":"10263:24:48","nodeType":"EnumValue","src":"10263:24:48"},{"id":13385,"name":"RetrieveCircumstance0x3C","nameLocation":"10289:24:48","nodeType":"EnumValue","src":"10289:24:48"},{"id":13386,"name":"RetrieveCircumstance0x3D","nameLocation":"10315:24:48","nodeType":"EnumValue","src":"10315:24:48"},{"id":13387,"name":"RetrieveCircumstance0x3E","nameLocation":"10350:24:48","nodeType":"EnumValue","src":"10350:24:48"},{"id":13388,"name":"RetrieveCircumstance0x3F","nameLocation":"10376:24:48","nodeType":"EnumValue","src":"10376:24:48"},{"id":13389,"name":"MathUnderflow","nameLocation":"10743:13:48","nodeType":"EnumValue","src":"10743:13:48"},{"id":13390,"name":"MathOverflow","nameLocation":"10830:12:48","nodeType":"EnumValue","src":"10830:12:48"},{"id":13391,"name":"MathDivisionByZero","nameLocation":"10921:18:48","nodeType":"EnumValue","src":"10921:18:48"},{"id":13392,"name":"WrongSubscriptInput","nameLocation":"11022:19:48","nodeType":"EnumValue","src":"11022:19:48"},{"id":13393,"name":"BufferIsNotValue","nameLocation":"11133:16:48","nodeType":"EnumValue","src":"11133:16:48"},{"id":13394,"name":"Decode","nameLocation":"11233:6:48","nodeType":"EnumValue","src":"11233:6:48"},{"id":13395,"name":"EmptyArray","nameLocation":"11303:10:48","nodeType":"EnumValue","src":"11303:10:48"},{"id":13396,"name":"Encode","nameLocation":"11395:6:48","nodeType":"EnumValue","src":"11395:6:48"},{"id":13397,"name":"Filter","nameLocation":"11482:6:48","nodeType":"EnumValue","src":"11482:6:48"},{"id":13398,"name":"Hash","nameLocation":"11556:4:48","nodeType":"EnumValue","src":"11556:4:48"},{"id":13399,"name":"MismatchingArrays","nameLocation":"11625:17:48","nodeType":"EnumValue","src":"11625:17:48"},{"id":13400,"name":"NonHomegeneousArray","nameLocation":"11722:19:48","nodeType":"EnumValue","src":"11722:19:48"},{"id":13401,"name":"Parse","nameLocation":"11838:5:48","nodeType":"EnumValue","src":"11838:5:48"},{"id":13402,"name":"ParseOverflow","nameLocation":"11919:13:48","nodeType":"EnumValue","src":"11919:13:48"},{"id":13403,"name":"ScriptError0x4E","nameLocation":"11978:15:48","nodeType":"EnumValue","src":"11978:15:48"},{"id":13404,"name":"ScriptError0x4F","nameLocation":"11995:15:48","nodeType":"EnumValue","src":"11995:15:48"},{"id":13405,"name":"InsufficientReveals","nameLocation":"12370:19:48","nodeType":"EnumValue","src":"12370:19:48"},{"id":13406,"name":"InsufficientMajority","nameLocation":"12483:20:48","nodeType":"EnumValue","src":"12483:20:48"},{"id":13407,"name":"InsufficientCommits","nameLocation":"12596:19:48","nodeType":"EnumValue","src":"12596:19:48"},{"id":13408,"name":"TallyExecution","nameLocation":"12727:14:48","nodeType":"EnumValue","src":"12727:14:48"},{"id":13409,"name":"CircumstantialFailure","nameLocation":"12890:21:48","nodeType":"EnumValue","src":"12890:21:48"},{"id":13410,"name":"InconsistentSources","nameLocation":"13042:19:48","nodeType":"EnumValue","src":"13042:19:48"},{"id":13411,"name":"MalformedDataRequest","nameLocation":"13185:20:48","nodeType":"EnumValue","src":"13185:20:48"},{"id":13412,"name":"MalformedQueryResponses","nameLocation":"13326:23:48","nodeType":"EnumValue","src":"13326:23:48"},{"id":13413,"name":"OtherError0x58","nameLocation":"13400:14:48","nodeType":"EnumValue","src":"13400:14:48"},{"id":13414,"name":"OtherError0x59","nameLocation":"13416:14:48","nodeType":"EnumValue","src":"13416:14:48"},{"id":13415,"name":"OtherError0x5A","nameLocation":"13432:14:48","nodeType":"EnumValue","src":"13432:14:48"},{"id":13416,"name":"OtherError0x5B","nameLocation":"13448:14:48","nodeType":"EnumValue","src":"13448:14:48"},{"id":13417,"name":"OtherError0x5C","nameLocation":"13464:14:48","nodeType":"EnumValue","src":"13464:14:48"},{"id":13418,"name":"OtherError0x5D","nameLocation":"13480:14:48","nodeType":"EnumValue","src":"13480:14:48"},{"id":13419,"name":"OtherError0x5E","nameLocation":"13496:14:48","nodeType":"EnumValue","src":"13496:14:48"},{"id":13420,"name":"OversizedTallyResult","nameLocation":"13602:20:48","nodeType":"EnumValue","src":"13602:20:48"},{"id":13421,"name":"MalformedReveals","nameLocation":"13999:16:48","nodeType":"EnumValue","src":"13999:16:48"},{"id":13422,"name":"EncodeReveals","nameLocation":"14109:13:48","nodeType":"EnumValue","src":"14109:13:48"},{"id":13423,"name":"ModeTie","nameLocation":"14255:7:48","nodeType":"EnumValue","src":"14255:7:48"},{"id":13424,"name":"OtherError0x63","nameLocation":"14310:14:48","nodeType":"EnumValue","src":"14310:14:48"},{"id":13425,"name":"OtherError0x64","nameLocation":"14326:14:48","nodeType":"EnumValue","src":"14326:14:48"},{"id":13426,"name":"OtherError0x65","nameLocation":"14342:14:48","nodeType":"EnumValue","src":"14342:14:48"},{"id":13427,"name":"OtherError0x66","nameLocation":"14358:14:48","nodeType":"EnumValue","src":"14358:14:48"},{"id":13428,"name":"OtherError0x67","nameLocation":"14374:14:48","nodeType":"EnumValue","src":"14374:14:48"},{"id":13429,"name":"OtherError0x68","nameLocation":"14390:14:48","nodeType":"EnumValue","src":"14390:14:48"},{"id":13430,"name":"OtherError0x69","nameLocation":"14406:14:48","nodeType":"EnumValue","src":"14406:14:48"},{"id":13431,"name":"OtherError0x6A","nameLocation":"14432:14:48","nodeType":"EnumValue","src":"14432:14:48"},{"id":13432,"name":"OtherError0x6B","nameLocation":"14448:14:48","nodeType":"EnumValue","src":"14448:14:48"},{"id":13433,"name":"OtherError0x6C","nameLocation":"14464:14:48","nodeType":"EnumValue","src":"14464:14:48"},{"id":13434,"name":"OtherError0x6D","nameLocation":"14480:14:48","nodeType":"EnumValue","src":"14480:14:48"},{"id":13435,"name":"OtherError0x6E","nameLocation":"14496:14:48","nodeType":"EnumValue","src":"14496:14:48"},{"id":13436,"name":"OtherError0x6F","nameLocation":"14512:14:48","nodeType":"EnumValue","src":"14512:14:48"},{"id":13437,"name":"ArrayIndexOutOfBounds","nameLocation":"14930:21:48","nodeType":"EnumValue","src":"14930:21:48"},{"id":13438,"name":"MapKeyNotFound","nameLocation":"15069:14:48","nodeType":"EnumValue","src":"15069:14:48"},{"id":13439,"name":"JsonPathNotFound","nameLocation":"15209:16:48","nodeType":"EnumValue","src":"15209:16:48"},{"id":13440,"name":"OtherError0x73","nameLocation":"15272:14:48","nodeType":"EnumValue","src":"15272:14:48"},{"id":13441,"name":"OtherError0x74","nameLocation":"15288:14:48","nodeType":"EnumValue","src":"15288:14:48"},{"id":13442,"name":"OtherError0x75","nameLocation":"15304:14:48","nodeType":"EnumValue","src":"15304:14:48"},{"id":13443,"name":"OtherError0x76","nameLocation":"15320:14:48","nodeType":"EnumValue","src":"15320:14:48"},{"id":13444,"name":"OtherError0x77","nameLocation":"15336:14:48","nodeType":"EnumValue","src":"15336:14:48"},{"id":13445,"name":"OtherError0x78","nameLocation":"15352:14:48","nodeType":"EnumValue","src":"15352:14:48"},{"id":13446,"name":"OtherError0x79","nameLocation":"15378:14:48","nodeType":"EnumValue","src":"15378:14:48"},{"id":13447,"name":"OtherError0x7A","nameLocation":"15394:14:48","nodeType":"EnumValue","src":"15394:14:48"},{"id":13448,"name":"OtherError0x7B","nameLocation":"15410:14:48","nodeType":"EnumValue","src":"15410:14:48"},{"id":13449,"name":"OtherError0x7C","nameLocation":"15426:14:48","nodeType":"EnumValue","src":"15426:14:48"},{"id":13450,"name":"OtherError0x7D","nameLocation":"15442:14:48","nodeType":"EnumValue","src":"15442:14:48"},{"id":13451,"name":"OtherError0x7E","nameLocation":"15458:14:48","nodeType":"EnumValue","src":"15458:14:48"},{"id":13452,"name":"OtherError0x7F","nameLocation":"15474:14:48","nodeType":"EnumValue","src":"15474:14:48"},{"id":13453,"name":"OtherError0x80","nameLocation":"15500:14:48","nodeType":"EnumValue","src":"15500:14:48"},{"id":13454,"name":"OtherError0x81","nameLocation":"15516:14:48","nodeType":"EnumValue","src":"15516:14:48"},{"id":13455,"name":"OtherError0x82","nameLocation":"15532:14:48","nodeType":"EnumValue","src":"15532:14:48"},{"id":13456,"name":"OtherError0x83","nameLocation":"15548:14:48","nodeType":"EnumValue","src":"15548:14:48"},{"id":13457,"name":"OtherError0x84","nameLocation":"15564:14:48","nodeType":"EnumValue","src":"15564:14:48"},{"id":13458,"name":"OtherError0x85","nameLocation":"15580:14:48","nodeType":"EnumValue","src":"15580:14:48"},{"id":13459,"name":"OtherError0x86","nameLocation":"15596:14:48","nodeType":"EnumValue","src":"15596:14:48"},{"id":13460,"name":"OtherError0x87","nameLocation":"15622:14:48","nodeType":"EnumValue","src":"15622:14:48"},{"id":13461,"name":"OtherError0x88","nameLocation":"15638:14:48","nodeType":"EnumValue","src":"15638:14:48"},{"id":13462,"name":"OtherError0x89","nameLocation":"15654:14:48","nodeType":"EnumValue","src":"15654:14:48"},{"id":13463,"name":"OtherError0x8A","nameLocation":"15670:14:48","nodeType":"EnumValue","src":"15670:14:48"},{"id":13464,"name":"OtherError0x8B","nameLocation":"15686:14:48","nodeType":"EnumValue","src":"15686:14:48"},{"id":13465,"name":"OtherError0x8C","nameLocation":"15702:14:48","nodeType":"EnumValue","src":"15702:14:48"},{"id":13466,"name":"OtherError0x8D","nameLocation":"15718:14:48","nodeType":"EnumValue","src":"15718:14:48"},{"id":13467,"name":"OtherError0x8E","nameLocation":"15744:14:48","nodeType":"EnumValue","src":"15744:14:48"},{"id":13468,"name":"OtherError0x8F","nameLocation":"15760:14:48","nodeType":"EnumValue","src":"15760:14:48"},{"id":13469,"name":"OtherError0x90","nameLocation":"15776:14:48","nodeType":"EnumValue","src":"15776:14:48"},{"id":13470,"name":"OtherError0x91","nameLocation":"15792:14:48","nodeType":"EnumValue","src":"15792:14:48"},{"id":13471,"name":"OtherError0x92","nameLocation":"15808:14:48","nodeType":"EnumValue","src":"15808:14:48"},{"id":13472,"name":"OtherError0x93","nameLocation":"15824:14:48","nodeType":"EnumValue","src":"15824:14:48"},{"id":13473,"name":"OtherError0x94","nameLocation":"15840:14:48","nodeType":"EnumValue","src":"15840:14:48"},{"id":13474,"name":"OtherError0x95","nameLocation":"15866:14:48","nodeType":"EnumValue","src":"15866:14:48"},{"id":13475,"name":"OtherError0x96","nameLocation":"15882:14:48","nodeType":"EnumValue","src":"15882:14:48"},{"id":13476,"name":"OtherError0x97","nameLocation":"15898:14:48","nodeType":"EnumValue","src":"15898:14:48"},{"id":13477,"name":"OtherError0x98","nameLocation":"15914:14:48","nodeType":"EnumValue","src":"15914:14:48"},{"id":13478,"name":"OtherError0x99","nameLocation":"15930:14:48","nodeType":"EnumValue","src":"15930:14:48"},{"id":13479,"name":"OtherError0x9A","nameLocation":"15946:14:48","nodeType":"EnumValue","src":"15946:14:48"},{"id":13480,"name":"OtherError0x9B","nameLocation":"15962:14:48","nodeType":"EnumValue","src":"15962:14:48"},{"id":13481,"name":"OtherError0x9C","nameLocation":"15987:14:48","nodeType":"EnumValue","src":"15987:14:48"},{"id":13482,"name":"OtherError0x9D","nameLocation":"16003:14:48","nodeType":"EnumValue","src":"16003:14:48"},{"id":13483,"name":"OtherError0x9E","nameLocation":"16019:14:48","nodeType":"EnumValue","src":"16019:14:48"},{"id":13484,"name":"OtherError0x9F","nameLocation":"16035:14:48","nodeType":"EnumValue","src":"16035:14:48"},{"id":13485,"name":"OtherError0xA0","nameLocation":"16051:14:48","nodeType":"EnumValue","src":"16051:14:48"},{"id":13486,"name":"OtherError0xA1","nameLocation":"16067:14:48","nodeType":"EnumValue","src":"16067:14:48"},{"id":13487,"name":"OtherError0xA2","nameLocation":"16083:14:48","nodeType":"EnumValue","src":"16083:14:48"},{"id":13488,"name":"OtherError0xA3","nameLocation":"16109:14:48","nodeType":"EnumValue","src":"16109:14:48"},{"id":13489,"name":"OtherError0xA4","nameLocation":"16125:14:48","nodeType":"EnumValue","src":"16125:14:48"},{"id":13490,"name":"OtherError0xA5","nameLocation":"16141:14:48","nodeType":"EnumValue","src":"16141:14:48"},{"id":13491,"name":"OtherError0xA6","nameLocation":"16157:14:48","nodeType":"EnumValue","src":"16157:14:48"},{"id":13492,"name":"OtherError0xA7","nameLocation":"16173:14:48","nodeType":"EnumValue","src":"16173:14:48"},{"id":13493,"name":"OtherError0xA8","nameLocation":"16189:14:48","nodeType":"EnumValue","src":"16189:14:48"},{"id":13494,"name":"OtherError0xA9","nameLocation":"16205:14:48","nodeType":"EnumValue","src":"16205:14:48"},{"id":13495,"name":"OtherError0xAA","nameLocation":"16231:14:48","nodeType":"EnumValue","src":"16231:14:48"},{"id":13496,"name":"OtherError0xAB","nameLocation":"16247:14:48","nodeType":"EnumValue","src":"16247:14:48"},{"id":13497,"name":"OtherError0xAC","nameLocation":"16263:14:48","nodeType":"EnumValue","src":"16263:14:48"},{"id":13498,"name":"OtherError0xAD","nameLocation":"16279:14:48","nodeType":"EnumValue","src":"16279:14:48"},{"id":13499,"name":"OtherError0xAE","nameLocation":"16295:14:48","nodeType":"EnumValue","src":"16295:14:48"},{"id":13500,"name":"OtherError0xAF","nameLocation":"16311:14:48","nodeType":"EnumValue","src":"16311:14:48"},{"id":13501,"name":"OtherError0xB0","nameLocation":"16327:14:48","nodeType":"EnumValue","src":"16327:14:48"},{"id":13502,"name":"OtherError0xB1","nameLocation":"16352:14:48","nodeType":"EnumValue","src":"16352:14:48"},{"id":13503,"name":"OtherError0xB2","nameLocation":"16368:14:48","nodeType":"EnumValue","src":"16368:14:48"},{"id":13504,"name":"OtherError0xB3","nameLocation":"16384:14:48","nodeType":"EnumValue","src":"16384:14:48"},{"id":13505,"name":"OtherError0xB4","nameLocation":"16400:14:48","nodeType":"EnumValue","src":"16400:14:48"},{"id":13506,"name":"OtherError0xB5","nameLocation":"16416:14:48","nodeType":"EnumValue","src":"16416:14:48"},{"id":13507,"name":"OtherError0xB6","nameLocation":"16432:14:48","nodeType":"EnumValue","src":"16432:14:48"},{"id":13508,"name":"OtherError0xB7","nameLocation":"16448:14:48","nodeType":"EnumValue","src":"16448:14:48"},{"id":13509,"name":"OtherError0xB8","nameLocation":"16473:14:48","nodeType":"EnumValue","src":"16473:14:48"},{"id":13510,"name":"OtherError0xB9","nameLocation":"16489:14:48","nodeType":"EnumValue","src":"16489:14:48"},{"id":13511,"name":"OtherError0xBA","nameLocation":"16505:14:48","nodeType":"EnumValue","src":"16505:14:48"},{"id":13512,"name":"OtherError0xBB","nameLocation":"16521:14:48","nodeType":"EnumValue","src":"16521:14:48"},{"id":13513,"name":"OtherError0xBC","nameLocation":"16537:14:48","nodeType":"EnumValue","src":"16537:14:48"},{"id":13514,"name":"OtherError0xBD","nameLocation":"16553:14:48","nodeType":"EnumValue","src":"16553:14:48"},{"id":13515,"name":"OtherError0xBE","nameLocation":"16569:14:48","nodeType":"EnumValue","src":"16569:14:48"},{"id":13516,"name":"OtherError0xBF","nameLocation":"16594:14:48","nodeType":"EnumValue","src":"16594:14:48"},{"id":13517,"name":"OtherError0xC0","nameLocation":"16610:14:48","nodeType":"EnumValue","src":"16610:14:48"},{"id":13518,"name":"OtherError0xC1","nameLocation":"16626:14:48","nodeType":"EnumValue","src":"16626:14:48"},{"id":13519,"name":"OtherError0xC2","nameLocation":"16642:14:48","nodeType":"EnumValue","src":"16642:14:48"},{"id":13520,"name":"OtherError0xC3","nameLocation":"16658:14:48","nodeType":"EnumValue","src":"16658:14:48"},{"id":13521,"name":"OtherError0xC4","nameLocation":"16674:14:48","nodeType":"EnumValue","src":"16674:14:48"},{"id":13522,"name":"OtherError0xC5","nameLocation":"16690:14:48","nodeType":"EnumValue","src":"16690:14:48"},{"id":13523,"name":"OtherError0xC6","nameLocation":"16715:14:48","nodeType":"EnumValue","src":"16715:14:48"},{"id":13524,"name":"OtherError0xC7","nameLocation":"16731:14:48","nodeType":"EnumValue","src":"16731:14:48"},{"id":13525,"name":"OtherError0xC8","nameLocation":"16747:14:48","nodeType":"EnumValue","src":"16747:14:48"},{"id":13526,"name":"OtherError0xC9","nameLocation":"16763:14:48","nodeType":"EnumValue","src":"16763:14:48"},{"id":13527,"name":"OtherError0xCA","nameLocation":"16779:14:48","nodeType":"EnumValue","src":"16779:14:48"},{"id":13528,"name":"OtherError0xCB","nameLocation":"16795:14:48","nodeType":"EnumValue","src":"16795:14:48"},{"id":13529,"name":"OtherError0xCC","nameLocation":"16811:14:48","nodeType":"EnumValue","src":"16811:14:48"},{"id":13530,"name":"OtherError0xCD","nameLocation":"16836:14:48","nodeType":"EnumValue","src":"16836:14:48"},{"id":13531,"name":"OtherError0xCE","nameLocation":"16852:14:48","nodeType":"EnumValue","src":"16852:14:48"},{"id":13532,"name":"OtherError0xCF","nameLocation":"16868:14:48","nodeType":"EnumValue","src":"16868:14:48"},{"id":13533,"name":"OtherError0xD0","nameLocation":"16884:14:48","nodeType":"EnumValue","src":"16884:14:48"},{"id":13534,"name":"OtherError0xD1","nameLocation":"16900:14:48","nodeType":"EnumValue","src":"16900:14:48"},{"id":13535,"name":"OtherError0xD2","nameLocation":"16916:14:48","nodeType":"EnumValue","src":"16916:14:48"},{"id":13536,"name":"OtherError0xD3","nameLocation":"16932:14:48","nodeType":"EnumValue","src":"16932:14:48"},{"id":13537,"name":"OtherError0xD4","nameLocation":"16957:14:48","nodeType":"EnumValue","src":"16957:14:48"},{"id":13538,"name":"OtherError0xD5","nameLocation":"16973:14:48","nodeType":"EnumValue","src":"16973:14:48"},{"id":13539,"name":"OtherError0xD6","nameLocation":"16989:14:48","nodeType":"EnumValue","src":"16989:14:48"},{"id":13540,"name":"OtherError0xD7","nameLocation":"17005:14:48","nodeType":"EnumValue","src":"17005:14:48"},{"id":13541,"name":"OtherError0xD8","nameLocation":"17021:14:48","nodeType":"EnumValue","src":"17021:14:48"},{"id":13542,"name":"OtherError0xD9","nameLocation":"17037:14:48","nodeType":"EnumValue","src":"17037:14:48"},{"id":13543,"name":"OtherError0xDA","nameLocation":"17053:14:48","nodeType":"EnumValue","src":"17053:14:48"},{"id":13544,"name":"OtherError0xDB","nameLocation":"17078:14:48","nodeType":"EnumValue","src":"17078:14:48"},{"id":13545,"name":"OtherError0xDC","nameLocation":"17094:14:48","nodeType":"EnumValue","src":"17094:14:48"},{"id":13546,"name":"OtherError0xDD","nameLocation":"17110:14:48","nodeType":"EnumValue","src":"17110:14:48"},{"id":13547,"name":"OtherError0xDE","nameLocation":"17126:14:48","nodeType":"EnumValue","src":"17126:14:48"},{"id":13548,"name":"OtherError0xDF","nameLocation":"17142:14:48","nodeType":"EnumValue","src":"17142:14:48"},{"id":13549,"name":"BridgeMalformedDataRequest","nameLocation":"17685:26:48","nodeType":"EnumValue","src":"17685:26:48"},{"id":13550,"name":"BridgePoorIncentives","nameLocation":"17773:20:48","nodeType":"EnumValue","src":"17773:20:48"},{"id":13551,"name":"BridgeOversizedTallyResult","nameLocation":"18032:26:48","nodeType":"EnumValue","src":"18032:26:48"},{"id":13552,"name":"OtherError0xE3","nameLocation":"18105:14:48","nodeType":"EnumValue","src":"18105:14:48"},{"id":13553,"name":"OtherError0xE4","nameLocation":"18121:14:48","nodeType":"EnumValue","src":"18121:14:48"},{"id":13554,"name":"OtherError0xE5","nameLocation":"18137:14:48","nodeType":"EnumValue","src":"18137:14:48"},{"id":13555,"name":"OtherError0xE6","nameLocation":"18153:14:48","nodeType":"EnumValue","src":"18153:14:48"},{"id":13556,"name":"OtherError0xE7","nameLocation":"18169:14:48","nodeType":"EnumValue","src":"18169:14:48"},{"id":13557,"name":"OtherError0xE8","nameLocation":"18185:14:48","nodeType":"EnumValue","src":"18185:14:48"},{"id":13558,"name":"OtherError0xE9","nameLocation":"18201:14:48","nodeType":"EnumValue","src":"18201:14:48"},{"id":13559,"name":"OtherError0xEA","nameLocation":"18226:14:48","nodeType":"EnumValue","src":"18226:14:48"},{"id":13560,"name":"OtherError0xEB","nameLocation":"18242:14:48","nodeType":"EnumValue","src":"18242:14:48"},{"id":13561,"name":"OtherError0xEC","nameLocation":"18258:14:48","nodeType":"EnumValue","src":"18258:14:48"},{"id":13562,"name":"OtherError0xED","nameLocation":"18274:14:48","nodeType":"EnumValue","src":"18274:14:48"},{"id":13563,"name":"OtherError0xEE","nameLocation":"18290:14:48","nodeType":"EnumValue","src":"18290:14:48"},{"id":13564,"name":"OtherError0xEF","nameLocation":"18306:14:48","nodeType":"EnumValue","src":"18306:14:48"},{"id":13565,"name":"BoardAwaitingResult","nameLocation":"18640:19:48","nodeType":"EnumValue","src":"18640:19:48"},{"id":13566,"name":"BoardFinalizingResult","nameLocation":"18691:21:48","nodeType":"EnumValue","src":"18691:21:48"},{"id":13567,"name":"BoardBeingDisputed","nameLocation":"18744:18:48","nodeType":"EnumValue","src":"18744:18:48"},{"id":13568,"name":"OtherError0xF3","nameLocation":"18800:14:48","nodeType":"EnumValue","src":"18800:14:48"},{"id":13569,"name":"OtherError0xF4","nameLocation":"18816:14:48","nodeType":"EnumValue","src":"18816:14:48"},{"id":13570,"name":"OtherError0xF5","nameLocation":"18832:14:48","nodeType":"EnumValue","src":"18832:14:48"},{"id":13571,"name":"OtherError0xF6","nameLocation":"18848:14:48","nodeType":"EnumValue","src":"18848:14:48"},{"id":13572,"name":"OtherError0xF7","nameLocation":"18864:14:48","nodeType":"EnumValue","src":"18864:14:48"},{"id":13573,"name":"BoardAlreadyDelivered","nameLocation":"19180:21:48","nodeType":"EnumValue","src":"19180:21:48"},{"id":13574,"name":"BoardResolutionTimeout","nameLocation":"19233:22:48","nodeType":"EnumValue","src":"19233:22:48"},{"id":13575,"name":"OtherError0xFA","nameLocation":"19294:14:48","nodeType":"EnumValue","src":"19294:14:48"},{"id":13576,"name":"OtherError0xFB","nameLocation":"19310:14:48","nodeType":"EnumValue","src":"19310:14:48"},{"id":13577,"name":"OtherError0xFC","nameLocation":"19326:14:48","nodeType":"EnumValue","src":"19326:14:48"},{"id":13578,"name":"OtherError0xFD","nameLocation":"19342:14:48","nodeType":"EnumValue","src":"19342:14:48"},{"id":13579,"name":"OtherError0xFE","nameLocation":"19358:14:48","nodeType":"EnumValue","src":"19358:14:48"},{"id":13580,"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":13582,"nodeType":"StructuredDocumentation","src":"19644:111:48","text":"Possible types either processed by Witnet Radon Scripts or included within results to Witnet Data Requests."},"id":13603,"members":[{"id":13583,"name":"Any","nameLocation":"19803:3:48","nodeType":"EnumValue","src":"19803:3:48"},{"id":13584,"name":"Array","nameLocation":"19829:5:48","nodeType":"EnumValue","src":"19829:5:48"},{"id":13585,"name":"Bool","nameLocation":"19856:4:48","nodeType":"EnumValue","src":"19856:4:48"},{"id":13586,"name":"Bytes","nameLocation":"19882:5:48","nodeType":"EnumValue","src":"19882:5:48"},{"id":13587,"name":"Integer","nameLocation":"19909:7:48","nodeType":"EnumValue","src":"19909:7:48"},{"id":13588,"name":"Float","nameLocation":"19938:5:48","nodeType":"EnumValue","src":"19938:5:48"},{"id":13589,"name":"Map","nameLocation":"19965:3:48","nodeType":"EnumValue","src":"19965:3:48"},{"id":13590,"name":"String","nameLocation":"19990:6:48","nodeType":"EnumValue","src":"19990:6:48"},{"id":13591,"name":"Unused0x08","nameLocation":"20007:10:48","nodeType":"EnumValue","src":"20007:10:48"},{"id":13592,"name":"Unused0x09","nameLocation":"20019:10:48","nodeType":"EnumValue","src":"20019:10:48"},{"id":13593,"name":"Unused0x0A","nameLocation":"20031:10:48","nodeType":"EnumValue","src":"20031:10:48"},{"id":13594,"name":"Unused0x0B","nameLocation":"20043:10:48","nodeType":"EnumValue","src":"20043:10:48"},{"id":13595,"name":"Unused0x0C","nameLocation":"20064:10:48","nodeType":"EnumValue","src":"20064:10:48"},{"id":13596,"name":"Unused0x0D","nameLocation":"20076:10:48","nodeType":"EnumValue","src":"20076:10:48"},{"id":13597,"name":"Unused0x0E","nameLocation":"20088:10:48","nodeType":"EnumValue","src":"20088:10:48"},{"id":13598,"name":"Unused0x0F","nameLocation":"20100:10:48","nodeType":"EnumValue","src":"20100:10:48"},{"id":13599,"name":"Same","nameLocation":"20132:4:48","nodeType":"EnumValue","src":"20132:4:48"},{"id":13600,"name":"Inner","nameLocation":"20158:5:48","nodeType":"EnumValue","src":"20158:5:48"},{"id":13601,"name":"Match","nameLocation":"20185:5:48","nodeType":"EnumValue","src":"20185:5:48"},{"id":13602,"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":13604,"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":13610,"members":[{"constant":false,"id":13607,"mutability":"mutable","name":"opcode","nameLocation":"20451:6:48","nodeType":"VariableDeclaration","scope":13610,"src":"20432:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonFilterOpcodes_$13622","typeString":"enum Witnet.RadonFilterOpcodes"},"typeName":{"id":13606,"nodeType":"UserDefinedTypeName","pathNode":{"id":13605,"name":"RadonFilterOpcodes","nameLocations":["20432:18:48"],"nodeType":"IdentifierPath","referencedDeclaration":13622,"src":"20432:18:48"},"referencedDeclaration":13622,"src":"20432:18:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonFilterOpcodes_$13622","typeString":"enum Witnet.RadonFilterOpcodes"}},"visibility":"internal"},{"constant":false,"id":13609,"mutability":"mutable","name":"cborArgs","nameLocation":"20474:8:48","nodeType":"VariableDeclaration","scope":13610,"src":"20468:14:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13608,"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":16619,"src":"20402:88:48","visibility":"public"},{"canonicalName":"Witnet.RadonFilterOpcodes","documentation":{"id":13611,"nodeType":"StructuredDocumentation","src":"20498:68:48","text":"Filtering methods currently supported on the Witnet blockchain. "},"id":13622,"members":[{"id":13612,"name":"Reserved0x00","nameLocation":"20618:12:48","nodeType":"EnumValue","src":"20618:12:48"},{"id":13613,"name":"Reserved0x01","nameLocation":"20667:12:48","nodeType":"EnumValue","src":"20667:12:48"},{"id":13614,"name":"Reserved0x02","nameLocation":"20713:12:48","nodeType":"EnumValue","src":"20713:12:48"},{"id":13615,"name":"Reserved0x03","nameLocation":"20757:12:48","nodeType":"EnumValue","src":"20757:12:48"},{"id":13616,"name":"Reserved0x04","nameLocation":"20812:12:48","nodeType":"EnumValue","src":"20812:12:48"},{"id":13617,"name":"StandardDeviation","nameLocation":"20866:17:48","nodeType":"EnumValue","src":"20866:17:48"},{"id":13618,"name":"Reserved0x06","nameLocation":"20905:12:48","nodeType":"EnumValue","src":"20905:12:48"},{"id":13619,"name":"Reserved0x07","nameLocation":"20946:12:48","nodeType":"EnumValue","src":"20946:12:48"},{"id":13620,"name":"Mode","nameLocation":"20990:4:48","nodeType":"EnumValue","src":"20990:4:48"},{"id":13621,"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":13623,"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":13631,"members":[{"constant":false,"id":13626,"mutability":"mutable","name":"opcode","nameLocation":"21303:6:48","nodeType":"VariableDeclaration","scope":13631,"src":"21284:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13645","typeString":"enum Witnet.RadonReduceOpcodes"},"typeName":{"id":13625,"nodeType":"UserDefinedTypeName","pathNode":{"id":13624,"name":"RadonReduceOpcodes","nameLocations":["21284:18:48"],"nodeType":"IdentifierPath","referencedDeclaration":13645,"src":"21284:18:48"},"referencedDeclaration":13645,"src":"21284:18:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonReduceOpcodes_$13645","typeString":"enum Witnet.RadonReduceOpcodes"}},"visibility":"internal"},{"constant":false,"id":13630,"mutability":"mutable","name":"filters","nameLocation":"21334:7:48","nodeType":"VariableDeclaration","scope":13631,"src":"21320:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13610_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonFilter[]"},"typeName":{"baseType":{"id":13628,"nodeType":"UserDefinedTypeName","pathNode":{"id":13627,"name":"RadonFilter","nameLocations":["21320:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13610,"src":"21320:11:48"},"referencedDeclaration":13610,"src":"21320:11:48","typeDescriptions":{"typeIdentifier":"t_struct$_RadonFilter_$13610_storage_ptr","typeString":"struct Witnet.RadonFilter"}},"id":13629,"nodeType":"ArrayTypeName","src":"21320:13:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonFilter_$13610_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonFilter[]"}},"visibility":"internal"}],"name":"RadonReducer","nameLocation":"21260:12:48","nodeType":"StructDefinition","scope":16619,"src":"21253:96:48","visibility":"public"},{"canonicalName":"Witnet.RadonReduceOpcodes","documentation":{"id":13632,"nodeType":"StructuredDocumentation","src":"21357:69:48","text":"Reducting functions currently supported on the Witnet blockchain."},"id":13645,"members":[{"id":13633,"name":"Reserved0x00","nameLocation":"21478:12:48","nodeType":"EnumValue","src":"21478:12:48"},{"id":13634,"name":"Reserved0x01","nameLocation":"21523:12:48","nodeType":"EnumValue","src":"21523:12:48"},{"id":13635,"name":"Mode","nameLocation":"21568:4:48","nodeType":"EnumValue","src":"21568:4:48"},{"id":13636,"name":"AverageMean","nameLocation":"21594:11:48","nodeType":"EnumValue","src":"21594:11:48"},{"id":13637,"name":"Reserved0x04","nameLocation":"21627:12:48","nodeType":"EnumValue","src":"21627:12:48"},{"id":13638,"name":"AverageMedian","nameLocation":"21684:13:48","nodeType":"EnumValue","src":"21684:13:48"},{"id":13639,"name":"Reserved0x06","nameLocation":"21719:12:48","nodeType":"EnumValue","src":"21719:12:48"},{"id":13640,"name":"StandardDeviation","nameLocation":"21778:17:48","nodeType":"EnumValue","src":"21778:17:48"},{"id":13641,"name":"Reserved0x08","nameLocation":"21817:12:48","nodeType":"EnumValue","src":"21817:12:48"},{"id":13642,"name":"Reserved0x09","nameLocation":"21871:12:48","nodeType":"EnumValue","src":"21871:12:48"},{"id":13643,"name":"Reserved0x10","nameLocation":"21924:12:48","nodeType":"EnumValue","src":"21924:12:48"},{"id":13644,"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":13646,"nodeType":"StructuredDocumentation","src":"22015:100:48","text":"Structure containing the Retrieve-Attestation-Delivery parts of a Witnet-compliant Data Request."},"id":13657,"members":[{"constant":false,"id":13650,"mutability":"mutable","name":"retrieve","nameLocation":"22169:8:48","nodeType":"VariableDeclaration","scope":13657,"src":"22152:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13678_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonRetrieval[]"},"typeName":{"baseType":{"id":13648,"nodeType":"UserDefinedTypeName","pathNode":{"id":13647,"name":"RadonRetrieval","nameLocations":["22152:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13678,"src":"22152:14:48"},"referencedDeclaration":13678,"src":"22152:14:48","typeDescriptions":{"typeIdentifier":"t_struct$_RadonRetrieval_$13678_storage_ptr","typeString":"struct Witnet.RadonRetrieval"}},"id":13649,"nodeType":"ArrayTypeName","src":"22152:16:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_RadonRetrieval_$13678_storage_$dyn_storage_ptr","typeString":"struct Witnet.RadonRetrieval[]"}},"visibility":"internal"},{"constant":false,"id":13653,"mutability":"mutable","name":"aggregate","nameLocation":"22201:9:48","nodeType":"VariableDeclaration","scope":13657,"src":"22188:22:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":13652,"nodeType":"UserDefinedTypeName","pathNode":{"id":13651,"name":"RadonReducer","nameLocations":["22188:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"22188:12:48"},"referencedDeclaration":13631,"src":"22188:12:48","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"},{"constant":false,"id":13656,"mutability":"mutable","name":"tally","nameLocation":"22234:5:48","nodeType":"VariableDeclaration","scope":13657,"src":"22221:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"},"typeName":{"id":13655,"nodeType":"UserDefinedTypeName","pathNode":{"id":13654,"name":"RadonReducer","nameLocations":["22221:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13631,"src":"22221:12:48"},"referencedDeclaration":13631,"src":"22221:12:48","typeDescriptions":{"typeIdentifier":"t_struct$_RadonReducer_$13631_storage_ptr","typeString":"struct Witnet.RadonReducer"}},"visibility":"internal"}],"name":"RadonRequest","nameLocation":"22128:12:48","nodeType":"StructDefinition","scope":16619,"src":"22121:126:48","visibility":"public"},{"canonicalName":"Witnet.RadonRetrieval","documentation":{"id":13658,"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":13678,"members":[{"constant":false,"id":13660,"mutability":"mutable","name":"argsCount","nameLocation":"22418:9:48","nodeType":"VariableDeclaration","scope":13678,"src":"22412:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13659,"name":"uint8","nodeType":"ElementaryTypeName","src":"22412:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":13663,"mutability":"mutable","name":"method","nameLocation":"22460:6:48","nodeType":"VariableDeclaration","scope":13678,"src":"22438:28:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13685","typeString":"enum Witnet.RadonRetrievalMethods"},"typeName":{"id":13662,"nodeType":"UserDefinedTypeName","pathNode":{"id":13661,"name":"RadonRetrievalMethods","nameLocations":["22438:21:48"],"nodeType":"IdentifierPath","referencedDeclaration":13685,"src":"22438:21:48"},"referencedDeclaration":13685,"src":"22438:21:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonRetrievalMethods_$13685","typeString":"enum Witnet.RadonRetrievalMethods"}},"visibility":"internal"},{"constant":false,"id":13666,"mutability":"mutable","name":"dataType","nameLocation":"22492:8:48","nodeType":"VariableDeclaration","scope":13678,"src":"22477:23:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":13665,"nodeType":"UserDefinedTypeName","pathNode":{"id":13664,"name":"RadonDataTypes","nameLocations":["22477:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13603,"src":"22477:14:48"},"referencedDeclaration":13603,"src":"22477:14:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"},{"constant":false,"id":13668,"mutability":"mutable","name":"url","nameLocation":"22518:3:48","nodeType":"VariableDeclaration","scope":13678,"src":"22511:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":13667,"name":"string","nodeType":"ElementaryTypeName","src":"22511:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":13670,"mutability":"mutable","name":"body","nameLocation":"22539:4:48","nodeType":"VariableDeclaration","scope":13678,"src":"22532:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"},"typeName":{"id":13669,"name":"string","nodeType":"ElementaryTypeName","src":"22532:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":13675,"mutability":"mutable","name":"headers","nameLocation":"22566:7:48","nodeType":"VariableDeclaration","scope":13678,"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":13671,"name":"string","nodeType":"ElementaryTypeName","src":"22554:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":13673,"length":{"hexValue":"32","id":13672,"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":13674,"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":13677,"mutability":"mutable","name":"radonScript","nameLocation":"22590:11:48","nodeType":"VariableDeclaration","scope":13678,"src":"22584:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":13676,"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":16619,"src":"22379:230:48","visibility":"public"},{"canonicalName":"Witnet.RadonRetrievalMethods","documentation":{"id":13679,"nodeType":"StructuredDocumentation","src":"22617:80:48","text":"Possible Radon retrieval methods that can be used within a Radon Retrieval. "},"id":13685,"members":[{"id":13680,"name":"Unknown","nameLocation":"22749:7:48","nodeType":"EnumValue","src":"22749:7:48"},{"id":13681,"name":"HttpGet","nameLocation":"22775:7:48","nodeType":"EnumValue","src":"22775:7:48"},{"id":13682,"name":"RNG","nameLocation":"22801:3:48","nodeType":"EnumValue","src":"22801:3:48"},{"id":13683,"name":"HttpPost","nameLocation":"22823:8:48","nodeType":"EnumValue","src":"22823:8:48"},{"id":13684,"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":13686,"nodeType":"StructuredDocumentation","src":"22873:99:48","text":"Structure containing all possible SLA security parameters of a Witnet-compliant Data Request."},"id":13697,"members":[{"constant":false,"id":13688,"mutability":"mutable","name":"numWitnesses","nameLocation":"23013:12:48","nodeType":"VariableDeclaration","scope":13697,"src":"23007:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13687,"name":"uint8","nodeType":"ElementaryTypeName","src":"23007:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":13690,"mutability":"mutable","name":"minConsensusPercentage","nameLocation":"23042:22:48","nodeType":"VariableDeclaration","scope":13697,"src":"23036:28:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":13689,"name":"uint8","nodeType":"ElementaryTypeName","src":"23036:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":13692,"mutability":"mutable","name":"witnessReward","nameLocation":"23082:13:48","nodeType":"VariableDeclaration","scope":13697,"src":"23075:20:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":13691,"name":"uint64","nodeType":"ElementaryTypeName","src":"23075:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":13694,"mutability":"mutable","name":"witnessCollateral","nameLocation":"23113:17:48","nodeType":"VariableDeclaration","scope":13697,"src":"23106:24:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":13693,"name":"uint64","nodeType":"ElementaryTypeName","src":"23106:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":13696,"mutability":"mutable","name":"minerCommitRevealFee","nameLocation":"23148:20:48","nodeType":"VariableDeclaration","scope":13697,"src":"23141:27:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":13695,"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":16619,"src":"22978:198:48","visibility":"public"},{"body":{"id":13719,"nodeType":"Block","src":"23413:64:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"id":13717,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13711,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13701,"src":"23446:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}],"expression":{"id":13709,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13092,"src":"23431:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13092_$","typeString":"type(Witnet.Address)"}},"id":13710,"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_$13092_$returns$_t_bytes20_$","typeString":"function (Witnet.Address) pure returns (bytes20)"}},"id":13712,"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":13715,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13704,"src":"23467:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}],"expression":{"id":13713,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13092,"src":"23452:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13092_$","typeString":"type(Witnet.Address)"}},"id":13714,"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_$13092_$returns$_t_bytes20_$","typeString":"function (Witnet.Address) pure returns (bytes20)"}},"id":13716,"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":13708,"id":13718,"nodeType":"Return","src":"23424:45:48"}]},"documentation":{"id":13698,"nodeType":"StructuredDocumentation","src":"23186:158:48","text":"=======================================================================\n --- Witnet.Address helper functions -----------------------------------"},"id":13720,"implemented":true,"kind":"function","modifiers":[],"name":"eq","nameLocation":"23359:2:48","nodeType":"FunctionDefinition","parameters":{"id":13705,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13701,"mutability":"mutable","name":"a","nameLocation":"23370:1:48","nodeType":"VariableDeclaration","scope":13720,"src":"23362:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"},"typeName":{"id":13700,"nodeType":"UserDefinedTypeName","pathNode":{"id":13699,"name":"Address","nameLocations":["23362:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13092,"src":"23362:7:48"},"referencedDeclaration":13092,"src":"23362:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"visibility":"internal"},{"constant":false,"id":13704,"mutability":"mutable","name":"b","nameLocation":"23381:1:48","nodeType":"VariableDeclaration","scope":13720,"src":"23373:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"},"typeName":{"id":13703,"nodeType":"UserDefinedTypeName","pathNode":{"id":13702,"name":"Address","nameLocations":["23373:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13092,"src":"23373:7:48"},"referencedDeclaration":13092,"src":"23373:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"visibility":"internal"}],"src":"23361:22:48"},"returnParameters":{"id":13708,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13707,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13720,"src":"23407:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13706,"name":"bool","nodeType":"ElementaryTypeName","src":"23407:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"23406:6:48"},"scope":16619,"src":"23350:127:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13760,"nodeType":"Block","src":"23570:183:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":13741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":13733,"name":"pkh","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13722,"src":"23595:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":13732,"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":13731,"name":"bytes","nodeType":"ElementaryTypeName","src":"23589:5:48","typeDescriptions":{}}},"id":13734,"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":13735,"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":13736,"name":"mainnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13724,"src":"23611:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"3433","id":13738,"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":13739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"23611:17:48","trueExpression":{"hexValue":"3432","id":13737,"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":13740,"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":13742,"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":13730,"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":13743,"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":13744,"nodeType":"ExpressionStatement","src":"23581:75:48"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":13751,"name":"pkh","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13722,"src":"23713:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"condition":{"id":13752,"name":"mainnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13724,"src":"23718:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"74776974","id":13754,"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":13755,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"23718:24:48","trueExpression":{"hexValue":"776974","id":13753,"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":13749,"name":"Bech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12052,"src":"23695:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Bech32_$12052_$","typeString":"type(library Bech32)"}},"id":13750,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23702:10:48","memberName":"fromBech32","nodeType":"MemberAccess","referencedDeclaration":10889,"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":13756,"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":13748,"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":13747,"name":"bytes20","nodeType":"ElementaryTypeName","src":"23687:7:48","typeDescriptions":{}}},"id":13757,"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":13745,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13092,"src":"23674:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13092_$","typeString":"type(Witnet.Address)"}},"id":13746,"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_$13092_$","typeString":"function (bytes20) pure returns (Witnet.Address)"}},"id":13758,"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_$13092","typeString":"Witnet.Address"}},"functionReturnParameters":13729,"id":13759,"nodeType":"Return","src":"23667:78:48"}]},"id":13761,"implemented":true,"kind":"function","modifiers":[],"name":"fromBech32","nameLocation":"23494:10:48","nodeType":"FunctionDefinition","parameters":{"id":13725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13722,"mutability":"mutable","name":"pkh","nameLocation":"23519:3:48","nodeType":"VariableDeclaration","scope":13761,"src":"23505:17:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13721,"name":"string","nodeType":"ElementaryTypeName","src":"23505:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":13724,"mutability":"mutable","name":"mainnet","nameLocation":"23529:7:48","nodeType":"VariableDeclaration","scope":13761,"src":"23524:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13723,"name":"bool","nodeType":"ElementaryTypeName","src":"23524:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"23504:33:48"},"returnParameters":{"id":13729,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13728,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13761,"src":"23561:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"},"typeName":{"id":13727,"nodeType":"UserDefinedTypeName","pathNode":{"id":13726,"name":"Address","nameLocations":["23561:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13092,"src":"23561:7:48"},"referencedDeclaration":13092,"src":"23561:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"visibility":"internal"}],"src":"23560:9:48"},"scope":16619,"src":"23485:268:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13786,"nodeType":"Block","src":"23851:104:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":13777,"name":"witAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13764,"src":"23908:10:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}],"expression":{"id":13775,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13092,"src":"23893:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13092_$","typeString":"type(Witnet.Address)"}},"id":13776,"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_$13092_$returns$_t_bytes20_$","typeString":"function (Witnet.Address) pure returns (bytes20)"}},"id":13778,"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":13774,"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":13773,"name":"address","nodeType":"ElementaryTypeName","src":"23885:7:48","typeDescriptions":{}}},"id":13779,"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":13780,"name":"mainnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13766,"src":"23922:7:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"hexValue":"74776974","id":13782,"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":13783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"23922:24:48","trueExpression":{"hexValue":"776974","id":13781,"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":13771,"name":"Bech32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":12052,"src":"23869:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Bech32_$12052_$","typeString":"type(library Bech32)"}},"id":13772,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"23876:8:48","memberName":"toBech32","nodeType":"MemberAccess","referencedDeclaration":10700,"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":13784,"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":13770,"id":13785,"nodeType":"Return","src":"23862:85:48"}]},"id":13787,"implemented":true,"kind":"function","modifiers":[],"name":"toBech32","nameLocation":"23770:8:48","nodeType":"FunctionDefinition","parameters":{"id":13767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13764,"mutability":"mutable","name":"witAddress","nameLocation":"23787:10:48","nodeType":"VariableDeclaration","scope":13787,"src":"23779:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"},"typeName":{"id":13763,"nodeType":"UserDefinedTypeName","pathNode":{"id":13762,"name":"Address","nameLocations":["23779:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13092,"src":"23779:7:48"},"referencedDeclaration":13092,"src":"23779:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"visibility":"internal"},{"constant":false,"id":13766,"mutability":"mutable","name":"mainnet","nameLocation":"23804:7:48","nodeType":"VariableDeclaration","scope":13787,"src":"23799:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13765,"name":"bool","nodeType":"ElementaryTypeName","src":"23799:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"23778:34:48"},"returnParameters":{"id":13770,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13769,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13787,"src":"23836:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":13768,"name":"string","nodeType":"ElementaryTypeName","src":"23836:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"23835:15:48"},"scope":16619,"src":"23761:194:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13805,"nodeType":"Block","src":"24019:57:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"id":13803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13797,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13790,"src":"24052:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}],"expression":{"id":13795,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13092,"src":"24037:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13092_$","typeString":"type(Witnet.Address)"}},"id":13796,"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_$13092_$returns$_t_bytes20_$","typeString":"function (Witnet.Address) pure returns (bytes20)"}},"id":13798,"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":13801,"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":13800,"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":13799,"name":"bytes20","nodeType":"ElementaryTypeName","src":"24058:7:48","typeDescriptions":{}}},"id":13802,"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":13794,"id":13804,"nodeType":"Return","src":"24030:38:48"}]},"id":13806,"implemented":true,"kind":"function","modifiers":[],"name":"isZero","nameLocation":"23972:6:48","nodeType":"FunctionDefinition","parameters":{"id":13791,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13790,"mutability":"mutable","name":"a","nameLocation":"23987:1:48","nodeType":"VariableDeclaration","scope":13806,"src":"23979:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"},"typeName":{"id":13789,"nodeType":"UserDefinedTypeName","pathNode":{"id":13788,"name":"Address","nameLocations":["23979:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13092,"src":"23979:7:48"},"referencedDeclaration":13092,"src":"23979:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"visibility":"internal"}],"src":"23978:11:48"},"returnParameters":{"id":13794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13793,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13806,"src":"24013:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13792,"name":"bool","nodeType":"ElementaryTypeName","src":"24013:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"24012:6:48"},"scope":16619,"src":"23963:113:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13827,"nodeType":"Block","src":"24357:77:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"id":13824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13819,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13810,"src":"24395:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}],"id":13818,"name":"root","nodeType":"Identifier","overloadedDeclarations":[13858,13888],"referencedDeclaration":13888,"src":"24390:4:48","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_struct$_Beacon_$13191_storage_ptr_$returns$_t_bytes24_$","typeString":"function (struct Witnet.Beacon storage pointer) view returns (bytes24)"}},"id":13820,"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":13822,"name":"other","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13813,"src":"24409:5:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}],"id":13821,"name":"root","nodeType":"Identifier","overloadedDeclarations":[13858,13888],"referencedDeclaration":13858,"src":"24404:4:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Beacon_$13191_calldata_ptr_$returns$_t_bytes24_$","typeString":"function (struct Witnet.Beacon calldata) pure returns (bytes24)"}},"id":13823,"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":13825,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"24375:51:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":13817,"id":13826,"nodeType":"Return","src":"24368:58:48"}]},"documentation":{"id":13807,"nodeType":"StructuredDocumentation","src":"24090:158:48","text":"=======================================================================\n --- Witnet.Beacon helper functions ------------------------------------"},"id":13828,"implemented":true,"kind":"function","modifiers":[],"name":"equals","nameLocation":"24263:6:48","nodeType":"FunctionDefinition","parameters":{"id":13814,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13810,"mutability":"mutable","name":"self","nameLocation":"24285:4:48","nodeType":"VariableDeclaration","scope":13828,"src":"24270:19:48","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":13809,"nodeType":"UserDefinedTypeName","pathNode":{"id":13808,"name":"Beacon","nameLocations":["24270:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13191,"src":"24270:6:48"},"referencedDeclaration":13191,"src":"24270:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"},{"constant":false,"id":13813,"mutability":"mutable","name":"other","nameLocation":"24307:5:48","nodeType":"VariableDeclaration","scope":13828,"src":"24291:21:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":13812,"nodeType":"UserDefinedTypeName","pathNode":{"id":13811,"name":"Beacon","nameLocations":["24291:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13191,"src":"24291:6:48"},"referencedDeclaration":13191,"src":"24291:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"}],"src":"24269:44:48"},"returnParameters":{"id":13817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13816,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13828,"src":"24346:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13815,"name":"bool","nodeType":"ElementaryTypeName","src":"24346:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"24345:6:48"},"scope":16619,"src":"24254:180:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13857,"nodeType":"Block","src":"24510:271:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"expression":{"id":13841,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13831,"src":"24571:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":13842,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24576:5:48","memberName":"index","nodeType":"MemberAccess","referencedDeclaration":13178,"src":"24571:10:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":13843,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13831,"src":"24596:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":13844,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24601:9:48","memberName":"prevIndex","nodeType":"MemberAccess","referencedDeclaration":13180,"src":"24596:14:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":13845,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13831,"src":"24625:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":13846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24630:8:48","memberName":"prevRoot","nodeType":"MemberAccess","referencedDeclaration":13182,"src":"24625:13:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"expression":{"id":13847,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13831,"src":"24653:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":13848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24658:20:48","memberName":"ddrTalliesMerkleRoot","nodeType":"MemberAccess","referencedDeclaration":13184,"src":"24653:25:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"expression":{"id":13849,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13831,"src":"24693:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":13850,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24698:20:48","memberName":"droTalliesMerkleRoot","nodeType":"MemberAccess","referencedDeclaration":13186,"src":"24693:25:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"expression":{"id":13851,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13831,"src":"24733:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"id":13852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"24738:22:48","memberName":"nextCommitteeAggPubkey","nodeType":"MemberAccess","referencedDeclaration":13190,"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":13839,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"24546:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":13840,"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":13853,"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":13838,"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":13854,"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":13837,"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":13836,"name":"bytes24","nodeType":"ElementaryTypeName","src":"24528:7:48","typeDescriptions":{}}},"id":13855,"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":13835,"id":13856,"nodeType":"Return","src":"24521:252:48"}]},"id":13858,"implemented":true,"kind":"function","modifiers":[],"name":"root","nameLocation":"24451:4:48","nodeType":"FunctionDefinition","parameters":{"id":13832,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13831,"mutability":"mutable","name":"self","nameLocation":"24472:4:48","nodeType":"VariableDeclaration","scope":13858,"src":"24456:20:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":13830,"nodeType":"UserDefinedTypeName","pathNode":{"id":13829,"name":"Beacon","nameLocations":["24456:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13191,"src":"24456:6:48"},"referencedDeclaration":13191,"src":"24456:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"}],"src":"24455:22:48"},"returnParameters":{"id":13835,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13834,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13858,"src":"24501:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13833,"name":"bytes24","nodeType":"ElementaryTypeName","src":"24501:7:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"24500:9:48"},"scope":16619,"src":"24442:339:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13887,"nodeType":"Block","src":"24860:271:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"expression":{"id":13871,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13861,"src":"24921:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":13872,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24926:5:48","memberName":"index","nodeType":"MemberAccess","referencedDeclaration":13178,"src":"24921:10:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":13873,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13861,"src":"24946:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":13874,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24951:9:48","memberName":"prevIndex","nodeType":"MemberAccess","referencedDeclaration":13180,"src":"24946:14:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"expression":{"id":13875,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13861,"src":"24975:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":13876,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"24980:8:48","memberName":"prevRoot","nodeType":"MemberAccess","referencedDeclaration":13182,"src":"24975:13:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},{"expression":{"id":13877,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13861,"src":"25003:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":13878,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25008:20:48","memberName":"ddrTalliesMerkleRoot","nodeType":"MemberAccess","referencedDeclaration":13184,"src":"25003:25:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"expression":{"id":13879,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13861,"src":"25043:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":13880,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25048:20:48","memberName":"droTalliesMerkleRoot","nodeType":"MemberAccess","referencedDeclaration":13186,"src":"25043:25:48","typeDescriptions":{"typeIdentifier":"t_bytes16","typeString":"bytes16"}},{"expression":{"id":13881,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13861,"src":"25083:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon storage pointer"}},"id":13882,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25088:22:48","memberName":"nextCommitteeAggPubkey","nodeType":"MemberAccess","referencedDeclaration":13190,"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":13869,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"24896:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":13870,"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":13883,"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":13868,"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":13884,"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":13867,"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":13866,"name":"bytes24","nodeType":"ElementaryTypeName","src":"24878:7:48","typeDescriptions":{}}},"id":13885,"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":13865,"id":13886,"nodeType":"Return","src":"24871:252:48"}]},"id":13888,"implemented":true,"kind":"function","modifiers":[],"name":"root","nameLocation":"24802:4:48","nodeType":"FunctionDefinition","parameters":{"id":13862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13861,"mutability":"mutable","name":"self","nameLocation":"24822:4:48","nodeType":"VariableDeclaration","scope":13888,"src":"24807:19:48","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":13860,"nodeType":"UserDefinedTypeName","pathNode":{"id":13859,"name":"Beacon","nameLocations":["24807:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13191,"src":"24807:6:48"},"referencedDeclaration":13191,"src":"24807:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"}],"src":"24806:21:48"},"returnParameters":{"id":13865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13864,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13888,"src":"24851:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"},"typeName":{"id":13863,"name":"bytes24","nodeType":"ElementaryTypeName","src":"24851:7:48","typeDescriptions":{"typeIdentifier":"t_bytes24","typeString":"bytes24"}},"visibility":"internal"}],"src":"24850:9:48"},"scope":16619,"src":"24793:338:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":13910,"nodeType":"Block","src":"25381:72:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":13908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13902,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13892,"src":"25418:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":13900,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"25399:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":13901,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":13903,"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":13906,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13895,"src":"25443:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":13904,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"25424:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":13905,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":13907,"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":13899,"id":13909,"nodeType":"Return","src":"25392:53:48"}]},"documentation":{"id":13889,"nodeType":"StructuredDocumentation","src":"25145:158:48","text":"=======================================================================\n --- BlockNumber helper functions --------------------------------------"},"id":13911,"implemented":true,"kind":"function","modifiers":[],"name":"egt","nameLocation":"25318:3:48","nodeType":"FunctionDefinition","parameters":{"id":13896,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13892,"mutability":"mutable","name":"a","nameLocation":"25334:1:48","nodeType":"VariableDeclaration","scope":13911,"src":"25322:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":13891,"nodeType":"UserDefinedTypeName","pathNode":{"id":13890,"name":"BlockNumber","nameLocations":["25322:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"25322:11:48"},"referencedDeclaration":13094,"src":"25322:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"},{"constant":false,"id":13895,"mutability":"mutable","name":"b","nameLocation":"25349:1:48","nodeType":"VariableDeclaration","scope":13911,"src":"25337:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":13894,"nodeType":"UserDefinedTypeName","pathNode":{"id":13893,"name":"BlockNumber","nameLocations":["25337:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"25337:11:48"},"referencedDeclaration":13094,"src":"25337:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"25321:30:48"},"returnParameters":{"id":13899,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13898,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13911,"src":"25375:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13897,"name":"bool","nodeType":"ElementaryTypeName","src":"25375:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25374:6:48"},"scope":16619,"src":"25309:144:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13932,"nodeType":"Block","src":"25533:72:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":13930,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13924,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13914,"src":"25570:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":13922,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"25551:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":13923,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":13925,"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":13928,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13917,"src":"25595:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":13926,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"25576:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":13927,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":13929,"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":13921,"id":13931,"nodeType":"Return","src":"25544:53:48"}]},"id":13933,"implemented":true,"kind":"function","modifiers":[],"name":"elt","nameLocation":"25470:3:48","nodeType":"FunctionDefinition","parameters":{"id":13918,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13914,"mutability":"mutable","name":"a","nameLocation":"25486:1:48","nodeType":"VariableDeclaration","scope":13933,"src":"25474:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":13913,"nodeType":"UserDefinedTypeName","pathNode":{"id":13912,"name":"BlockNumber","nameLocations":["25474:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"25474:11:48"},"referencedDeclaration":13094,"src":"25474:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"},{"constant":false,"id":13917,"mutability":"mutable","name":"b","nameLocation":"25501:1:48","nodeType":"VariableDeclaration","scope":13933,"src":"25489:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":13916,"nodeType":"UserDefinedTypeName","pathNode":{"id":13915,"name":"BlockNumber","nameLocations":["25489:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"25489:11:48"},"referencedDeclaration":13094,"src":"25489:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"25473:30:48"},"returnParameters":{"id":13921,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13920,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13933,"src":"25527:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13919,"name":"bool","nodeType":"ElementaryTypeName","src":"25527:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25526:6:48"},"scope":16619,"src":"25461:144:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13954,"nodeType":"Block","src":"25684:71:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":13952,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13946,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13936,"src":"25721:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":13944,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"25702:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":13945,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":13947,"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":13950,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13939,"src":"25745:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":13948,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"25726:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":13949,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":13951,"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":13943,"id":13953,"nodeType":"Return","src":"25695:52:48"}]},"id":13955,"implemented":true,"kind":"function","modifiers":[],"name":"gt","nameLocation":"25622:2:48","nodeType":"FunctionDefinition","parameters":{"id":13940,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13936,"mutability":"mutable","name":"a","nameLocation":"25637:1:48","nodeType":"VariableDeclaration","scope":13955,"src":"25625:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":13935,"nodeType":"UserDefinedTypeName","pathNode":{"id":13934,"name":"BlockNumber","nameLocations":["25625:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"25625:11:48"},"referencedDeclaration":13094,"src":"25625:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"},{"constant":false,"id":13939,"mutability":"mutable","name":"b","nameLocation":"25652:1:48","nodeType":"VariableDeclaration","scope":13955,"src":"25640:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":13938,"nodeType":"UserDefinedTypeName","pathNode":{"id":13937,"name":"BlockNumber","nameLocations":["25640:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"25640:11:48"},"referencedDeclaration":13094,"src":"25640:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"25624:30:48"},"returnParameters":{"id":13943,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13942,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13955,"src":"25678:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13941,"name":"bool","nodeType":"ElementaryTypeName","src":"25678:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25677:6:48"},"scope":16619,"src":"25613:142:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13976,"nodeType":"Block","src":"25834:71:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":13974,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13968,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13958,"src":"25871:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":13966,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"25852:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":13967,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":13969,"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":13972,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13961,"src":"25895:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":13970,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"25876:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":13971,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":13973,"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":13965,"id":13975,"nodeType":"Return","src":"25845:52:48"}]},"id":13977,"implemented":true,"kind":"function","modifiers":[],"name":"lt","nameLocation":"25772:2:48","nodeType":"FunctionDefinition","parameters":{"id":13962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13958,"mutability":"mutable","name":"a","nameLocation":"25787:1:48","nodeType":"VariableDeclaration","scope":13977,"src":"25775:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":13957,"nodeType":"UserDefinedTypeName","pathNode":{"id":13956,"name":"BlockNumber","nameLocations":["25775:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"25775:11:48"},"referencedDeclaration":13094,"src":"25775:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"},{"constant":false,"id":13961,"mutability":"mutable","name":"b","nameLocation":"25802:1:48","nodeType":"VariableDeclaration","scope":13977,"src":"25790:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":13960,"nodeType":"UserDefinedTypeName","pathNode":{"id":13959,"name":"BlockNumber","nameLocations":["25790:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"25790:11:48"},"referencedDeclaration":13094,"src":"25790:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"25774:30:48"},"returnParameters":{"id":13965,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13964,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13977,"src":"25828:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13963,"name":"bool","nodeType":"ElementaryTypeName","src":"25828:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25827:6:48"},"scope":16619,"src":"25763:142:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":13993,"nodeType":"Block","src":"25973:54:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":13990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":13987,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13980,"src":"26011:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":13985,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"25992:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":13986,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":13988,"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":13989,"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":13991,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"25991:28:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":13984,"id":13992,"nodeType":"Return","src":"25984:35:48"}]},"id":13994,"implemented":true,"kind":"function","modifiers":[],"name":"isZero","nameLocation":"25922:6:48","nodeType":"FunctionDefinition","parameters":{"id":13981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13980,"mutability":"mutable","name":"b","nameLocation":"25941:1:48","nodeType":"VariableDeclaration","scope":13994,"src":"25929:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":13979,"nodeType":"UserDefinedTypeName","pathNode":{"id":13978,"name":"BlockNumber","nameLocations":["25929:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"25929:11:48"},"referencedDeclaration":13094,"src":"25929:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"25928:15:48"},"returnParameters":{"id":13984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13983,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":13994,"src":"25967:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":13982,"name":"bool","nodeType":"ElementaryTypeName","src":"25967:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25966:6:48"},"scope":16619,"src":"25913:114:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14012,"nodeType":"Block","src":"26365:131:48","statements":[{"expression":{"arguments":[{"expression":{"id":14004,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13998,"src":"26412:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13208_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26417:21:48","memberName":"witDrRelayerSignature","nodeType":"MemberAccess","referencedDeclaration":13199,"src":"26412:26:48","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"arguments":[{"expression":{"id":14007,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13998,"src":"26462:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13208_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26467:9:48","memberName":"queryHash","nodeType":"MemberAccess","referencedDeclaration":13197,"src":"26462:14:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"}],"id":14006,"name":"hashify","nodeType":"Identifier","overloadedDeclarations":[14576,14623,14644],"referencedDeclaration":14576,"src":"26454:7:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_QueryHash_$13098_$returns$_t_bytes32_$","typeString":"function (Witnet.QueryHash) pure returns (bytes32)"}},"id":14009,"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":14003,"name":"recoverEvmAddr","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15344,"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":14010,"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":14002,"id":14011,"nodeType":"Return","src":"26376:112:48"}]},"documentation":{"id":13995,"nodeType":"StructuredDocumentation","src":"26037:238:48","text":"===============================================================================================================\n --- Data*Report helper methods --------------------------------------------------------------------------------"},"id":14013,"implemented":true,"kind":"function","modifiers":[],"name":"queryRelayer","nameLocation":"26290:12:48","nodeType":"FunctionDefinition","parameters":{"id":13999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":13998,"mutability":"mutable","name":"self","nameLocation":"26327:4:48","nodeType":"VariableDeclaration","scope":14013,"src":"26303:28:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13208_calldata_ptr","typeString":"struct Witnet.DataPullReport"},"typeName":{"id":13997,"nodeType":"UserDefinedTypeName","pathNode":{"id":13996,"name":"DataPullReport","nameLocations":["26303:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13208,"src":"26303:14:48"},"referencedDeclaration":13208,"src":"26303:14:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13208_storage_ptr","typeString":"struct Witnet.DataPullReport"}},"visibility":"internal"}],"src":"26302:30:48"},"returnParameters":{"id":14002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14001,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14013,"src":"26356:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14000,"name":"address","nodeType":"ElementaryTypeName","src":"26356:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"26355:9:48"},"scope":16619,"src":"26281:215:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14037,"nodeType":"Block","src":"26585:235:48","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":14024,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14016,"src":"26638:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13208_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14025,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26643:9:48","memberName":"queryHash","nodeType":"MemberAccess","referencedDeclaration":13197,"src":"26638:14:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"}},{"expression":{"id":14026,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14016,"src":"26667:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13208_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26672:21:48","memberName":"witDrRelayerSignature","nodeType":"MemberAccess","referencedDeclaration":13199,"src":"26667:26:48","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},{"expression":{"id":14028,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14016,"src":"26708:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13208_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26713:11:48","memberName":"witDrTxHash","nodeType":"MemberAccess","referencedDeclaration":13207,"src":"26708:16:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},{"expression":{"id":14030,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14016,"src":"26739:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13208_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14031,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26744:16:48","memberName":"witDrResultEpoch","nodeType":"MemberAccess","referencedDeclaration":13202,"src":"26739:21:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},{"expression":{"id":14032,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14016,"src":"26775:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13208_calldata_ptr","typeString":"struct Witnet.DataPullReport calldata"}},"id":14033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26780:20:48","memberName":"witDrResultCborBytes","nodeType":"MemberAccess","referencedDeclaration":13204,"src":"26775:25:48","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"},{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":14022,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26613:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14023,"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":14034,"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":14021,"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":14035,"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":14020,"id":14036,"nodeType":"Return","src":"26596:216:48"}]},"id":14038,"implemented":true,"kind":"function","modifiers":[],"name":"tallyHash","nameLocation":"26513:9:48","nodeType":"FunctionDefinition","parameters":{"id":14017,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14016,"mutability":"mutable","name":"self","nameLocation":"26547:4:48","nodeType":"VariableDeclaration","scope":14038,"src":"26523:28:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13208_calldata_ptr","typeString":"struct Witnet.DataPullReport"},"typeName":{"id":14015,"nodeType":"UserDefinedTypeName","pathNode":{"id":14014,"name":"DataPullReport","nameLocations":["26523:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13208,"src":"26523:14:48"},"referencedDeclaration":13208,"src":"26523:14:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPullReport_$13208_storage_ptr","typeString":"struct Witnet.DataPullReport"}},"visibility":"internal"}],"src":"26522:30:48"},"returnParameters":{"id":14020,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14019,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14038,"src":"26576:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14018,"name":"bytes32","nodeType":"ElementaryTypeName","src":"26576:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"26575:9:48"},"scope":16619,"src":"26504:316:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14069,"nodeType":"Block","src":"26906:335:48","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":14049,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14041,"src":"26959:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14050,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26964:11:48","memberName":"witDrTxHash","nodeType":"MemberAccess","referencedDeclaration":13211,"src":"26959:16:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"}},{"expression":{"id":14051,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14041,"src":"26990:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"26995:12:48","memberName":"queryRadHash","nodeType":"MemberAccess","referencedDeclaration":13214,"src":"26990:17:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},{"expression":{"expression":{"id":14053,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14041,"src":"27022:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27027:11:48","memberName":"queryParams","nodeType":"MemberAccess","referencedDeclaration":13217,"src":"27022:16:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14055,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27039:16:48","memberName":"witResultMaxSize","nodeType":"MemberAccess","referencedDeclaration":13319,"src":"27022:33:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"expression":{"expression":{"id":14056,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14041,"src":"27070:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14057,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27075:11:48","memberName":"queryParams","nodeType":"MemberAccess","referencedDeclaration":13217,"src":"27070:16:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27087:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13321,"src":"27070:33:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"expression":{"expression":{"id":14059,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14041,"src":"27118:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27123:11:48","memberName":"queryParams","nodeType":"MemberAccess","referencedDeclaration":13217,"src":"27118:16:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27135:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13323,"src":"27118:33:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"expression":{"id":14062,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14041,"src":"27166:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14063,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27171:15:48","memberName":"resultTimestamp","nodeType":"MemberAccess","referencedDeclaration":13220,"src":"27166:20:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},{"expression":{"id":14064,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14041,"src":"27201:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport calldata"}},"id":14065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"27206:15:48","memberName":"resultCborBytes","nodeType":"MemberAccess","referencedDeclaration":13222,"src":"27201:20:48","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_TransactionHash_$13108","typeString":"Witnet.TransactionHash"},{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_uint16","typeString":"uint16"},{"typeIdentifier":"t_uint64","typeString":"uint64"},{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"expression":{"id":14047,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"26934:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14048,"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":14066,"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":14046,"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":14067,"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":14045,"id":14068,"nodeType":"Return","src":"26917:316:48"}]},"id":14070,"implemented":true,"kind":"function","modifiers":[],"name":"digest","nameLocation":"26837:6:48","nodeType":"FunctionDefinition","parameters":{"id":14042,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14041,"mutability":"mutable","name":"self","nameLocation":"26868:4:48","nodeType":"VariableDeclaration","scope":14070,"src":"26844:28:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_calldata_ptr","typeString":"struct Witnet.DataPushReport"},"typeName":{"id":14040,"nodeType":"UserDefinedTypeName","pathNode":{"id":14039,"name":"DataPushReport","nameLocations":["26844:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13223,"src":"26844:14:48"},"referencedDeclaration":13223,"src":"26844:14:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataPushReport_$13223_storage_ptr","typeString":"struct Witnet.DataPushReport"}},"visibility":"internal"}],"src":"26843:30:48"},"returnParameters":{"id":14045,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14044,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14070,"src":"26897:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14043,"name":"bytes32","nodeType":"ElementaryTypeName","src":"26897:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"26896:9:48"},"scope":16619,"src":"26828:413:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14085,"nodeType":"Block","src":"27554:62:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":14083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14079,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14074,"src":"27572:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14080,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27577:6:48","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13227,"src":"27572:11:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14081,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"27587:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14082,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"27600:8:48","memberName":"NoErrors","nodeType":"MemberAccess","referencedDeclaration":13325,"src":"27587:21:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"src":"27572:36:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14078,"id":14084,"nodeType":"Return","src":"27565:43:48"}]},"documentation":{"id":14071,"nodeType":"StructuredDocumentation","src":"27253:224:48","text":"========================================================================================================\n --- 'DataResult' helper methods ------------------------------------------------------------------------"},"id":14086,"implemented":true,"kind":"function","modifiers":[],"name":"noErrors","nameLocation":"27492:8:48","nodeType":"FunctionDefinition","parameters":{"id":14075,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14074,"mutability":"mutable","name":"self","nameLocation":"27519:4:48","nodeType":"VariableDeclaration","scope":14086,"src":"27501:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14073,"nodeType":"UserDefinedTypeName","pathNode":{"id":14072,"name":"DataResult","nameLocations":["27501:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"27501:10:48"},"referencedDeclaration":13240,"src":"27501:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"27500:24:48"},"returnParameters":{"id":14078,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14077,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14086,"src":"27548:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14076,"name":"bool","nodeType":"ElementaryTypeName","src":"27548:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"27547:6:48"},"scope":16619,"src":"27483:133:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14099,"nodeType":"Block","src":"27698:50:48","statements":[{"expression":{"arguments":[{"expression":{"id":14095,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14089,"src":"27728:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14096,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27733:6:48","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13227,"src":"27728:11:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}],"id":14094,"name":"keepWaiting","nodeType":"Identifier","overloadedDeclarations":[14100,14837],"referencedDeclaration":14837,"src":"27716:11:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13581_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14097,"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":14093,"id":14098,"nodeType":"Return","src":"27709:31:48"}]},"id":14100,"implemented":true,"kind":"function","modifiers":[],"name":"keepWaiting","nameLocation":"27633:11:48","nodeType":"FunctionDefinition","parameters":{"id":14090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14089,"mutability":"mutable","name":"self","nameLocation":"27663:4:48","nodeType":"VariableDeclaration","scope":14100,"src":"27645:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14088,"nodeType":"UserDefinedTypeName","pathNode":{"id":14087,"name":"DataResult","nameLocations":["27645:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"27645:10:48"},"referencedDeclaration":13240,"src":"27645:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"27644:24:48"},"returnParameters":{"id":14093,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14092,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14100,"src":"27692:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14091,"name":"bool","nodeType":"ElementaryTypeName","src":"27692:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"27691:6:48"},"scope":16619,"src":"27624:124:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14113,"nodeType":"Block","src":"27828:48:48","statements":[{"expression":{"arguments":[{"expression":{"id":14109,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14103,"src":"27856:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14110,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"27861:6:48","memberName":"status","nodeType":"MemberAccess","referencedDeclaration":13227,"src":"27856:11:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}],"id":14108,"name":"hasErrors","nodeType":"Identifier","overloadedDeclarations":[14114,14780],"referencedDeclaration":14780,"src":"27846:9:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13581_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14111,"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":14107,"id":14112,"nodeType":"Return","src":"27839:29:48"}]},"id":14114,"implemented":true,"kind":"function","modifiers":[],"name":"hasErrors","nameLocation":"27765:9:48","nodeType":"FunctionDefinition","parameters":{"id":14104,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14103,"mutability":"mutable","name":"self","nameLocation":"27793:4:48","nodeType":"VariableDeclaration","scope":14114,"src":"27775:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14102,"nodeType":"UserDefinedTypeName","pathNode":{"id":14101,"name":"DataResult","nameLocations":["27775:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"27775:10:48"},"referencedDeclaration":13240,"src":"27775:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"27774:24:48"},"returnParameters":{"id":14107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14106,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14114,"src":"27822:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14105,"name":"bool","nodeType":"ElementaryTypeName","src":"27822:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"27821:6:48"},"scope":16619,"src":"27756:120:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14145,"nodeType":"Block","src":"27965:225:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14131,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"27998:18:48","subExpression":{"arguments":[{"id":14124,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14117,"src":"28011:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}],"id":14123,"name":"keepWaiting","nodeType":"Identifier","overloadedDeclarations":[14100,14837],"referencedDeclaration":14100,"src":"27999:11:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_DataResult_$13240_memory_ptr_$returns$_t_bool_$","typeString":"function (struct Witnet.DataResult memory) pure returns (bool)"}},"id":14125,"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_$13603","typeString":"enum Witnet.RadonDataTypes"},"id":14130,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14127,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14117,"src":"28037:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14128,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28042:8:48","memberName":"dataType","nodeType":"MemberAccess","referencedDeclaration":13230,"src":"28037:13:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":14129,"name":"expectedDataType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14120,"src":"28054:16:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","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":14132,"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":14122,"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":14133,"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":14134,"nodeType":"ExpressionStatement","src":"27976:146:48"},{"id":14135,"nodeType":"PlaceholderStatement","src":"28124:1:48"},{"expression":{"id":14143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":14136,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14117,"src":"28137:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"28142:8:48","memberName":"dataType","nodeType":"MemberAccess","referencedDeclaration":13230,"src":"28137:13:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":14140,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14117,"src":"28171:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14141,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28176:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"28171:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":14139,"name":"peekRadonDataType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14505,"src":"28153:17:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_enum$_RadonDataTypes_$13603_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (enum Witnet.RadonDataTypes)"}},"id":14142,"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_$13603","typeString":"enum Witnet.RadonDataTypes"}},"src":"28137:45:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"id":14144,"nodeType":"ExpressionStatement","src":"28137:45:48"}]},"id":14146,"name":"_checkDataType","nameLocation":"27893:14:48","nodeType":"ModifierDefinition","parameters":{"id":14121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14117,"mutability":"mutable","name":"self","nameLocation":"27926:4:48","nodeType":"VariableDeclaration","scope":14146,"src":"27908:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14116,"nodeType":"UserDefinedTypeName","pathNode":{"id":14115,"name":"DataResult","nameLocations":["27908:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"27908:10:48"},"referencedDeclaration":13240,"src":"27908:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"},{"constant":false,"id":14120,"mutability":"mutable","name":"expectedDataType","nameLocation":"27947:16:48","nodeType":"VariableDeclaration","scope":14146,"src":"27932:31:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":14119,"nodeType":"UserDefinedTypeName","pathNode":{"id":14118,"name":"RadonDataTypes","nameLocations":["27932:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13603,"src":"27932:14:48"},"referencedDeclaration":13603,"src":"27932:14:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"27907:57:48"},"src":"27884:306:48","virtual":false,"visibility":"internal"},{"body":{"id":14166,"nodeType":"Block","src":"28359:59:48","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14160,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14149,"src":"28387:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14161,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28392:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"28387:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14162,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28398:9:48","memberName":"readBytes","nodeType":"MemberAccess","referencedDeclaration":19450,"src":"28387:20:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bytes memory)"}},"id":14163,"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":14159,"name":"toAddress","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15527,"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":14164,"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":14158,"id":14165,"nodeType":"Return","src":"28370:40:48"}]},"id":14167,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14152,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14149,"src":"28293:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14153,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"28299:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14154,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28314:5:48","memberName":"Bytes","nodeType":"MemberAccess","referencedDeclaration":13586,"src":"28299:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14155,"kind":"modifierInvocation","modifierName":{"id":14151,"name":"_checkDataType","nameLocations":["28278:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"28278:14:48"},"nodeType":"ModifierInvocation","src":"28278:42:48"}],"name":"fetchAddress","nameLocation":"28207:12:48","nodeType":"FunctionDefinition","parameters":{"id":14150,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14149,"mutability":"mutable","name":"self","nameLocation":"28238:4:48","nodeType":"VariableDeclaration","scope":14167,"src":"28220:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14148,"nodeType":"UserDefinedTypeName","pathNode":{"id":14147,"name":"DataResult","nameLocations":["28220:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"28220:10:48"},"referencedDeclaration":13240,"src":"28220:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"28219:24:48"},"returnParameters":{"id":14158,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14157,"mutability":"mutable","name":"_res","nameLocation":"28348:4:48","nodeType":"VariableDeclaration","scope":14167,"src":"28340:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":14156,"name":"address","nodeType":"ElementaryTypeName","src":"28340:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"28339:14:48"},"scope":16619,"src":"28198:220:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14185,"nodeType":"Block","src":"28575:47:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14180,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14170,"src":"28593:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14181,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28598:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"28593:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14182,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28604:8:48","memberName":"readBool","nodeType":"MemberAccess","referencedDeclaration":19351,"src":"28593:19:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_bool_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bool)"}},"id":14183,"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":14179,"id":14184,"nodeType":"Return","src":"28586:28:48"}]},"id":14186,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14173,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14170,"src":"28518:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14174,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"28524:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14175,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28539:4:48","memberName":"Bool","nodeType":"MemberAccess","referencedDeclaration":13585,"src":"28524:19:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14176,"kind":"modifierInvocation","modifierName":{"id":14172,"name":"_checkDataType","nameLocations":["28503:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"28503:14:48"},"nodeType":"ModifierInvocation","src":"28503:41:48"}],"name":"fetchBool","nameLocation":"28435:9:48","nodeType":"FunctionDefinition","parameters":{"id":14171,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14170,"mutability":"mutable","name":"self","nameLocation":"28463:4:48","nodeType":"VariableDeclaration","scope":14186,"src":"28445:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14169,"nodeType":"UserDefinedTypeName","pathNode":{"id":14168,"name":"DataResult","nameLocations":["28445:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"28445:10:48"},"referencedDeclaration":13240,"src":"28445:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"28444:24:48"},"returnParameters":{"id":14179,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14178,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14186,"src":"28564:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14177,"name":"bool","nodeType":"ElementaryTypeName","src":"28564:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"28563:6:48"},"scope":16619,"src":"28426:196:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14204,"nodeType":"Block","src":"28788:48:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14199,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"28806:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14200,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28811:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"28806:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14201,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"28817:9:48","memberName":"readBytes","nodeType":"MemberAccess","referencedDeclaration":19450,"src":"28806:20:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bytes memory)"}},"id":14202,"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":14198,"id":14203,"nodeType":"Return","src":"28799:29:48"}]},"id":14205,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14192,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14189,"src":"28722:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14193,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"28728:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14194,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28743:5:48","memberName":"Bytes","nodeType":"MemberAccess","referencedDeclaration":13586,"src":"28728:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14195,"kind":"modifierInvocation","modifierName":{"id":14191,"name":"_checkDataType","nameLocations":["28707:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"28707:14:48"},"nodeType":"ModifierInvocation","src":"28707:42:48"}],"name":"fetchBytes","nameLocation":"28639:10:48","nodeType":"FunctionDefinition","parameters":{"id":14190,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14189,"mutability":"mutable","name":"self","nameLocation":"28668:4:48","nodeType":"VariableDeclaration","scope":14205,"src":"28650:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14188,"nodeType":"UserDefinedTypeName","pathNode":{"id":14187,"name":"DataResult","nameLocations":["28650:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"28650:10:48"},"referencedDeclaration":13240,"src":"28650:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"28649:24:48"},"returnParameters":{"id":14198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14197,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14205,"src":"28769:12:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":14196,"name":"bytes","nodeType":"ElementaryTypeName","src":"28769:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"28768:14:48"},"scope":16619,"src":"28630:206:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14225,"nodeType":"Block","src":"28997:58:48","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14219,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14208,"src":"29024:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14220,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29029:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"29024:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14221,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29035:9:48","memberName":"readBytes","nodeType":"MemberAccess","referencedDeclaration":19450,"src":"29024:20:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bytes memory)"}},"id":14222,"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":14218,"name":"toBytes4","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15543,"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":14223,"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":14217,"id":14224,"nodeType":"Return","src":"29008:39:48"}]},"id":14226,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14211,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14208,"src":"28937:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14212,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"28943:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14213,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"28958:5:48","memberName":"Bytes","nodeType":"MemberAccess","referencedDeclaration":13586,"src":"28943:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14214,"kind":"modifierInvocation","modifierName":{"id":14210,"name":"_checkDataType","nameLocations":["28922:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"28922:14:48"},"nodeType":"ModifierInvocation","src":"28922:42:48"}],"name":"fetchBytes4","nameLocation":"28853:11:48","nodeType":"FunctionDefinition","parameters":{"id":14209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14208,"mutability":"mutable","name":"self","nameLocation":"28883:4:48","nodeType":"VariableDeclaration","scope":14226,"src":"28865:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14207,"nodeType":"UserDefinedTypeName","pathNode":{"id":14206,"name":"DataResult","nameLocations":["28865:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"28865:10:48"},"referencedDeclaration":13240,"src":"28865:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"28864:24:48"},"returnParameters":{"id":14217,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14216,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14226,"src":"28984:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":14215,"name":"bytes4","nodeType":"ElementaryTypeName","src":"28984:6:48","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"28983:8:48"},"scope":16619,"src":"28844:211:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14246,"nodeType":"Block","src":"29218:59:48","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14240,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14229,"src":"29246:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14241,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29251:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"29246:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14242,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29257:9:48","memberName":"readBytes","nodeType":"MemberAccess","referencedDeclaration":19450,"src":"29246:20:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bytes memory)"}},"id":14243,"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":14239,"name":"toBytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15572,"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":14244,"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":14238,"id":14245,"nodeType":"Return","src":"29229:40:48"}]},"id":14247,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14232,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14229,"src":"29157:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14233,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"29163:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14234,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"29178:5:48","memberName":"Bytes","nodeType":"MemberAccess","referencedDeclaration":13586,"src":"29163:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14235,"kind":"modifierInvocation","modifierName":{"id":14231,"name":"_checkDataType","nameLocations":["29142:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"29142:14:48"},"nodeType":"ModifierInvocation","src":"29142:42:48"}],"name":"fetchBytes32","nameLocation":"29072:12:48","nodeType":"FunctionDefinition","parameters":{"id":14230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14229,"mutability":"mutable","name":"self","nameLocation":"29103:4:48","nodeType":"VariableDeclaration","scope":14247,"src":"29085:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14228,"nodeType":"UserDefinedTypeName","pathNode":{"id":14227,"name":"DataResult","nameLocations":["29085:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"29085:10:48"},"referencedDeclaration":13240,"src":"29085:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"29084:24:48"},"returnParameters":{"id":14238,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14237,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14247,"src":"29204:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14236,"name":"bytes32","nodeType":"ElementaryTypeName","src":"29204:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"29203:9:48"},"scope":16619,"src":"29063:214:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14267,"nodeType":"Block","src":"29459:48:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14262,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14250,"src":"29477:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14263,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29482:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"29477:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14264,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"29488:9:48","memberName":"readArray","nodeType":"MemberAccess","referencedDeclaration":19118,"src":"29477:20:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":14265,"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_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"functionReturnParameters":14261,"id":14266,"nodeType":"Return","src":"29470:29:48"}]},"id":14268,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14253,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14250,"src":"29381:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14254,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"29387:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14255,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"29402:5:48","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13584,"src":"29387:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14256,"kind":"modifierInvocation","modifierName":{"id":14252,"name":"_checkDataType","nameLocations":["29366:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"29366:14:48"},"nodeType":"ModifierInvocation","src":"29366:42:48"}],"name":"fetchCborArray","nameLocation":"29294:14:48","nodeType":"FunctionDefinition","parameters":{"id":14251,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14250,"mutability":"mutable","name":"self","nameLocation":"29327:4:48","nodeType":"VariableDeclaration","scope":14268,"src":"29309:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14249,"nodeType":"UserDefinedTypeName","pathNode":{"id":14248,"name":"DataResult","nameLocations":["29309:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"29309:10:48"},"referencedDeclaration":13240,"src":"29309:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"29308:24:48"},"returnParameters":{"id":14261,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14260,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14268,"src":"29428:24:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":14258,"nodeType":"UserDefinedTypeName","pathNode":{"id":14257,"name":"WitnetCBOR.CBOR","nameLocations":["29428:10:48","29439:4:48"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"29428:15:48"},"referencedDeclaration":18536,"src":"29428:15:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":14259,"nodeType":"ArrayTypeName","src":"29428:17:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"src":"29427:26:48"},"scope":16619,"src":"29285:222:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14287,"nodeType":"Block","src":"30133:50:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14282,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"30151:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14283,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30156:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"30151:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14284,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30162:11:48","memberName":"readFloat16","nodeType":"MemberAccess","referencedDeclaration":19481,"src":"30151:22:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_int32_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int32)"}},"id":14285,"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":14281,"id":14286,"nodeType":"Return","src":"30144:31:48"}]},"documentation":{"id":14269,"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":14288,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14275,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14272,"src":"30074:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14276,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"30080:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14277,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"30095:5:48","memberName":"Float","nodeType":"MemberAccess","referencedDeclaration":13588,"src":"30080:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14278,"kind":"modifierInvocation","modifierName":{"id":14274,"name":"_checkDataType","nameLocations":["30059:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"30059:14:48"},"nodeType":"ModifierInvocation","src":"30059:42:48"}],"name":"fetchFloatFixed16","nameLocation":"29984:17:48","nodeType":"FunctionDefinition","parameters":{"id":14273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14272,"mutability":"mutable","name":"self","nameLocation":"30020:4:48","nodeType":"VariableDeclaration","scope":14288,"src":"30002:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14271,"nodeType":"UserDefinedTypeName","pathNode":{"id":14270,"name":"DataResult","nameLocations":["30002:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"30002:10:48"},"referencedDeclaration":13240,"src":"30002:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"30001:24:48"},"returnParameters":{"id":14281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14280,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14288,"src":"30121:5:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":14279,"name":"int32","nodeType":"ElementaryTypeName","src":"30121:5:48","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"30120:7:48"},"scope":16619,"src":"29975:208:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14308,"nodeType":"Block","src":"30439:55:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14303,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14292,"src":"30457:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14304,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30462:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"30457:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14305,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30468:16:48","memberName":"readFloat16Array","nodeType":"MemberAccess","referencedDeclaration":19614,"src":"30457:27:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_array$_t_int32_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int32[] memory)"}},"id":14306,"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":14302,"id":14307,"nodeType":"Return","src":"30450:36:48"}]},"documentation":{"id":14289,"nodeType":"StructuredDocumentation","src":"30191:72:48","text":"@dev Decode an array of fixed16 values from the Result's CBOR value."},"id":14309,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14295,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14292,"src":"30372:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14296,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"30378:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14297,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"30393:5:48","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13584,"src":"30378:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14298,"kind":"modifierInvocation","modifierName":{"id":14294,"name":"_checkDataType","nameLocations":["30357:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"30357:14:48"},"nodeType":"ModifierInvocation","src":"30357:42:48"}],"name":"fetchFloatFixed16Array","nameLocation":"30278:22:48","nodeType":"FunctionDefinition","parameters":{"id":14293,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14292,"mutability":"mutable","name":"self","nameLocation":"30319:4:48","nodeType":"VariableDeclaration","scope":14309,"src":"30301:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14291,"nodeType":"UserDefinedTypeName","pathNode":{"id":14290,"name":"DataResult","nameLocations":["30301:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"30301:10:48"},"referencedDeclaration":13240,"src":"30301:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"30300:24:48"},"returnParameters":{"id":14302,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14301,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14309,"src":"30418:14:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_memory_ptr","typeString":"int32[]"},"typeName":{"baseType":{"id":14299,"name":"int32","nodeType":"ElementaryTypeName","src":"30418:5:48","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":14300,"nodeType":"ArrayTypeName","src":"30418:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_storage_ptr","typeString":"int32[]"}},"visibility":"internal"}],"src":"30417:16:48"},"scope":16619,"src":"30269:225:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14328,"nodeType":"Block","src":"30722:46:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14323,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14313,"src":"30740:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14324,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30745:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"30740:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14325,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30751:7:48","memberName":"readInt","nodeType":"MemberAccess","referencedDeclaration":19673,"src":"30740:18:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_int64_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int64)"}},"id":14326,"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":14322,"id":14327,"nodeType":"Return","src":"30733:27:48"}]},"documentation":{"id":14310,"nodeType":"StructuredDocumentation","src":"30502:65:48","text":"@dev Decode a `int64` value from the DataResult's CBOR value."},"id":14329,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14316,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14313,"src":"30662:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14317,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"30668:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14318,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"30683:7:48","memberName":"Integer","nodeType":"MemberAccess","referencedDeclaration":13587,"src":"30668:22:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14319,"kind":"modifierInvocation","modifierName":{"id":14315,"name":"_checkDataType","nameLocations":["30647:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"30647:14:48"},"nodeType":"ModifierInvocation","src":"30647:44:48"}],"name":"fetchInt","nameLocation":"30582:8:48","nodeType":"FunctionDefinition","parameters":{"id":14314,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14313,"mutability":"mutable","name":"self","nameLocation":"30609:4:48","nodeType":"VariableDeclaration","scope":14329,"src":"30591:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14312,"nodeType":"UserDefinedTypeName","pathNode":{"id":14311,"name":"DataResult","nameLocations":["30591:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"30591:10:48"},"referencedDeclaration":13240,"src":"30591:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"30590:24:48"},"returnParameters":{"id":14322,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14321,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14329,"src":"30710:5:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":14320,"name":"int64","nodeType":"ElementaryTypeName","src":"30710:5:48","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"30709:7:48"},"scope":16619,"src":"30573:195:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14348,"nodeType":"Block","src":"30939:51:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14343,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14332,"src":"30957:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14344,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30962:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"30957:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14345,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"30968:12:48","memberName":"readIntArray","nodeType":"MemberAccess","referencedDeclaration":19744,"src":"30957:23:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_array$_t_int64_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int64[] memory)"}},"id":14346,"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":14342,"id":14347,"nodeType":"Return","src":"30950:32:48"}]},"id":14349,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14335,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14332,"src":"30872:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14336,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"30878:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14337,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"30893:5:48","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13584,"src":"30878:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14338,"kind":"modifierInvocation","modifierName":{"id":14334,"name":"_checkDataType","nameLocations":["30857:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"30857:14:48"},"nodeType":"ModifierInvocation","src":"30857:42:48"}],"name":"fetchInt64Array","nameLocation":"30785:15:48","nodeType":"FunctionDefinition","parameters":{"id":14333,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14332,"mutability":"mutable","name":"self","nameLocation":"30819:4:48","nodeType":"VariableDeclaration","scope":14349,"src":"30801:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14331,"nodeType":"UserDefinedTypeName","pathNode":{"id":14330,"name":"DataResult","nameLocations":["30801:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"30801:10:48"},"referencedDeclaration":13240,"src":"30801:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"30800:24:48"},"returnParameters":{"id":14342,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14341,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14349,"src":"30918:14:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_memory_ptr","typeString":"int64[]"},"typeName":{"baseType":{"id":14339,"name":"int64","nodeType":"ElementaryTypeName","src":"30918:5:48","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":14340,"nodeType":"ArrayTypeName","src":"30918:7:48","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_storage_ptr","typeString":"int64[]"}},"visibility":"internal"}],"src":"30917:16:48"},"scope":16619,"src":"30776:214:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14367,"nodeType":"Block","src":"31157:49:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14362,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14352,"src":"31175:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14363,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31180:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"31175:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14364,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31186:10:48","memberName":"readString","nodeType":"MemberAccess","referencedDeclaration":19829,"src":"31175:21:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_string_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory)"}},"id":14365,"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":14361,"id":14366,"nodeType":"Return","src":"31168:30:48"}]},"id":14368,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14355,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14352,"src":"31090:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14356,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"31096:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14357,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"31111:6:48","memberName":"String","nodeType":"MemberAccess","referencedDeclaration":13590,"src":"31096:21:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14358,"kind":"modifierInvocation","modifierName":{"id":14354,"name":"_checkDataType","nameLocations":["31075:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"31075:14:48"},"nodeType":"ModifierInvocation","src":"31075:43:48"}],"name":"fetchString","nameLocation":"31007:11:48","nodeType":"FunctionDefinition","parameters":{"id":14353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14352,"mutability":"mutable","name":"self","nameLocation":"31037:4:48","nodeType":"VariableDeclaration","scope":14368,"src":"31019:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14351,"nodeType":"UserDefinedTypeName","pathNode":{"id":14350,"name":"DataResult","nameLocations":["31019:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"31019:10:48"},"referencedDeclaration":13240,"src":"31019:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"31018:24:48"},"returnParameters":{"id":14361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14360,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14368,"src":"31137:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":14359,"name":"string","nodeType":"ElementaryTypeName","src":"31137:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"31136:15:48"},"scope":16619,"src":"30998:208:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14387,"nodeType":"Block","src":"31379:54:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14382,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14371,"src":"31397:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14383,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31402:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"31397:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14384,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31408:15:48","memberName":"readStringArray","nodeType":"MemberAccess","referencedDeclaration":19900,"src":"31397:26:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_array$_t_string_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory[] memory)"}},"id":14385,"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":14381,"id":14386,"nodeType":"Return","src":"31390:35:48"}]},"id":14388,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14374,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14371,"src":"31311:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14375,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"31317:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14376,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"31332:5:48","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13584,"src":"31317:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14377,"kind":"modifierInvocation","modifierName":{"id":14373,"name":"_checkDataType","nameLocations":["31296:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"31296:14:48"},"nodeType":"ModifierInvocation","src":"31296:42:48"}],"name":"fetchStringArray","nameLocation":"31223:16:48","nodeType":"FunctionDefinition","parameters":{"id":14372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14371,"mutability":"mutable","name":"self","nameLocation":"31258:4:48","nodeType":"VariableDeclaration","scope":14388,"src":"31240:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14370,"nodeType":"UserDefinedTypeName","pathNode":{"id":14369,"name":"DataResult","nameLocations":["31240:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"31240:10:48"},"referencedDeclaration":13240,"src":"31240:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"31239:24:48"},"returnParameters":{"id":14381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14380,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14388,"src":"31357:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":14378,"name":"string","nodeType":"ElementaryTypeName","src":"31357:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":14379,"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":16619,"src":"31214:219:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14407,"nodeType":"Block","src":"31664:47:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14402,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14392,"src":"31682:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14403,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31687:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"31682:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14404,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31693:8:48","memberName":"readUint","nodeType":"MemberAccess","referencedDeclaration":19921,"src":"31682:19:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":14405,"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":14401,"id":14406,"nodeType":"Return","src":"31675:28:48"}]},"documentation":{"id":14389,"nodeType":"StructuredDocumentation","src":"31441:66:48","text":"@dev Decode a `uint64` value from the DataResult's CBOR value."},"id":14408,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14395,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14392,"src":"31603:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14396,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"31609:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14397,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"31624:7:48","memberName":"Integer","nodeType":"MemberAccess","referencedDeclaration":13587,"src":"31609:22:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14398,"kind":"modifierInvocation","modifierName":{"id":14394,"name":"_checkDataType","nameLocations":["31588:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"31588:14:48"},"nodeType":"ModifierInvocation","src":"31588:44:48"}],"name":"fetchUint","nameLocation":"31522:9:48","nodeType":"FunctionDefinition","parameters":{"id":14393,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14392,"mutability":"mutable","name":"self","nameLocation":"31550:4:48","nodeType":"VariableDeclaration","scope":14408,"src":"31532:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14391,"nodeType":"UserDefinedTypeName","pathNode":{"id":14390,"name":"DataResult","nameLocations":["31532:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"31532:10:48"},"referencedDeclaration":13240,"src":"31532:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"31531:24:48"},"returnParameters":{"id":14401,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14400,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14408,"src":"31651:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":14399,"name":"uint64","nodeType":"ElementaryTypeName","src":"31651:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"31650:8:48"},"scope":16619,"src":"31513:198:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14427,"nodeType":"Block","src":"31884:52:48","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":14422,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14411,"src":"31902:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},"id":14423,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31907:5:48","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":13239,"src":"31902:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14424,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"31913:13:48","memberName":"readUintArray","nodeType":"MemberAccess","referencedDeclaration":19992,"src":"31902:24:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_array$_t_uint64_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64[] memory)"}},"id":14425,"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":14421,"id":14426,"nodeType":"Return","src":"31895:33:48"}]},"id":14428,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":14414,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14411,"src":"31816:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult memory"}},{"expression":{"id":14415,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"31822:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14416,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"31837:5:48","memberName":"Array","nodeType":"MemberAccess","referencedDeclaration":13584,"src":"31822:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}}],"id":14417,"kind":"modifierInvocation","modifierName":{"id":14413,"name":"_checkDataType","nameLocations":["31801:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":14146,"src":"31801:14:48"},"nodeType":"ModifierInvocation","src":"31801:42:48"}],"name":"fetchUint64Array","nameLocation":"31728:16:48","nodeType":"FunctionDefinition","parameters":{"id":14412,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14411,"mutability":"mutable","name":"self","nameLocation":"31763:4:48","nodeType":"VariableDeclaration","scope":14428,"src":"31745:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_memory_ptr","typeString":"struct Witnet.DataResult"},"typeName":{"id":14410,"nodeType":"UserDefinedTypeName","pathNode":{"id":14409,"name":"DataResult","nameLocations":["31745:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13240,"src":"31745:10:48"},"referencedDeclaration":13240,"src":"31745:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_DataResult_$13240_storage_ptr","typeString":"struct Witnet.DataResult"}},"visibility":"internal"}],"src":"31744:24:48"},"returnParameters":{"id":14421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14420,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14428,"src":"31862:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[]"},"typeName":{"baseType":{"id":14418,"name":"uint64","nodeType":"ElementaryTypeName","src":"31862:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":14419,"nodeType":"ArrayTypeName","src":"31862:8:48","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_storage_ptr","typeString":"uint64[]"}},"visibility":"internal"}],"src":"31861:17:48"},"scope":16619,"src":"31719:217:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"constant":true,"id":14431,"mutability":"constant","name":"_CBOR_MAJOR_TYPE_TO_RADON_DATA_TYPES_MAP","nameLocation":"31968:40:48","nodeType":"VariableDeclaration","scope":16619,"src":"31944:83:48","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes7","typeString":"bytes7"},"typeName":{"id":14429,"name":"bytes7","nodeType":"ElementaryTypeName","src":"31944:6:48","typeDescriptions":{"typeIdentifier":"t_bytes7","typeString":"bytes7"}},"value":{"hexValue":"30783034303430333037303130363030","id":14430,"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":14504,"nodeType":"Block","src":"32135:642:48","statements":[{"expression":{"id":14443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":14440,"name":"_type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14438,"src":"32146:5:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":14441,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"32154:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14442,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32169:3:48","memberName":"Any","nodeType":"MemberAccess","referencedDeclaration":13583,"src":"32154:18:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"src":"32146:26:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"id":14444,"nodeType":"ExpressionStatement","src":"32146:26:48"},{"condition":{"id":14448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"32187:11:48","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":14445,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14434,"src":"32188:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14446,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32193:3:48","memberName":"eof","nodeType":"MemberAccess","referencedDeclaration":18652,"src":"32188:8:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_bool_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bool)"}},"id":14447,"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":14503,"nodeType":"IfStatement","src":"32183:587:48","trueBody":{"id":14502,"nodeType":"Block","src":"32200:570:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14452,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14449,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14434,"src":"32219:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14450,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32224:9:48","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"32219:14:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"36","id":14451,"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":14470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14467,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14434,"src":"32393:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14468,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32398:9:48","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"32393:14:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"37","id":14469,"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":14500,"nodeType":"IfStatement","src":"32389:370:48","trueBody":{"id":14499,"nodeType":"Block","src":"32414:345:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14471,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14434,"src":"32437:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14472,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32442:21:48","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"32437:26:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3230","id":14473,"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":14478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14475,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14434,"src":"32473:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14476,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32478:21:48","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"32473:26:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3231","id":14477,"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":14492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":14487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14484,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14434,"src":"32604:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14485,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32609:21:48","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"32604:26:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3235","id":14486,"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":14491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14488,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14434,"src":"32640:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14489,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32645:21:48","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"32640:26:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3237","id":14490,"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":14497,"nodeType":"IfStatement","src":"32600:144:48","trueBody":{"id":14496,"nodeType":"Block","src":"32674:70:48","statements":[{"expression":{"expression":{"id":14493,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"32704:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14494,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32719:5:48","memberName":"Float","nodeType":"MemberAccess","referencedDeclaration":13588,"src":"32704:20:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"functionReturnParameters":14439,"id":14495,"nodeType":"Return","src":"32697:27:48"}]}},"id":14498,"nodeType":"IfStatement","src":"32433:311:48","trueBody":{"id":14483,"nodeType":"Block","src":"32507:87:48","statements":[{"expression":{"expression":{"id":14480,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"32537:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14481,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32552:4:48","memberName":"Bool","nodeType":"MemberAccess","referencedDeclaration":13585,"src":"32537:19:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"functionReturnParameters":14439,"id":14482,"nodeType":"Return","src":"32530:26:48"}]}}]}},"id":14501,"nodeType":"IfStatement","src":"32215:544:48","trueBody":{"id":14466,"nodeType":"Block","src":"32240:143:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"baseExpression":{"id":14458,"name":"_CBOR_MAJOR_TYPE_TO_RADON_DATA_TYPES_MAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14431,"src":"32294:40:48","typeDescriptions":{"typeIdentifier":"t_bytes7","typeString":"bytes7"}},"id":14461,"indexExpression":{"expression":{"id":14459,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14434,"src":"32335:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":14460,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"32340:9:48","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"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":14457,"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":14456,"name":"bytes1","nodeType":"ElementaryTypeName","src":"32287:6:48","typeDescriptions":{}}},"id":14462,"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":14455,"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":14454,"name":"uint8","nodeType":"ElementaryTypeName","src":"32281:5:48","typeDescriptions":{}}},"id":14463,"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":14453,"name":"RadonDataTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13603,"src":"32266:14:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_RadonDataTypes_$13603_$","typeString":"type(enum Witnet.RadonDataTypes)"}},"id":14464,"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_$13603","typeString":"enum Witnet.RadonDataTypes"}},"functionReturnParameters":14439,"id":14465,"nodeType":"Return","src":"32259:94:48"}]}}]}}]},"id":14505,"implemented":true,"kind":"function","modifiers":[],"name":"peekRadonDataType","nameLocation":"32043:17:48","nodeType":"FunctionDefinition","parameters":{"id":14435,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14434,"mutability":"mutable","name":"cbor","nameLocation":"32084:4:48","nodeType":"VariableDeclaration","scope":14505,"src":"32061:27:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":14433,"nodeType":"UserDefinedTypeName","pathNode":{"id":14432,"name":"WitnetCBOR.CBOR","nameLocations":["32061:10:48","32072:4:48"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"32061:15:48"},"referencedDeclaration":18536,"src":"32061:15:48","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"32060:29:48"},"returnParameters":{"id":14439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14438,"mutability":"mutable","name":"_type","nameLocation":"32128:5:48","nodeType":"VariableDeclaration","scope":14505,"src":"32113:20:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"},"typeName":{"id":14437,"nodeType":"UserDefinedTypeName","pathNode":{"id":14436,"name":"RadonDataTypes","nameLocations":["32113:14:48"],"nodeType":"IdentifierPath","referencedDeclaration":13603,"src":"32113:14:48"},"referencedDeclaration":13603,"src":"32113:14:48","typeDescriptions":{"typeIdentifier":"t_enum$_RadonDataTypes_$13603","typeString":"enum Witnet.RadonDataTypes"}},"visibility":"internal"}],"src":"32112:22:48"},"scope":16619,"src":"32034:743:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14524,"nodeType":"Block","src":"33050:58:48","statements":[{"expression":{"expression":{"baseExpression":{"id":14516,"name":"rollup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14510,"src":"33068:6:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_FastForward_$13253_calldata_ptr_$dyn_calldata_ptr","typeString":"struct Witnet.FastForward calldata[] calldata"}},"id":14521,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":14520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14517,"name":"rollup","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14510,"src":"33075:6:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_FastForward_$13253_calldata_ptr_$dyn_calldata_ptr","typeString":"struct Witnet.FastForward calldata[] calldata"}},"id":14518,"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":14519,"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_$13253_calldata_ptr","typeString":"struct Witnet.FastForward calldata"}},"id":14522,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33094:6:48","memberName":"beacon","nodeType":"MemberAccess","referencedDeclaration":13243,"src":"33068:32:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon calldata"}},"functionReturnParameters":14515,"id":14523,"nodeType":"Return","src":"33061:39:48"}]},"documentation":{"id":14506,"nodeType":"StructuredDocumentation","src":"32787:158:48","text":"=======================================================================\n --- FastForward helper functions --------------------------------------"},"id":14525,"implemented":true,"kind":"function","modifiers":[],"name":"head","nameLocation":"32960:4:48","nodeType":"FunctionDefinition","parameters":{"id":14511,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14510,"mutability":"mutable","name":"rollup","nameLocation":"32988:6:48","nodeType":"VariableDeclaration","scope":14525,"src":"32965:29:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_FastForward_$13253_calldata_ptr_$dyn_calldata_ptr","typeString":"struct Witnet.FastForward[]"},"typeName":{"baseType":{"id":14508,"nodeType":"UserDefinedTypeName","pathNode":{"id":14507,"name":"FastForward","nameLocations":["32965:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13253,"src":"32965:11:48"},"referencedDeclaration":13253,"src":"32965:11:48","typeDescriptions":{"typeIdentifier":"t_struct$_FastForward_$13253_storage_ptr","typeString":"struct Witnet.FastForward"}},"id":14509,"nodeType":"ArrayTypeName","src":"32965:13:48","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_FastForward_$13253_storage_$dyn_storage_ptr","typeString":"struct Witnet.FastForward[]"}},"visibility":"internal"}],"src":"32964:31:48"},"returnParameters":{"id":14515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14514,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14525,"src":"33028:15:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_calldata_ptr","typeString":"struct Witnet.Beacon"},"typeName":{"id":14513,"nodeType":"UserDefinedTypeName","pathNode":{"id":14512,"name":"Beacon","nameLocations":["33028:6:48"],"nodeType":"IdentifierPath","referencedDeclaration":13191,"src":"33028:6:48"},"referencedDeclaration":13191,"src":"33028:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_Beacon_$13191_storage_ptr","typeString":"struct Witnet.Beacon"}},"visibility":"internal"}],"src":"33027:17:48"},"scope":16619,"src":"32951:157:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14556,"nodeType":"Block","src":"33468:243:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":14541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14537,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14529,"src":"33505:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33510:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13321,"src":"33505:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":14539,"name":"stored","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14532,"src":"33530:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA storage pointer"}},"id":14540,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33537:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13321,"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":14546,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14542,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14529,"src":"33574:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33579:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13323,"src":"33574:21:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":14544,"name":"stored","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14532,"src":"33599:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA storage pointer"}},"id":14545,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33606:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13323,"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":14552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14548,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14529,"src":"33644:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14549,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33649:16:48","memberName":"witResultMaxSize","nodeType":"MemberAccess","referencedDeclaration":13319,"src":"33644:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":14550,"name":"stored","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14532,"src":"33669:6:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA storage pointer"}},"id":14551,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"33676:16:48","memberName":"witResultMaxSize","nodeType":"MemberAccess","referencedDeclaration":13319,"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":14554,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"33486:217:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14536,"id":14555,"nodeType":"Return","src":"33479:224:48"}]},"documentation":{"id":14526,"nodeType":"StructuredDocumentation","src":"33118:238:48","text":"===============================================================================================================\n --- Query* helper methods -------------------------------------------------------------------------------------"},"id":14557,"implemented":true,"kind":"function","modifiers":[],"name":"equalOrGreaterThan","nameLocation":"33371:18:48","nodeType":"FunctionDefinition","parameters":{"id":14533,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14529,"mutability":"mutable","name":"self","nameLocation":"33408:4:48","nodeType":"VariableDeclaration","scope":14557,"src":"33390:22:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":14528,"nodeType":"UserDefinedTypeName","pathNode":{"id":14527,"name":"QuerySLA","nameLocations":["33390:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"33390:8:48"},"referencedDeclaration":13324,"src":"33390:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"},{"constant":false,"id":14532,"mutability":"mutable","name":"stored","nameLocation":"33431:6:48","nodeType":"VariableDeclaration","scope":14557,"src":"33414:23:48","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":14531,"nodeType":"UserDefinedTypeName","pathNode":{"id":14530,"name":"QuerySLA","nameLocations":["33414:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"33414:8:48"},"referencedDeclaration":13324,"src":"33414:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"33389:49:48"},"returnParameters":{"id":14536,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14535,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14557,"src":"33462:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14534,"name":"bool","nodeType":"ElementaryTypeName","src":"33462:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"33461:6:48"},"scope":16619,"src":"33362:349:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14575,"nodeType":"Block","src":"33784:71:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"id":14570,"name":"hash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14560,"src":"33840:4:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"}],"expression":{"id":14568,"name":"QueryHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13098,"src":"33823:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_QueryHash_$13098_$","typeString":"type(Witnet.QueryHash)"}},"id":14569,"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_$13098_$returns$_t_bytes15_$","typeString":"function (Witnet.QueryHash) pure returns (bytes15)"}},"id":14571,"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":14566,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"33812:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14567,"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":14572,"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":14565,"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":14573,"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":14564,"id":14574,"nodeType":"Return","src":"33795:52:48"}]},"id":14576,"implemented":true,"kind":"function","modifiers":[],"name":"hashify","nameLocation":"33728:7:48","nodeType":"FunctionDefinition","parameters":{"id":14561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14560,"mutability":"mutable","name":"hash","nameLocation":"33746:4:48","nodeType":"VariableDeclaration","scope":14576,"src":"33736:14:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"},"typeName":{"id":14559,"nodeType":"UserDefinedTypeName","pathNode":{"id":14558,"name":"QueryHash","nameLocations":["33736:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13098,"src":"33736:9:48"},"referencedDeclaration":13098,"src":"33736:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"}},"visibility":"internal"}],"src":"33735:16:48"},"returnParameters":{"id":14564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14563,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14576,"src":"33775:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14562,"name":"bytes32","nodeType":"ElementaryTypeName","src":"33775:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"33774:9:48"},"scope":16619,"src":"33719:136:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14622,"nodeType":"Block","src":"33984:278:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"id":14601,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"34101:4:48","typeDescriptions":{"typeIdentifier":"t_contract$_Witnet_$16619","typeString":"library Witnet"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Witnet_$16619","typeString":"library Witnet"}],"id":14600,"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":14599,"name":"address","nodeType":"ElementaryTypeName","src":"34093:7:48","typeDescriptions":{}}},"id":14602,"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":14598,"name":"channel","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13176,"src":"34085:7:48","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bytes4_$","typeString":"function (address) view returns (bytes4)"}},"id":14603,"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":14608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14605,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"34137:5:48","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":14606,"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":14607,"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":14604,"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":14609,"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":14610,"name":"_queryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14579,"src":"34173:8:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}},{"arguments":[{"id":14614,"name":"_radHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14582,"src":"34207:8:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}],"expression":{"expression":{"id":14611,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"34183:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":14612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34190:9:48","memberName":"RadonHash","nodeType":"MemberAccess","referencedDeclaration":13102,"src":"34183:16:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_RadonHash_$13102_$","typeString":"type(Witnet.RadonHash)"}},"id":14613,"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_$13102_$returns$_t_bytes32_$","typeString":"function (Witnet.RadonHash) pure returns (bytes32)"}},"id":14615,"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":14616,"name":"_slaHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14584,"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_$13100","typeString":"Witnet.QueryId"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":14596,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"34056:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14597,"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":14617,"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":14595,"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":14618,"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":14594,"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":14593,"name":"bytes15","nodeType":"ElementaryTypeName","src":"34024:7:48","typeDescriptions":{}}},"id":14619,"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":14590,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"34002:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":14591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34009:9:48","memberName":"QueryHash","nodeType":"MemberAccess","referencedDeclaration":13098,"src":"34002:16:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_QueryHash_$13098_$","typeString":"type(Witnet.QueryHash)"}},"id":14592,"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_$13098_$","typeString":"function (bytes15) pure returns (Witnet.QueryHash)"}},"id":14620,"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_$13098","typeString":"Witnet.QueryHash"}},"functionReturnParameters":14589,"id":14621,"nodeType":"Return","src":"33995:259:48"}]},"id":14623,"implemented":true,"kind":"function","modifiers":[],"name":"hashify","nameLocation":"33872:7:48","nodeType":"FunctionDefinition","parameters":{"id":14585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14579,"mutability":"mutable","name":"_queryId","nameLocation":"33888:8:48","nodeType":"VariableDeclaration","scope":14623,"src":"33880:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"},"typeName":{"id":14578,"nodeType":"UserDefinedTypeName","pathNode":{"id":14577,"name":"QueryId","nameLocations":["33880:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13100,"src":"33880:7:48"},"referencedDeclaration":13100,"src":"33880:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}},"visibility":"internal"},{"constant":false,"id":14582,"mutability":"mutable","name":"_radHash","nameLocation":"33915:8:48","nodeType":"VariableDeclaration","scope":14623,"src":"33898:25:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":14581,"nodeType":"UserDefinedTypeName","pathNode":{"id":14580,"name":"Witnet.RadonHash","nameLocations":["33898:6:48","33905:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"33898:16:48"},"referencedDeclaration":13102,"src":"33898:16:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":14584,"mutability":"mutable","name":"_slaHash","nameLocation":"33933:8:48","nodeType":"VariableDeclaration","scope":14623,"src":"33925:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14583,"name":"bytes32","nodeType":"ElementaryTypeName","src":"33925:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"33879:63:48"},"returnParameters":{"id":14589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14588,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14623,"src":"33966:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"},"typeName":{"id":14587,"nodeType":"UserDefinedTypeName","pathNode":{"id":14586,"name":"Witnet.QueryHash","nameLocations":["33966:6:48","33973:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13098,"src":"33966:16:48"},"referencedDeclaration":13098,"src":"33966:16:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryHash_$13098","typeString":"Witnet.QueryHash"}},"visibility":"internal"}],"src":"33965:18:48"},"scope":16619,"src":"33863:399:48","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":14643,"nodeType":"Block","src":"34345:184:48","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":14634,"name":"querySLA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14626,"src":"34404:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14635,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34413:16:48","memberName":"witResultMaxSize","nodeType":"MemberAccess","referencedDeclaration":13319,"src":"34404:25:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"expression":{"id":14636,"name":"querySLA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14626,"src":"34444:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14637,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34453:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13321,"src":"34444:25:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},{"expression":{"id":14638,"name":"querySLA","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14626,"src":"34484:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14639,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34493:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13323,"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":14632,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"34373:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14633,"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":14640,"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":14631,"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":14641,"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":14630,"id":14642,"nodeType":"Return","src":"34356:165:48"}]},"id":14644,"implemented":true,"kind":"function","modifiers":[],"name":"hashify","nameLocation":"34279:7:48","nodeType":"FunctionDefinition","parameters":{"id":14627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14626,"mutability":"mutable","name":"querySLA","nameLocation":"34303:8:48","nodeType":"VariableDeclaration","scope":14644,"src":"34287:24:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":14625,"nodeType":"UserDefinedTypeName","pathNode":{"id":14624,"name":"QuerySLA","nameLocations":["34287:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"34287:8:48"},"referencedDeclaration":13324,"src":"34287:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"34286:26:48"},"returnParameters":{"id":14630,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14629,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14644,"src":"34336:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":14628,"name":"bytes32","nodeType":"ElementaryTypeName","src":"34336:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"34335:9:48"},"scope":16619,"src":"34270:259:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14668,"nodeType":"Block","src":"34605:170:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14665,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14660,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint16","typeString":"uint16"},"id":14655,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14652,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14647,"src":"34638:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14653,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34643:16:48","memberName":"witResultMaxSize","nodeType":"MemberAccess","referencedDeclaration":13319,"src":"34638:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":14654,"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":14659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14656,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14647,"src":"34685:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14657,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34690:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13321,"src":"34685:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14658,"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":14664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14661,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14647,"src":"34731:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA memory"}},"id":14662,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"34736:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13323,"src":"34731:21:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":14663,"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":14666,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"34623:144:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14651,"id":14667,"nodeType":"Return","src":"34616:151:48"}]},"id":14669,"implemented":true,"kind":"function","modifiers":[],"name":"isValid","nameLocation":"34546:7:48","nodeType":"FunctionDefinition","parameters":{"id":14648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14647,"mutability":"mutable","name":"self","nameLocation":"34570:4:48","nodeType":"VariableDeclaration","scope":14669,"src":"34554:20:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_memory_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":14646,"nodeType":"UserDefinedTypeName","pathNode":{"id":14645,"name":"QuerySLA","nameLocations":["34554:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"34554:8:48"},"referencedDeclaration":13324,"src":"34554:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"34553:22:48"},"returnParameters":{"id":14651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14650,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14669,"src":"34599:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14649,"name":"bool","nodeType":"ElementaryTypeName","src":"34599:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34598:6:48"},"scope":16619,"src":"34537:238:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14685,"nodeType":"Block","src":"34839:50:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14682,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14679,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14672,"src":"34873:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}],"expression":{"id":14677,"name":"QueryId","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13100,"src":"34858:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_QueryId_$13100_$","typeString":"type(Witnet.QueryId)"}},"id":14678,"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_$13100_$returns$_t_uint64_$","typeString":"function (Witnet.QueryId) pure returns (uint64)"}},"id":14680,"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":14681,"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":14683,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"34857:24:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14676,"id":14684,"nodeType":"Return","src":"34850:31:48"}]},"id":14686,"implemented":true,"kind":"function","modifiers":[],"name":"isZero","nameLocation":"34792:6:48","nodeType":"FunctionDefinition","parameters":{"id":14673,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14672,"mutability":"mutable","name":"a","nameLocation":"34807:1:48","nodeType":"VariableDeclaration","scope":14686,"src":"34799:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"},"typeName":{"id":14671,"nodeType":"UserDefinedTypeName","pathNode":{"id":14670,"name":"QueryId","nameLocations":["34799:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13100,"src":"34799:7:48"},"referencedDeclaration":13100,"src":"34799:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_QueryId_$13100","typeString":"Witnet.QueryId"}},"visibility":"internal"}],"src":"34798:11:48"},"returnParameters":{"id":14676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14675,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14686,"src":"34833:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14674,"name":"bool","nodeType":"ElementaryTypeName","src":"34833:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"34832:6:48"},"scope":16619,"src":"34783:106:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14716,"nodeType":"Block","src":"34977:359:48","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":14698,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14689,"src":"35041:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35046:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13321,"src":"35041:21:48","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint16","typeString":"uint16"}],"id":14697,"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":14696,"name":"uint8","nodeType":"ElementaryTypeName","src":"35035:5:48","typeDescriptions":{}}},"id":14700,"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":14701,"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":14702,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14689,"src":"35134:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35139:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13323,"src":"35134:21:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14708,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14704,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14689,"src":"35189:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35194:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13323,"src":"35189:21:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"expression":{"id":14706,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14689,"src":"35213:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35218:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13321,"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":14713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":14709,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14689,"src":"35271:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35276:16:48","memberName":"witUnitaryReward","nodeType":"MemberAccess","referencedDeclaration":13323,"src":"35271:21:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"expression":{"id":14711,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14689,"src":"35295:4:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA calldata"}},"id":14712,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35300:16:48","memberName":"witCommitteeSize","nodeType":"MemberAccess","referencedDeclaration":13321,"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":14695,"name":"RadonSLAv1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13697,"src":"34995:10:48","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_RadonSLAv1_$13697_storage_ptr_$","typeString":"type(struct Witnet.RadonSLAv1 storage pointer)"}},"id":14714,"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_$13697_memory_ptr","typeString":"struct Witnet.RadonSLAv1 memory"}},"functionReturnParameters":14694,"id":14715,"nodeType":"Return","src":"34988:340:48"}]},"id":14717,"implemented":true,"kind":"function","modifiers":[],"name":"toV1","nameLocation":"34906:4:48","nodeType":"FunctionDefinition","parameters":{"id":14690,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14689,"mutability":"mutable","name":"self","nameLocation":"34929:4:48","nodeType":"VariableDeclaration","scope":14717,"src":"34911:22:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_calldata_ptr","typeString":"struct Witnet.QuerySLA"},"typeName":{"id":14688,"nodeType":"UserDefinedTypeName","pathNode":{"id":14687,"name":"QuerySLA","nameLocations":["34911:8:48"],"nodeType":"IdentifierPath","referencedDeclaration":13324,"src":"34911:8:48"},"referencedDeclaration":13324,"src":"34911:8:48","typeDescriptions":{"typeIdentifier":"t_struct$_QuerySLA_$13324_storage_ptr","typeString":"struct Witnet.QuerySLA"}},"visibility":"internal"}],"src":"34910:24:48"},"returnParameters":{"id":14694,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14693,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14717,"src":"34958:17:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_RadonSLAv1_$13697_memory_ptr","typeString":"struct Witnet.RadonSLAv1"},"typeName":{"id":14692,"nodeType":"UserDefinedTypeName","pathNode":{"id":14691,"name":"RadonSLAv1","nameLocations":["34958:10:48"],"nodeType":"IdentifierPath","referencedDeclaration":13697,"src":"34958:10:48"},"referencedDeclaration":13697,"src":"34958:10:48","typeDescriptions":{"typeIdentifier":"t_struct$_RadonSLAv1_$13697_storage_ptr","typeString":"struct Witnet.RadonSLAv1"}},"visibility":"internal"}],"src":"34957:19:48"},"scope":16619,"src":"34897:439:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14739,"nodeType":"Block","src":"35657:68:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":14737,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14731,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14721,"src":"35692:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}],"expression":{"id":14729,"name":"RadonHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13102,"src":"35675:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_RadonHash_$13102_$","typeString":"type(Witnet.RadonHash)"}},"id":14730,"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_$13102_$returns$_t_bytes32_$","typeString":"function (Witnet.RadonHash) pure returns (bytes32)"}},"id":14732,"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":14735,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14724,"src":"35715:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}],"expression":{"id":14733,"name":"RadonHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13102,"src":"35698:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_RadonHash_$13102_$","typeString":"type(Witnet.RadonHash)"}},"id":14734,"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_$13102_$returns$_t_bytes32_$","typeString":"function (Witnet.RadonHash) pure returns (bytes32)"}},"id":14736,"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":14728,"id":14738,"nodeType":"Return","src":"35668:49:48"}]},"documentation":{"id":14718,"nodeType":"StructuredDocumentation","src":"35346:238:48","text":"===============================================================================================================\n --- RadonHash helper methods ----------------------------------------------------------------------------------"},"id":14740,"implemented":true,"kind":"function","modifiers":[],"name":"eq","nameLocation":"35599:2:48","nodeType":"FunctionDefinition","parameters":{"id":14725,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14721,"mutability":"mutable","name":"a","nameLocation":"35612:1:48","nodeType":"VariableDeclaration","scope":14740,"src":"35602:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":14720,"nodeType":"UserDefinedTypeName","pathNode":{"id":14719,"name":"RadonHash","nameLocations":["35602:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"35602:9:48"},"referencedDeclaration":13102,"src":"35602:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"},{"constant":false,"id":14724,"mutability":"mutable","name":"b","nameLocation":"35625:1:48","nodeType":"VariableDeclaration","scope":14740,"src":"35615:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":14723,"nodeType":"UserDefinedTypeName","pathNode":{"id":14722,"name":"RadonHash","nameLocations":["35615:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"35615:9:48"},"referencedDeclaration":13102,"src":"35615:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"35601:26:48"},"returnParameters":{"id":14728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14727,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14740,"src":"35651:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14726,"name":"bool","nodeType":"ElementaryTypeName","src":"35651:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"35650:6:48"},"scope":16619,"src":"35590:135:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14758,"nodeType":"Block","src":"35795:59:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":14756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14750,"name":"h","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14743,"src":"35830:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}],"expression":{"id":14748,"name":"RadonHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13102,"src":"35813:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_RadonHash_$13102_$","typeString":"type(Witnet.RadonHash)"}},"id":14749,"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_$13102_$returns$_t_bytes32_$","typeString":"function (Witnet.RadonHash) pure returns (bytes32)"}},"id":14751,"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":14754,"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":14753,"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":14752,"name":"bytes32","nodeType":"ElementaryTypeName","src":"35836:7:48","typeDescriptions":{}}},"id":14755,"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":14747,"id":14757,"nodeType":"Return","src":"35806:40:48"}]},"id":14759,"implemented":true,"kind":"function","modifiers":[],"name":"isZero","nameLocation":"35746:6:48","nodeType":"FunctionDefinition","parameters":{"id":14744,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14743,"mutability":"mutable","name":"h","nameLocation":"35763:1:48","nodeType":"VariableDeclaration","scope":14759,"src":"35753:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":14742,"nodeType":"UserDefinedTypeName","pathNode":{"id":14741,"name":"RadonHash","nameLocations":["35753:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"35753:9:48"},"referencedDeclaration":13102,"src":"35753:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"35752:13:48"},"returnParameters":{"id":14747,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14746,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14759,"src":"35789:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14745,"name":"bool","nodeType":"ElementaryTypeName","src":"35789:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"35788:6:48"},"scope":16619,"src":"35737:117:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14779,"nodeType":"Block","src":"36179:120:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":14771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14768,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14763,"src":"36212:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"id":14769,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"36220:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14770,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36233:8:48","memberName":"NoErrors","nodeType":"MemberAccess","referencedDeclaration":13325,"src":"36220:21:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"src":"36212:29:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"id":14775,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"36262:18:48","subExpression":{"arguments":[{"id":14773,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14763,"src":"36275:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}],"id":14772,"name":"keepWaiting","nodeType":"Identifier","overloadedDeclarations":[14100,14837],"referencedDeclaration":14837,"src":"36263:11:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13581_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14774,"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":14777,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"36197:94:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14767,"id":14778,"nodeType":"Return","src":"36190:101:48"}]},"documentation":{"id":14760,"nodeType":"StructuredDocumentation","src":"35868:238:48","text":"===============================================================================================================\n --- ResultStatus helper methods -------------------------------------------------------------------------------"},"id":14780,"implemented":true,"kind":"function","modifiers":[],"name":"hasErrors","nameLocation":"36121:9:48","nodeType":"FunctionDefinition","parameters":{"id":14764,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14763,"mutability":"mutable","name":"self","nameLocation":"36144:4:48","nodeType":"VariableDeclaration","scope":14780,"src":"36131:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":14762,"nodeType":"UserDefinedTypeName","pathNode":{"id":14761,"name":"ResultStatus","nameLocations":["36131:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13581,"src":"36131:12:48"},"referencedDeclaration":13581,"src":"36131:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"36130:19:48"},"returnParameters":{"id":14767,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14766,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14780,"src":"36173:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14765,"name":"bool","nodeType":"ElementaryTypeName","src":"36173:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"36172:6:48"},"scope":16619,"src":"36112:187:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14794,"nodeType":"Block","src":"36381:70:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":14791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14788,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14783,"src":"36400:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14789,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"36408:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36421:21:48","memberName":"CircumstantialFailure","nodeType":"MemberAccess","referencedDeclaration":13409,"src":"36408:34:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"src":"36400:42:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":14792,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"36399:44:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14787,"id":14793,"nodeType":"Return","src":"36392:51:48"}]},"id":14795,"implemented":true,"kind":"function","modifiers":[],"name":"isCircumstantial","nameLocation":"36316:16:48","nodeType":"FunctionDefinition","parameters":{"id":14784,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14783,"mutability":"mutable","name":"self","nameLocation":"36346:4:48","nodeType":"VariableDeclaration","scope":14795,"src":"36333:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":14782,"nodeType":"UserDefinedTypeName","pathNode":{"id":14781,"name":"ResultStatus","nameLocations":["36333:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13581,"src":"36333:12:48"},"referencedDeclaration":13581,"src":"36333:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"36332:19:48"},"returnParameters":{"id":14787,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14786,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14795,"src":"36375:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14785,"name":"bool","nodeType":"ElementaryTypeName","src":"36375:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"36374:6:48"},"scope":16619,"src":"36307:144:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14816,"nodeType":"Block","src":"36528:157: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":14809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14804,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14798,"src":"36577:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}],"id":14803,"name":"lackOfConsensus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14862,"src":"36561:15:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13581_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14805,"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":14807,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14798,"src":"36620:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}],"id":14806,"name":"isCircumstantial","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14795,"src":"36603:16:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13581_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14808,"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":14811,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14798,"src":"36661:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}],"id":14810,"name":"poorIncentives","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14892,"src":"36646:14:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_enum$_ResultStatus_$13581_$returns$_t_bool_$","typeString":"function (enum Witnet.ResultStatus) pure returns (bool)"}},"id":14812,"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":14814,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"36546:131:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14802,"id":14815,"nodeType":"Return","src":"36539:138:48"}]},"id":14817,"implemented":true,"kind":"function","modifiers":[],"name":"isRetriable","nameLocation":"36468:11:48","nodeType":"FunctionDefinition","parameters":{"id":14799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14798,"mutability":"mutable","name":"self","nameLocation":"36493:4:48","nodeType":"VariableDeclaration","scope":14817,"src":"36480:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":14797,"nodeType":"UserDefinedTypeName","pathNode":{"id":14796,"name":"ResultStatus","nameLocations":["36480:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13581,"src":"36480:12:48"},"referencedDeclaration":13581,"src":"36480:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"36479:19:48"},"returnParameters":{"id":14802,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14801,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14817,"src":"36522:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14800,"name":"bool","nodeType":"ElementaryTypeName","src":"36522:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"36521:6:48"},"scope":16619,"src":"36459:226:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14836,"nodeType":"Block","src":"36762:155:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14833,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":14828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14825,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14820,"src":"36795:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14826,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"36803:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14827,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36816:19:48","memberName":"BoardAwaitingResult","nodeType":"MemberAccess","referencedDeclaration":13565,"src":"36803:32:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"src":"36795:40:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":14832,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14829,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14820,"src":"36856:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14830,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"36864:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14831,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"36877:21:48","memberName":"BoardFinalizingResult","nodeType":"MemberAccess","referencedDeclaration":13566,"src":"36864:34:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","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":14834,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"36780:129:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14824,"id":14835,"nodeType":"Return","src":"36773:136:48"}]},"id":14837,"implemented":true,"kind":"function","modifiers":[],"name":"keepWaiting","nameLocation":"36702:11:48","nodeType":"FunctionDefinition","parameters":{"id":14821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14820,"mutability":"mutable","name":"self","nameLocation":"36727:4:48","nodeType":"VariableDeclaration","scope":14837,"src":"36714:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":14819,"nodeType":"UserDefinedTypeName","pathNode":{"id":14818,"name":"ResultStatus","nameLocations":["36714:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13581,"src":"36714:12:48"},"referencedDeclaration":13581,"src":"36714:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"36713:19:48"},"returnParameters":{"id":14824,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14823,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14837,"src":"36756:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14822,"name":"bool","nodeType":"ElementaryTypeName","src":"36756:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"36755:6:48"},"scope":16619,"src":"36693:224:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14861,"nodeType":"Block","src":"36998:215:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":14848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14845,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14840,"src":"37031:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14846,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"37039:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14847,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37052:19:48","memberName":"InsufficientCommits","nodeType":"MemberAccess","referencedDeclaration":13407,"src":"37039:32:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"src":"37031:40:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":14852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14849,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14840,"src":"37092:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14850,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"37100:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14851,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37113:20:48","memberName":"InsufficientMajority","nodeType":"MemberAccess","referencedDeclaration":13406,"src":"37100:33:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","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_$13581","typeString":"enum Witnet.ResultStatus"},"id":14857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14854,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14840,"src":"37154:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14855,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"37162:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14856,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37175:19:48","memberName":"InsufficientReveals","nodeType":"MemberAccess","referencedDeclaration":13405,"src":"37162:32:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","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":14859,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"37016:189:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14844,"id":14860,"nodeType":"Return","src":"37009:196:48"}]},"id":14862,"implemented":true,"kind":"function","modifiers":[],"name":"lackOfConsensus","nameLocation":"36934:15:48","nodeType":"FunctionDefinition","parameters":{"id":14841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14840,"mutability":"mutable","name":"self","nameLocation":"36963:4:48","nodeType":"VariableDeclaration","scope":14862,"src":"36950:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":14839,"nodeType":"UserDefinedTypeName","pathNode":{"id":14838,"name":"ResultStatus","nameLocations":["36950:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13581,"src":"36950:12:48"},"referencedDeclaration":13581,"src":"36950:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"36949:19:48"},"returnParameters":{"id":14844,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14843,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14862,"src":"36992:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14842,"name":"bool","nodeType":"ElementaryTypeName","src":"36992:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"36991:6:48"},"scope":16619,"src":"36925:288:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14891,"nodeType":"Block","src":"37293:284:48","statements":[{"expression":{"components":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14888,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14883,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":14878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":14873,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14870,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14865,"src":"37326:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14871,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"37334:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14872,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37347:20:48","memberName":"OversizedTallyResult","nodeType":"MemberAccess","referencedDeclaration":13420,"src":"37334:33:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"src":"37326:41:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"id":14877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14874,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14865,"src":"37388:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14875,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"37396:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14876,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37409:19:48","memberName":"InsufficientCommits","nodeType":"MemberAccess","referencedDeclaration":13407,"src":"37396:32:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","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_$13581","typeString":"enum Witnet.ResultStatus"},"id":14882,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14879,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14865,"src":"37449:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14880,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"37457:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14881,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37470:20:48","memberName":"BridgePoorIncentives","nodeType":"MemberAccess","referencedDeclaration":13550,"src":"37457:33:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","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_$13581","typeString":"enum Witnet.ResultStatus"},"id":14887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":14884,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14865,"src":"37511:4:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":14885,"name":"ResultStatus","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13581,"src":"37519:12:48","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_ResultStatus_$13581_$","typeString":"type(enum Witnet.ResultStatus)"}},"id":14886,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"37532:26:48","memberName":"BridgeOversizedTallyResult","nodeType":"MemberAccess","referencedDeclaration":13551,"src":"37519:39:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","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":14889,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"37311:258:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":14869,"id":14890,"nodeType":"Return","src":"37304:265:48"}]},"id":14892,"implemented":true,"kind":"function","modifiers":[],"name":"poorIncentives","nameLocation":"37230:14:48","nodeType":"FunctionDefinition","parameters":{"id":14866,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14865,"mutability":"mutable","name":"self","nameLocation":"37258:4:48","nodeType":"VariableDeclaration","scope":14892,"src":"37245:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"},"typeName":{"id":14864,"nodeType":"UserDefinedTypeName","pathNode":{"id":14863,"name":"ResultStatus","nameLocations":["37245:12:48"],"nodeType":"IdentifierPath","referencedDeclaration":13581,"src":"37245:12:48"},"referencedDeclaration":13581,"src":"37245:12:48","typeDescriptions":{"typeIdentifier":"t_enum$_ResultStatus_$13581","typeString":"enum Witnet.ResultStatus"}},"visibility":"internal"}],"src":"37244:19:48"},"returnParameters":{"id":14869,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14868,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14892,"src":"37287:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14867,"name":"bool","nodeType":"ElementaryTypeName","src":"37287:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"37286:6:48"},"scope":16619,"src":"37221:356:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14914,"nodeType":"Block","src":"37898:67:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14906,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14896,"src":"37933:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":14904,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"37916:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":14905,"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_$13106_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":14907,"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":14910,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14899,"src":"37955:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":14908,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"37938:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":14909,"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_$13106_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":14911,"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":14903,"id":14913,"nodeType":"Return","src":"37909:48:48"}]},"documentation":{"id":14893,"nodeType":"StructuredDocumentation","src":"37587:238:48","text":"===============================================================================================================\n --- Timestamp helper methods ----------------------------------------------------------------------------------"},"id":14915,"implemented":true,"kind":"function","modifiers":[],"name":"gt","nameLocation":"37840:2:48","nodeType":"FunctionDefinition","parameters":{"id":14900,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14896,"mutability":"mutable","name":"a","nameLocation":"37853:1:48","nodeType":"VariableDeclaration","scope":14915,"src":"37843:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":14895,"nodeType":"UserDefinedTypeName","pathNode":{"id":14894,"name":"Timestamp","nameLocations":["37843:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"37843:9:48"},"referencedDeclaration":13106,"src":"37843:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":14899,"mutability":"mutable","name":"b","nameLocation":"37866:1:48","nodeType":"VariableDeclaration","scope":14915,"src":"37856:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":14898,"nodeType":"UserDefinedTypeName","pathNode":{"id":14897,"name":"Timestamp","nameLocations":["37856:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"37856:9:48"},"referencedDeclaration":13106,"src":"37856:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"37842:26:48"},"returnParameters":{"id":14903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14902,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14915,"src":"37892:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14901,"name":"bool","nodeType":"ElementaryTypeName","src":"37892:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"37891:6:48"},"scope":16619,"src":"37831:134:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14936,"nodeType":"Block","src":"38041:68:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14934,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14928,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14918,"src":"38076:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":14926,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"38059:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":14927,"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_$13106_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":14929,"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":14932,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14921,"src":"38099:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":14930,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"38082:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":14931,"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_$13106_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":14933,"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":14925,"id":14935,"nodeType":"Return","src":"38052:49:48"}]},"id":14937,"implemented":true,"kind":"function","modifiers":[],"name":"egt","nameLocation":"37982:3:48","nodeType":"FunctionDefinition","parameters":{"id":14922,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14918,"mutability":"mutable","name":"a","nameLocation":"37996:1:48","nodeType":"VariableDeclaration","scope":14937,"src":"37986:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":14917,"nodeType":"UserDefinedTypeName","pathNode":{"id":14916,"name":"Timestamp","nameLocations":["37986:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"37986:9:48"},"referencedDeclaration":13106,"src":"37986:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":14921,"mutability":"mutable","name":"b","nameLocation":"38009:1:48","nodeType":"VariableDeclaration","scope":14937,"src":"37999:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":14920,"nodeType":"UserDefinedTypeName","pathNode":{"id":14919,"name":"Timestamp","nameLocations":["37999:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"37999:9:48"},"referencedDeclaration":13106,"src":"37999:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"37985:26:48"},"returnParameters":{"id":14925,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14924,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14937,"src":"38035:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14923,"name":"bool","nodeType":"ElementaryTypeName","src":"38035:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"38034:6:48"},"scope":16619,"src":"37973:136:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14958,"nodeType":"Block","src":"38185:68:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14956,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14950,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14940,"src":"38220:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":14948,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"38203:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":14949,"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_$13106_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":14951,"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":14954,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14943,"src":"38243:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":14952,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"38226:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":14953,"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_$13106_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":14955,"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":14947,"id":14957,"nodeType":"Return","src":"38196:49:48"}]},"id":14959,"implemented":true,"kind":"function","modifiers":[],"name":"elt","nameLocation":"38126:3:48","nodeType":"FunctionDefinition","parameters":{"id":14944,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14940,"mutability":"mutable","name":"a","nameLocation":"38140:1:48","nodeType":"VariableDeclaration","scope":14959,"src":"38130:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":14939,"nodeType":"UserDefinedTypeName","pathNode":{"id":14938,"name":"Timestamp","nameLocations":["38130:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"38130:9:48"},"referencedDeclaration":13106,"src":"38130:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"},{"constant":false,"id":14943,"mutability":"mutable","name":"b","nameLocation":"38153:1:48","nodeType":"VariableDeclaration","scope":14959,"src":"38143:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":14942,"nodeType":"UserDefinedTypeName","pathNode":{"id":14941,"name":"Timestamp","nameLocations":["38143:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"38143:9:48"},"referencedDeclaration":13106,"src":"38143:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"38129:26:48"},"returnParameters":{"id":14947,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14946,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14959,"src":"38179:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14945,"name":"bool","nodeType":"ElementaryTypeName","src":"38179:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"38178:6:48"},"scope":16619,"src":"38117:136:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":14974,"nodeType":"Block","src":"38319:50:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":14972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":14969,"name":"t","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14962,"src":"38354:1:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":14967,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"38337:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":14968,"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_$13106_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":14970,"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":14971,"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":14966,"id":14973,"nodeType":"Return","src":"38330:31:48"}]},"id":14975,"implemented":true,"kind":"function","modifiers":[],"name":"isZero","nameLocation":"38270:6:48","nodeType":"FunctionDefinition","parameters":{"id":14963,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14962,"mutability":"mutable","name":"t","nameLocation":"38287:1:48","nodeType":"VariableDeclaration","scope":14975,"src":"38277:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":14961,"nodeType":"UserDefinedTypeName","pathNode":{"id":14960,"name":"Timestamp","nameLocations":["38277:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"38277:9:48"},"referencedDeclaration":13106,"src":"38277:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"38276:13:48"},"returnParameters":{"id":14966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14965,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":14975,"src":"38313:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":14964,"name":"bool","nodeType":"ElementaryTypeName","src":"38313:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"38312:6:48"},"scope":16619,"src":"38261:108:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15003,"nodeType":"Block","src":"38713:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":14992,"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":14991,"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":14990,"name":"uint256","nodeType":"ElementaryTypeName","src":"38753:7:48","typeDescriptions":{}}},"id":14993,"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":14994,"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":14995,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":14980,"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":14988,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"38742:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14989,"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":14996,"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":14998,"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":14997,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38780:7:48","typeDescriptions":{}}},"id":14999,"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":15000,"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":14986,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"38731:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":14987,"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":15001,"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":14985,"id":15002,"nodeType":"Return","src":"38724:67:48"}]},"documentation":{"id":14976,"nodeType":"StructuredDocumentation","src":"38379:238:48","text":"===============================================================================================================\n --- 'bytes*' helper methods -----------------------------------------------------------------------------------"},"id":15004,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"38632:12:48","nodeType":"FunctionDefinition","parameters":{"id":14981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14980,"mutability":"mutable","name":"_values","nameLocation":"38663:7:48","nodeType":"VariableDeclaration","scope":15004,"src":"38645:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$1_memory_ptr","typeString":"bytes32[1]"},"typeName":{"baseType":{"id":14977,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38645:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":14979,"length":{"hexValue":"31","id":14978,"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":14985,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14984,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15004,"src":"38695:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":14982,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38695:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":14983,"nodeType":"ArrayTypeName","src":"38695:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"38694:18:48"},"scope":16619,"src":"38623:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15031,"nodeType":"Block","src":"38897:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15020,"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":15019,"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":15018,"name":"uint256","nodeType":"ElementaryTypeName","src":"38937:7:48","typeDescriptions":{}}},"id":15021,"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":15022,"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":15023,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15008,"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":15016,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"38926:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15017,"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":15024,"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":15026,"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":15025,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38964:7:48","typeDescriptions":{}}},"id":15027,"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":15028,"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":15014,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"38915:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15015,"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":15029,"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":15013,"id":15030,"nodeType":"Return","src":"38908:67:48"}]},"id":15032,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"38816:12:48","nodeType":"FunctionDefinition","parameters":{"id":15009,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15008,"mutability":"mutable","name":"_values","nameLocation":"38847:7:48","nodeType":"VariableDeclaration","scope":15032,"src":"38829:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$2_memory_ptr","typeString":"bytes32[2]"},"typeName":{"baseType":{"id":15005,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38829:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15007,"length":{"hexValue":"32","id":15006,"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":15013,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15012,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15032,"src":"38879:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15010,"name":"bytes32","nodeType":"ElementaryTypeName","src":"38879:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15011,"nodeType":"ArrayTypeName","src":"38879:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"38878:18:48"},"scope":16619,"src":"38807:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15059,"nodeType":"Block","src":"39081:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15048,"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":15047,"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":15046,"name":"uint256","nodeType":"ElementaryTypeName","src":"39121:7:48","typeDescriptions":{}}},"id":15049,"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":15050,"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":15051,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15036,"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":15044,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39110:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15045,"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":15052,"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":15054,"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":15053,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39148:7:48","typeDescriptions":{}}},"id":15055,"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":15056,"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":15042,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39099:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15043,"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":15057,"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":15041,"id":15058,"nodeType":"Return","src":"39092:67:48"}]},"id":15060,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39000:12:48","nodeType":"FunctionDefinition","parameters":{"id":15037,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15036,"mutability":"mutable","name":"_values","nameLocation":"39031:7:48","nodeType":"VariableDeclaration","scope":15060,"src":"39013:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$3_memory_ptr","typeString":"bytes32[3]"},"typeName":{"baseType":{"id":15033,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39013:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15035,"length":{"hexValue":"33","id":15034,"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":15041,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15040,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15060,"src":"39063:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15038,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39063:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15039,"nodeType":"ArrayTypeName","src":"39063:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39062:18:48"},"scope":16619,"src":"38991:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15087,"nodeType":"Block","src":"39265:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15076,"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":15075,"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":15074,"name":"uint256","nodeType":"ElementaryTypeName","src":"39305:7:48","typeDescriptions":{}}},"id":15077,"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":15078,"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":15079,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15064,"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":15072,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39294:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15073,"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":15080,"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":15082,"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":15081,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39332:7:48","typeDescriptions":{}}},"id":15083,"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":15084,"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":15070,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39283:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15071,"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":15085,"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":15069,"id":15086,"nodeType":"Return","src":"39276:67:48"}]},"id":15088,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39184:12:48","nodeType":"FunctionDefinition","parameters":{"id":15065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15064,"mutability":"mutable","name":"_values","nameLocation":"39215:7:48","nodeType":"VariableDeclaration","scope":15088,"src":"39197:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$4_memory_ptr","typeString":"bytes32[4]"},"typeName":{"baseType":{"id":15061,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39197:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15063,"length":{"hexValue":"34","id":15062,"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":15069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15068,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15088,"src":"39247:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15066,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39247:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15067,"nodeType":"ArrayTypeName","src":"39247:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39246:18:48"},"scope":16619,"src":"39175:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15115,"nodeType":"Block","src":"39449:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15104,"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":15103,"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":15102,"name":"uint256","nodeType":"ElementaryTypeName","src":"39489:7:48","typeDescriptions":{}}},"id":15105,"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":15106,"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":15107,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15092,"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":15100,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39478:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15101,"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":15108,"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":15110,"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":15109,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39516:7:48","typeDescriptions":{}}},"id":15111,"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":15112,"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":15098,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39467:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15099,"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":15113,"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":15097,"id":15114,"nodeType":"Return","src":"39460:67:48"}]},"id":15116,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39368:12:48","nodeType":"FunctionDefinition","parameters":{"id":15093,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15092,"mutability":"mutable","name":"_values","nameLocation":"39399:7:48","nodeType":"VariableDeclaration","scope":15116,"src":"39381:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$5_memory_ptr","typeString":"bytes32[5]"},"typeName":{"baseType":{"id":15089,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39381:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15091,"length":{"hexValue":"35","id":15090,"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":15097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15096,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15116,"src":"39431:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15094,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39431:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15095,"nodeType":"ArrayTypeName","src":"39431:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39430:18:48"},"scope":16619,"src":"39359:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15143,"nodeType":"Block","src":"39633:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15132,"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":15131,"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":15130,"name":"uint256","nodeType":"ElementaryTypeName","src":"39673:7:48","typeDescriptions":{}}},"id":15133,"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":15134,"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":15135,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15120,"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":15128,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39662:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15129,"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":15136,"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":15138,"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":15137,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39700:7:48","typeDescriptions":{}}},"id":15139,"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":15140,"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":15126,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39651:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15127,"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":15141,"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":15125,"id":15142,"nodeType":"Return","src":"39644:67:48"}]},"id":15144,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39552:12:48","nodeType":"FunctionDefinition","parameters":{"id":15121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15120,"mutability":"mutable","name":"_values","nameLocation":"39583:7:48","nodeType":"VariableDeclaration","scope":15144,"src":"39565:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$6_memory_ptr","typeString":"bytes32[6]"},"typeName":{"baseType":{"id":15117,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39565:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15119,"length":{"hexValue":"36","id":15118,"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":15125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15124,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15144,"src":"39615:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15122,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39615:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15123,"nodeType":"ArrayTypeName","src":"39615:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39614:18:48"},"scope":16619,"src":"39543:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15171,"nodeType":"Block","src":"39817:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15160,"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":15159,"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":15158,"name":"uint256","nodeType":"ElementaryTypeName","src":"39857:7:48","typeDescriptions":{}}},"id":15161,"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":15162,"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":15163,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15148,"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":15156,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39846:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15157,"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":15164,"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":15166,"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":15165,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39884:7:48","typeDescriptions":{}}},"id":15167,"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":15168,"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":15154,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"39835:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15155,"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":15169,"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":15153,"id":15170,"nodeType":"Return","src":"39828:67:48"}]},"id":15172,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39736:12:48","nodeType":"FunctionDefinition","parameters":{"id":15149,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15148,"mutability":"mutable","name":"_values","nameLocation":"39767:7:48","nodeType":"VariableDeclaration","scope":15172,"src":"39749:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$7_memory_ptr","typeString":"bytes32[7]"},"typeName":{"baseType":{"id":15145,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39749:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15147,"length":{"hexValue":"37","id":15146,"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":15153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15152,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15172,"src":"39799:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15150,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39799:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15151,"nodeType":"ArrayTypeName","src":"39799:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39798:18:48"},"scope":16619,"src":"39727:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15199,"nodeType":"Block","src":"40001:86:48","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"3332","id":15188,"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":15187,"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":15186,"name":"uint256","nodeType":"ElementaryTypeName","src":"40041:7:48","typeDescriptions":{}}},"id":15189,"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":15190,"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":15191,"name":"_values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15176,"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":15184,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"40030:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15185,"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":15192,"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":15194,"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":15193,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40068:7:48","typeDescriptions":{}}},"id":15195,"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":15196,"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":15182,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"40019:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15183,"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":15197,"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":15181,"id":15198,"nodeType":"Return","src":"40012:67:48"}]},"id":15200,"implemented":true,"kind":"function","modifiers":[],"name":"intoMemArray","nameLocation":"39920:12:48","nodeType":"FunctionDefinition","parameters":{"id":15177,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15176,"mutability":"mutable","name":"_values","nameLocation":"39951:7:48","nodeType":"VariableDeclaration","scope":15200,"src":"39933:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$8_memory_ptr","typeString":"bytes32[8]"},"typeName":{"baseType":{"id":15173,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39933:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15175,"length":{"hexValue":"38","id":15174,"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":15181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15180,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15200,"src":"39983:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_memory_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15178,"name":"bytes32","nodeType":"ElementaryTypeName","src":"39983:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15179,"nodeType":"ArrayTypeName","src":"39983:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"}],"src":"39982:18:48"},"scope":16619,"src":"39911:176:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15223,"nodeType":"Block","src":"40173:109:48","statements":[{"expression":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":15211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15209,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15202,"src":"40192:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":15210,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15204,"src":"40196:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"40192:5:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"arguments":[{"id":15217,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15204,"src":"40258:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15218,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15202,"src":"40261:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15216,"name":"_merkleHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16567,"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":15219,"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":15220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"40192:71:48","trueExpression":{"arguments":[{"id":15213,"name":"a","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15202,"src":"40225:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15214,"name":"b","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15204,"src":"40228:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15212,"name":"_merkleHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16567,"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":15215,"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":15221,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"40191:83:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"functionReturnParameters":15208,"id":15222,"nodeType":"Return","src":"40184:90:48"}]},"id":15224,"implemented":true,"kind":"function","modifiers":[],"name":"merkleHash","nameLocation":"40108:10:48","nodeType":"FunctionDefinition","parameters":{"id":15205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15202,"mutability":"mutable","name":"a","nameLocation":"40127:1:48","nodeType":"VariableDeclaration","scope":15224,"src":"40119:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15201,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40119:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15204,"mutability":"mutable","name":"b","nameLocation":"40138:1:48","nodeType":"VariableDeclaration","scope":15224,"src":"40130:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15203,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40130:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"40118:22:48"},"returnParameters":{"id":15208,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15207,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15224,"src":"40164:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15206,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40164:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"40163:9:48"},"scope":16619,"src":"40099:183:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15260,"nodeType":"Block","src":"40388:152:48","statements":[{"expression":{"id":15236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15234,"name":"_root","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15232,"src":"40399:5:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":15235,"name":"leaf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15229,"src":"40407:4:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"src":"40399:12:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15237,"nodeType":"ExpressionStatement","src":"40399:12:48"},{"body":{"id":15258,"nodeType":"Block","src":"40469:64:48","statements":[{"expression":{"id":15256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15249,"name":"_root","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15232,"src":"40484:5:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15251,"name":"_root","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15232,"src":"40503:5:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"baseExpression":{"id":15252,"name":"proof","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15227,"src":"40510:5:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[] calldata"}},"id":15254,"indexExpression":{"id":15253,"name":"_ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15239,"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":15250,"name":"merkleHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15224,"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":15255,"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":15257,"nodeType":"ExpressionStatement","src":"40484:37:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15242,"name":"_ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15239,"src":"40441:3:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15243,"name":"proof","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15227,"src":"40447:5:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[] calldata"}},"id":15244,"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":15259,"initializationExpression":{"assignments":[15239],"declarations":[{"constant":false,"id":15239,"mutability":"mutable","name":"_ix","nameLocation":"40432:3:48","nodeType":"VariableDeclaration","scope":15259,"src":"40427:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15238,"name":"uint","nodeType":"ElementaryTypeName","src":"40427:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15241,"initialValue":{"hexValue":"30","id":15240,"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":15247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"40461:6:48","subExpression":{"id":15246,"name":"_ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15239,"src":"40461:3:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15248,"nodeType":"ExpressionStatement","src":"40461:6:48"},"nodeType":"ForStatement","src":"40422:111:48"}]},"id":15261,"implemented":true,"kind":"function","modifiers":[],"name":"merkleRoot","nameLocation":"40299:10:48","nodeType":"FunctionDefinition","parameters":{"id":15230,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15227,"mutability":"mutable","name":"proof","nameLocation":"40329:5:48","nodeType":"VariableDeclaration","scope":15261,"src":"40310:24:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_calldata_ptr","typeString":"bytes32[]"},"typeName":{"baseType":{"id":15225,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40310:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15226,"nodeType":"ArrayTypeName","src":"40310:9:48","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes32_$dyn_storage_ptr","typeString":"bytes32[]"}},"visibility":"internal"},{"constant":false,"id":15229,"mutability":"mutable","name":"leaf","nameLocation":"40344:4:48","nodeType":"VariableDeclaration","scope":15261,"src":"40336:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15228,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40336:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"40309:40:48"},"returnParameters":{"id":15233,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15232,"mutability":"mutable","name":"_root","nameLocation":"40381:5:48","nodeType":"VariableDeclaration","scope":15261,"src":"40373:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15231,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40373:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"40372:15:48"},"scope":16619,"src":"40290:250:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15277,"nodeType":"Block","src":"40631:68:48","statements":[{"expression":{"arguments":[{"arguments":[{"id":15273,"name":"bytecode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15263,"src":"40681:8:48","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}],"id":15272,"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":15274,"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":15269,"name":"Witnet","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16619,"src":"40649:6:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Witnet_$16619_$","typeString":"type(library Witnet)"}},"id":15270,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"40656:9:48","memberName":"RadonHash","nodeType":"MemberAccess","referencedDeclaration":13102,"src":"40649:16:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_RadonHash_$13102_$","typeString":"type(Witnet.RadonHash)"}},"id":15271,"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_$13102_$","typeString":"function (bytes32) pure returns (Witnet.RadonHash)"}},"id":15275,"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_$13102","typeString":"Witnet.RadonHash"}},"functionReturnParameters":15268,"id":15276,"nodeType":"Return","src":"40642:49:48"}]},"id":15278,"implemented":true,"kind":"function","modifiers":[],"name":"radHash","nameLocation":"40557:7:48","nodeType":"FunctionDefinition","parameters":{"id":15264,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15263,"mutability":"mutable","name":"bytecode","nameLocation":"40580:8:48","nodeType":"VariableDeclaration","scope":15278,"src":"40565:23:48","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":15262,"name":"bytes","nodeType":"ElementaryTypeName","src":"40565:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"40564:25:48"},"returnParameters":{"id":15268,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15267,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15278,"src":"40613:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"},"typeName":{"id":15266,"nodeType":"UserDefinedTypeName","pathNode":{"id":15265,"name":"Witnet.RadonHash","nameLocations":["40613:6:48","40620:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13102,"src":"40613:16:48"},"referencedDeclaration":13102,"src":"40613:16:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_RadonHash_$13102","typeString":"Witnet.RadonHash"}},"visibility":"internal"}],"src":"40612:18:48"},"scope":16619,"src":"40548:151:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15343,"nodeType":"Block","src":"40826:588:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15287,"name":"signature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15280,"src":"40841:9:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15288,"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":15289,"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":15298,"nodeType":"IfStatement","src":"40837:74:48","trueBody":{"id":15297,"nodeType":"Block","src":"40865:46:48","statements":[{"expression":{"components":[{"arguments":[{"hexValue":"30","id":15293,"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":15292,"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":15291,"name":"address","nodeType":"ElementaryTypeName","src":"40888:7:48","typeDescriptions":{}}},"id":15294,"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":15295,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"40887:12:48","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":15286,"id":15296,"nodeType":"Return","src":"40880:19:48"}]}},{"assignments":[15300],"declarations":[{"constant":false,"id":15300,"mutability":"mutable","name":"r","nameLocation":"40929:1:48","nodeType":"VariableDeclaration","scope":15343,"src":"40921:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15299,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40921:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":15301,"nodeType":"VariableDeclarationStatement","src":"40921:9:48"},{"assignments":[15303],"declarations":[{"constant":false,"id":15303,"mutability":"mutable","name":"s","nameLocation":"40949:1:48","nodeType":"VariableDeclaration","scope":15343,"src":"40941:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15302,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40941:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":15304,"nodeType":"VariableDeclarationStatement","src":"40941:9:48"},{"assignments":[15306],"declarations":[{"constant":false,"id":15306,"mutability":"mutable","name":"v","nameLocation":"40967:1:48","nodeType":"VariableDeclaration","scope":15343,"src":"40961:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15305,"name":"uint8","nodeType":"ElementaryTypeName","src":"40961:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":15307,"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":"shanghai","externalReferences":[{"declaration":15300,"isOffset":false,"isSlot":false,"src":"41003:1:48","valueSize":1},{"declaration":15303,"isOffset":false,"isSlot":false,"src":"41049:1:48","valueSize":1},{"declaration":15280,"isOffset":false,"isSlot":false,"src":"41018:9:48","valueSize":1},{"declaration":15280,"isOffset":false,"isSlot":false,"src":"41064:9:48","valueSize":1},{"declaration":15280,"isOffset":false,"isSlot":false,"src":"41118:9:48","valueSize":1},{"declaration":15306,"isOffset":false,"isSlot":false,"src":"41095:1:48","valueSize":1}],"id":15308,"nodeType":"InlineAssembly","src":"40979:168:48"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15311,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15303,"src":"41169:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15310,"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":15309,"name":"uint256","nodeType":"ElementaryTypeName","src":"41161:7:48","typeDescriptions":{}}},"id":15312,"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":15313,"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":15321,"nodeType":"IfStatement","src":"41157:129:48","trueBody":{"id":15320,"nodeType":"Block","src":"41242:44:48","statements":[{"expression":{"arguments":[{"hexValue":"30","id":15317,"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":15316,"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":15315,"name":"address","nodeType":"ElementaryTypeName","src":"41264:7:48","typeDescriptions":{}}},"id":15318,"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":15286,"id":15319,"nodeType":"Return","src":"41257:17:48"}]}},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15322,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15306,"src":"41300:1:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"3237","id":15323,"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":15327,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15325,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15306,"src":"41311:1:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"3238","id":15326,"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":15335,"nodeType":"IfStatement","src":"41296:68:48","trueBody":{"id":15334,"nodeType":"Block","src":"41320:44:48","statements":[{"expression":{"arguments":[{"hexValue":"30","id":15331,"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":15330,"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":15329,"name":"address","nodeType":"ElementaryTypeName","src":"41342:7:48","typeDescriptions":{}}},"id":15332,"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":15286,"id":15333,"nodeType":"Return","src":"41335:17:48"}]}},{"expression":{"arguments":[{"id":15337,"name":"hash_","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15282,"src":"41391:5:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15338,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15306,"src":"41398:1:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":15339,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15300,"src":"41401:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":15340,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15303,"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":15336,"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":15341,"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":15286,"id":15342,"nodeType":"Return","src":"41374:32:48"}]},"id":15344,"implemented":true,"kind":"function","modifiers":[],"name":"recoverEvmAddr","nameLocation":"40716:14:48","nodeType":"FunctionDefinition","parameters":{"id":15283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15280,"mutability":"mutable","name":"signature","nameLocation":"40744:9:48","nodeType":"VariableDeclaration","scope":15344,"src":"40731:22:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15279,"name":"bytes","nodeType":"ElementaryTypeName","src":"40731:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":15282,"mutability":"mutable","name":"hash_","nameLocation":"40763:5:48","nodeType":"VariableDeclaration","scope":15344,"src":"40755:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15281,"name":"bytes32","nodeType":"ElementaryTypeName","src":"40755:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"40730:39:48"},"returnParameters":{"id":15286,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15285,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15344,"src":"40812:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15284,"name":"address","nodeType":"ElementaryTypeName","src":"40812:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"40811:9:48"},"scope":16619,"src":"40707:707:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15440,"nodeType":"Block","src":"41633:578:48","statements":[{"assignments":[15357],"declarations":[{"constant":false,"id":15357,"mutability":"mutable","name":"_publicKeyX","nameLocation":"41652:11:48","nodeType":"VariableDeclaration","scope":15440,"src":"41644:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15356,"name":"bytes32","nodeType":"ElementaryTypeName","src":"41644:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":15367,"initialValue":{"arguments":[{"arguments":[{"arguments":[{"id":15362,"name":"evmAuthorized","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15346,"src":"41713:13:48","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":15360,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"41696:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15361,"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":15363,"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":15359,"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":15364,"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":15365,"name":"witSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15351,"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":15358,"name":"recoverWitPublicKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15512,"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":15366,"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":[15369],"declarations":[{"constant":false,"id":15369,"mutability":"mutable","name":"_witSigner","nameLocation":"41762:10:48","nodeType":"VariableDeclaration","scope":15440,"src":"41754:18:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15368,"name":"bytes20","nodeType":"ElementaryTypeName","src":"41754:7:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"id":15374,"initialValue":{"arguments":[{"id":15372,"name":"witSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15349,"src":"41790:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}],"expression":{"id":15370,"name":"Address","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13092,"src":"41775:7:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Address_$13092_$","typeString":"type(Witnet.Address)"}},"id":15371,"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_$13092_$returns$_t_bytes20_$","typeString":"function (Witnet.Address) pure returns (bytes20)"}},"id":15373,"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":15437,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15421,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15405,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"id":15389,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15375,"name":"_witSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15369,"src":"41833:10:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"hexValue":"30783030","id":15383,"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":15382,"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":15381,"name":"bytes1","nodeType":"ElementaryTypeName","src":"41879:6:48","typeDescriptions":{}}},"id":15384,"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":15385,"name":"_publicKeyX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15357,"src":"41893:11:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15379,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"41862:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15380,"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":15386,"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":15378,"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":15387,"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":15377,"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":15376,"name":"bytes20","nodeType":"ElementaryTypeName","src":"41847:7:48","typeDescriptions":{}}},"id":15388,"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":15404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15390,"name":"_witSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15369,"src":"41928:10:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"hexValue":"30783031","id":15398,"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":15397,"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":15396,"name":"bytes1","nodeType":"ElementaryTypeName","src":"41974:6:48","typeDescriptions":{}}},"id":15399,"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":15400,"name":"_publicKeyX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15357,"src":"41988:11:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15394,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"41957:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15395,"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":15401,"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":15393,"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":15402,"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":15392,"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":15391,"name":"bytes20","nodeType":"ElementaryTypeName","src":"41942:7:48","typeDescriptions":{}}},"id":15403,"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":15420,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15406,"name":"_witSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15369,"src":"42023:10:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"hexValue":"30783032","id":15414,"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":15413,"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":15412,"name":"bytes1","nodeType":"ElementaryTypeName","src":"42069:6:48","typeDescriptions":{}}},"id":15415,"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":15416,"name":"_publicKeyX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15357,"src":"42083:11:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15410,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"42052:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15411,"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":15417,"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":15409,"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":15418,"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":15408,"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":15407,"name":"bytes20","nodeType":"ElementaryTypeName","src":"42037:7:48","typeDescriptions":{}}},"id":15419,"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":15436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15422,"name":"_witSigner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15369,"src":"42118:10:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"hexValue":"30783033","id":15430,"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":15429,"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":15428,"name":"bytes1","nodeType":"ElementaryTypeName","src":"42164:6:48","typeDescriptions":{}}},"id":15431,"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":15432,"name":"_publicKeyX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15357,"src":"42178:11:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes1","typeString":"bytes1"},{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"expression":{"id":15426,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"42147:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":15427,"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":15433,"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":15425,"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":15434,"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":15424,"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":15423,"name":"bytes20","nodeType":"ElementaryTypeName","src":"42132:7:48","typeDescriptions":{}}},"id":15435,"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":15438,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"41818:385:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":15355,"id":15439,"nodeType":"Return","src":"41811:392:48"}]},"id":15441,"implemented":true,"kind":"function","modifiers":[],"name":"verifyWitAddressAuthorization","nameLocation":"41431:29:48","nodeType":"FunctionDefinition","parameters":{"id":15352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15346,"mutability":"mutable","name":"evmAuthorized","nameLocation":"41483:13:48","nodeType":"VariableDeclaration","scope":15441,"src":"41475:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15345,"name":"address","nodeType":"ElementaryTypeName","src":"41475:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":15349,"mutability":"mutable","name":"witSigner","nameLocation":"41520:9:48","nodeType":"VariableDeclaration","scope":15441,"src":"41512:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"},"typeName":{"id":15348,"nodeType":"UserDefinedTypeName","pathNode":{"id":15347,"name":"Address","nameLocations":["41512:7:48"],"nodeType":"IdentifierPath","referencedDeclaration":13092,"src":"41512:7:48"},"referencedDeclaration":13092,"src":"41512:7:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Address_$13092","typeString":"Witnet.Address"}},"visibility":"internal"},{"constant":false,"id":15351,"mutability":"mutable","name":"witSignature","nameLocation":"41557:12:48","nodeType":"VariableDeclaration","scope":15441,"src":"41544:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15350,"name":"bytes","nodeType":"ElementaryTypeName","src":"41544:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"41460:120:48"},"returnParameters":{"id":15355,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15354,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15441,"src":"41622:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15353,"name":"bool","nodeType":"ElementaryTypeName","src":"41622:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"41621:6:48"},"scope":16619,"src":"41422:789:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15511,"nodeType":"Block","src":"42363:679:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15450,"name":"witSignature","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15445,"src":"42378:12:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15451,"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":15452,"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":15510,"nodeType":"IfStatement","src":"42374:661:48","trueBody":{"id":15509,"nodeType":"Block","src":"42405:630:48","statements":[{"assignments":[15455],"declarations":[{"constant":false,"id":15455,"mutability":"mutable","name":"r","nameLocation":"42428:1:48","nodeType":"VariableDeclaration","scope":15509,"src":"42420:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15454,"name":"bytes32","nodeType":"ElementaryTypeName","src":"42420:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":15456,"nodeType":"VariableDeclarationStatement","src":"42420:9:48"},{"assignments":[15458],"declarations":[{"constant":false,"id":15458,"mutability":"mutable","name":"s","nameLocation":"42452:1:48","nodeType":"VariableDeclaration","scope":15509,"src":"42444:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15457,"name":"bytes32","nodeType":"ElementaryTypeName","src":"42444:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":15459,"nodeType":"VariableDeclarationStatement","src":"42444:9:48"},{"assignments":[15461],"declarations":[{"constant":false,"id":15461,"mutability":"mutable","name":"v","nameLocation":"42474:1:48","nodeType":"VariableDeclaration","scope":15509,"src":"42468:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15460,"name":"uint8","nodeType":"ElementaryTypeName","src":"42468:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":15462,"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":"shanghai","externalReferences":[{"declaration":15455,"isOffset":false,"isSlot":false,"src":"42518:1:48","valueSize":1},{"declaration":15458,"isOffset":false,"isSlot":false,"src":"42571:1:48","valueSize":1},{"declaration":15461,"isOffset":false,"isSlot":false,"src":"42624:1:48","valueSize":1},{"declaration":15445,"isOffset":false,"isSlot":false,"src":"42533:12:48","valueSize":1},{"declaration":15445,"isOffset":false,"isSlot":false,"src":"42586:12:48","valueSize":1},{"declaration":15445,"isOffset":false,"isSlot":false,"src":"42647:12:48","valueSize":1}],"id":15463,"nodeType":"InlineAssembly","src":"42490:193:48"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15469,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":15466,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15458,"src":"42727:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15465,"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":15464,"name":"uint256","nodeType":"ElementaryTypeName","src":"42719:7:48","typeDescriptions":{}}},"id":15467,"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":15468,"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":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":15461,"src":"42825: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":"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":15475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15473,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15461,"src":"42836: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":"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":15477,"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":15508,"nodeType":"IfStatement","src":"42697:327:48","trueBody":{"id":15507,"nodeType":"Block","src":"42860:164:48","statements":[{"assignments":[15480,null],"declarations":[{"constant":false,"id":15480,"mutability":"mutable","name":"x","nameLocation":"42888:1:48","nodeType":"VariableDeclaration","scope":15507,"src":"42880:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15479,"name":"uint256","nodeType":"ElementaryTypeName","src":"42880:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},null],"id":15499,"initialValue":{"arguments":[{"arguments":[{"id":15485,"name":"evmDigest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15443,"src":"42920:9:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15484,"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":15483,"name":"uint256","nodeType":"ElementaryTypeName","src":"42912:7:48","typeDescriptions":{}}},"id":15486,"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":15489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15487,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15461,"src":"42932:1:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3237","id":15488,"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":15492,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15455,"src":"42948:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15491,"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":15490,"name":"uint256","nodeType":"ElementaryTypeName","src":"42940:7:48","typeDescriptions":{}}},"id":15493,"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":15496,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15458,"src":"42960:1:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15495,"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":15494,"name":"uint256","nodeType":"ElementaryTypeName","src":"42952:7:48","typeDescriptions":{}}},"id":15497,"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":15481,"name":"Secp256k1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13068,"src":"42894:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_Secp256k1_$13068_$","typeString":"type(library Secp256k1)"}},"id":15482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"42904:7:48","memberName":"recover","nodeType":"MemberAccess","referencedDeclaration":12250,"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":15498,"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":15505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15500,"name":"_witPublicKey","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15448,"src":"42982:13:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":15503,"name":"x","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15480,"src":"43006:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":15502,"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":15501,"name":"bytes32","nodeType":"ElementaryTypeName","src":"42998:7:48","typeDescriptions":{}}},"id":15504,"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":15506,"nodeType":"ExpressionStatement","src":"42982:26:48"}]}}]}}]},"id":15512,"implemented":true,"kind":"function","modifiers":[],"name":"recoverWitPublicKey","nameLocation":"42228:19:48","nodeType":"FunctionDefinition","parameters":{"id":15446,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15443,"mutability":"mutable","name":"evmDigest","nameLocation":"42256:9:48","nodeType":"VariableDeclaration","scope":15512,"src":"42248:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15442,"name":"bytes32","nodeType":"ElementaryTypeName","src":"42248:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":15445,"mutability":"mutable","name":"witSignature","nameLocation":"42280:12:48","nodeType":"VariableDeclaration","scope":15512,"src":"42267:25:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15444,"name":"bytes","nodeType":"ElementaryTypeName","src":"42267:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"42247:46:48"},"returnParameters":{"id":15449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15448,"mutability":"mutable","name":"_witPublicKey","nameLocation":"42343:13:48","nodeType":"VariableDeclaration","scope":15512,"src":"42335:21:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15447,"name":"bytes32","nodeType":"ElementaryTypeName","src":"42335:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"42334:23:48"},"scope":16619,"src":"42219:823:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15526,"nodeType":"Block","src":"43122:52:48","statements":[{"expression":{"arguments":[{"arguments":[{"id":15522,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15514,"src":"43158:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15521,"name":"toBytes20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15559,"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":15523,"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":15520,"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":15519,"name":"address","nodeType":"ElementaryTypeName","src":"43140:7:48","typeDescriptions":{}}},"id":15524,"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":15518,"id":15525,"nodeType":"Return","src":"43133:33:48"}]},"id":15527,"implemented":true,"kind":"function","modifiers":[],"name":"toAddress","nameLocation":"43059:9:48","nodeType":"FunctionDefinition","parameters":{"id":15515,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15514,"mutability":"mutable","name":"_value","nameLocation":"43082:6:48","nodeType":"VariableDeclaration","scope":15527,"src":"43069:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15513,"name":"bytes","nodeType":"ElementaryTypeName","src":"43069:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"43068:21:48"},"returnParameters":{"id":15518,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15517,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15527,"src":"43113:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15516,"name":"address","nodeType":"ElementaryTypeName","src":"43113:7:48","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"43112:9:48"},"scope":16619,"src":"43050:124:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15542,"nodeType":"Block","src":"43252:57:48","statements":[{"expression":{"arguments":[{"arguments":[{"id":15537,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15529,"src":"43290:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"34","id":15538,"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":15536,"name":"toFixedBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15628,"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":15539,"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":15535,"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":15534,"name":"bytes4","nodeType":"ElementaryTypeName","src":"43270:6:48","typeDescriptions":{}}},"id":15540,"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":15533,"id":15541,"nodeType":"Return","src":"43263:38:48"}]},"id":15543,"implemented":true,"kind":"function","modifiers":[],"name":"toBytes4","nameLocation":"43191:8:48","nodeType":"FunctionDefinition","parameters":{"id":15530,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15529,"mutability":"mutable","name":"_value","nameLocation":"43213:6:48","nodeType":"VariableDeclaration","scope":15543,"src":"43200:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15528,"name":"bytes","nodeType":"ElementaryTypeName","src":"43200:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"43199:21:48"},"returnParameters":{"id":15533,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15532,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15543,"src":"43244:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"},"typeName":{"id":15531,"name":"bytes4","nodeType":"ElementaryTypeName","src":"43244:6:48","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},"visibility":"internal"}],"src":"43243:8:48"},"scope":16619,"src":"43182:127:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15558,"nodeType":"Block","src":"43393:59:48","statements":[{"expression":{"arguments":[{"arguments":[{"id":15553,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15545,"src":"43432:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"3230","id":15554,"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":15552,"name":"toFixedBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15628,"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":15555,"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":15551,"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":15550,"name":"bytes20","nodeType":"ElementaryTypeName","src":"43411:7:48","typeDescriptions":{}}},"id":15556,"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":15549,"id":15557,"nodeType":"Return","src":"43404:40:48"}]},"id":15559,"implemented":true,"kind":"function","modifiers":[],"name":"toBytes20","nameLocation":"43330:9:48","nodeType":"FunctionDefinition","parameters":{"id":15546,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15545,"mutability":"mutable","name":"_value","nameLocation":"43353:6:48","nodeType":"VariableDeclaration","scope":15559,"src":"43340:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15544,"name":"bytes","nodeType":"ElementaryTypeName","src":"43340:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"43339:21:48"},"returnParameters":{"id":15549,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15548,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15559,"src":"43384:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"},"typeName":{"id":15547,"name":"bytes20","nodeType":"ElementaryTypeName","src":"43384:7:48","typeDescriptions":{"typeIdentifier":"t_bytes20","typeString":"bytes20"}},"visibility":"internal"}],"src":"43383:9:48"},"scope":16619,"src":"43321:131:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15571,"nodeType":"Block","src":"43536:50:48","statements":[{"expression":{"arguments":[{"id":15567,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15561,"src":"43567:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"3332","id":15568,"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":15566,"name":"toFixedBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15628,"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":15569,"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":15565,"id":15570,"nodeType":"Return","src":"43547:31:48"}]},"id":15572,"implemented":true,"kind":"function","modifiers":[],"name":"toBytes32","nameLocation":"43473:9:48","nodeType":"FunctionDefinition","parameters":{"id":15562,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15561,"mutability":"mutable","name":"_value","nameLocation":"43496:6:48","nodeType":"VariableDeclaration","scope":15572,"src":"43483:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15560,"name":"bytes","nodeType":"ElementaryTypeName","src":"43483:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"43482:21:48"},"returnParameters":{"id":15565,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15564,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15572,"src":"43527:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15563,"name":"bytes32","nodeType":"ElementaryTypeName","src":"43527:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"43526:9:48"},"scope":16619,"src":"43464:122:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15627,"nodeType":"Block","src":"43718:289:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15584,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15582,"name":"_numBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15576,"src":"43736:9:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3332","id":15583,"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":15581,"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":15585,"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":15586,"nodeType":"ExpressionStatement","src":"43729:23:48"},{"id":15626,"nodeType":"UncheckedBlock","src":"43763:237:48","statements":[{"assignments":[15588],"declarations":[{"constant":false,"id":15588,"mutability":"mutable","name":"_len","nameLocation":"43793:4:48","nodeType":"VariableDeclaration","scope":15626,"src":"43788:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15587,"name":"uint","nodeType":"ElementaryTypeName","src":"43788:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15597,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15592,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":15589,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15574,"src":"43800:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15590,"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":15591,"name":"_numBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15576,"src":"43816:9:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"43800:25:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"id":15594,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15574,"src":"43840:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15595,"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":15596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"43800:53:48","trueExpression":{"id":15593,"name":"_numBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15576,"src":"43828:9:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"43788:65:48"},{"body":{"id":15624,"nodeType":"Block","src":"43904:85:48","statements":[{"expression":{"id":15622,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15608,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15579,"src":"43923:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"commonType":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"id":15621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":15615,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":15611,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15574,"src":"43943:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15613,"indexExpression":{"id":15612,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"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":15614,"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":15610,"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":15609,"name":"bytes32","nodeType":"ElementaryTypeName","src":"43935:7:48","typeDescriptions":{}}},"id":15616,"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":15619,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15617,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"43966:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"38","id":15618,"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":15620,"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":15623,"nodeType":"ExpressionStatement","src":"43923:50:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15602,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"43886:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":15603,"name":"_len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15588,"src":"43891:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"43886:9:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":15625,"initializationExpression":{"assignments":[15599],"declarations":[{"constant":false,"id":15599,"mutability":"mutable","name":"_i","nameLocation":"43878:2:48","nodeType":"VariableDeclaration","scope":15625,"src":"43873:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15598,"name":"uint","nodeType":"ElementaryTypeName","src":"43873:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15601,"initialValue":{"hexValue":"30","id":15600,"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":15606,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"43897:5:48","subExpression":{"id":15605,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15599,"src":"43897:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15607,"nodeType":"ExpressionStatement","src":"43897:5:48"},"nodeType":"ForStatement","src":"43868:121:48"}]}]},"id":15628,"implemented":true,"kind":"function","modifiers":[],"name":"toFixedBytes","nameLocation":"43603:12:48","nodeType":"FunctionDefinition","parameters":{"id":15577,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15574,"mutability":"mutable","name":"_value","nameLocation":"43629:6:48","nodeType":"VariableDeclaration","scope":15628,"src":"43616:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15573,"name":"bytes","nodeType":"ElementaryTypeName","src":"43616:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":15576,"mutability":"mutable","name":"_numBytes","nameLocation":"43643:9:48","nodeType":"VariableDeclaration","scope":15628,"src":"43637:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15575,"name":"uint8","nodeType":"ElementaryTypeName","src":"43637:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"43615:38:48"},"returnParameters":{"id":15580,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15579,"mutability":"mutable","name":"_bytes32","nameLocation":"43703:8:48","nodeType":"VariableDeclaration","scope":15628,"src":"43695:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15578,"name":"bytes32","nodeType":"ElementaryTypeName","src":"43695:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"43694:18:48"},"scope":16619,"src":"43594:413:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15672,"nodeType":"Block","src":"44162:274:48","statements":[{"assignments":[15637],"declarations":[{"constant":false,"id":15637,"mutability":"mutable","name":"_bytes","nameLocation":"44186:6:48","nodeType":"VariableDeclaration","scope":15672,"src":"44173:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15636,"name":"bytes","nodeType":"ElementaryTypeName","src":"44173:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":15644,"initialValue":{"arguments":[{"arguments":[{"id":15641,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15631,"src":"44221:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"}],"id":15640,"name":"_toStringLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16618,"src":"44205:15:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes32_$returns$_t_uint256_$","typeString":"function (bytes32) pure returns (uint256)"}},"id":15642,"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":15639,"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":15638,"name":"bytes","nodeType":"ElementaryTypeName","src":"44199:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":15643,"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":15665,"nodeType":"Block","src":"44281:116:48","statements":[{"expression":{"id":15659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15653,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15637,"src":"44296:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15655,"indexExpression":{"id":15654,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15646,"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":15656,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15631,"src":"44309:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15658,"indexExpression":{"id":15657,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15646,"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":15660,"nodeType":"ExpressionStatement","src":"44296:25:48"},{"id":15664,"nodeType":"UncheckedBlock","src":"44336:50:48","statements":[{"expression":{"id":15662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"44365:5:48","subExpression":{"id":15661,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15646,"src":"44365:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15663,"nodeType":"ExpressionStatement","src":"44365:5:48"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15652,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15649,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15646,"src":"44260:2:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15650,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15637,"src":"44265:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15651,"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":15666,"initializationExpression":{"assignments":[15646],"declarations":[{"constant":false,"id":15646,"mutability":"mutable","name":"_i","nameLocation":"44252:2:48","nodeType":"VariableDeclaration","scope":15666,"src":"44247:7:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15645,"name":"uint","nodeType":"ElementaryTypeName","src":"44247:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15648,"initialValue":{"hexValue":"30","id":15647,"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":15669,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15637,"src":"44421:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15668,"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":15667,"name":"string","nodeType":"ElementaryTypeName","src":"44414:6:48","typeDescriptions":{}}},"id":15670,"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":15635,"id":15671,"nodeType":"Return","src":"44407:21:48"}]},"documentation":{"id":15629,"nodeType":"StructuredDocumentation","src":"44019:41:48","text":"@notice Converts bytes32 into string."},"id":15673,"implemented":true,"kind":"function","modifiers":[],"name":"asAscii","nameLocation":"44075:7:48","nodeType":"FunctionDefinition","parameters":{"id":15632,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15631,"mutability":"mutable","name":"_bytes32","nameLocation":"44091:8:48","nodeType":"VariableDeclaration","scope":15673,"src":"44083:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15630,"name":"bytes32","nodeType":"ElementaryTypeName","src":"44083:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"44082:18:48"},"returnParameters":{"id":15635,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15634,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15673,"src":"44142:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15633,"name":"string","nodeType":"ElementaryTypeName","src":"44142:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"44141:15:48"},"scope":16619,"src":"44066:370:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15737,"nodeType":"Block","src":"44545:288:48","statements":[{"assignments":[15681],"declarations":[{"constant":false,"id":15681,"mutability":"mutable","name":"_bytes","nameLocation":"44569:6:48","nodeType":"VariableDeclaration","scope":15737,"src":"44556:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15680,"name":"bytes","nodeType":"ElementaryTypeName","src":"44556:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":15686,"initialValue":{"arguments":[{"hexValue":"3634","id":15684,"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":15683,"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":15682,"name":"bytes","nodeType":"ElementaryTypeName","src":"44582:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":15685,"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":15730,"nodeType":"Block","src":"44638:156:48","statements":[{"expression":{"id":15710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15694,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15681,"src":"44653:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15697,"indexExpression":{"id":15696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"44660:5:48","subExpression":{"id":15695,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15688,"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":15707,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":15701,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15675,"src":"44686:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15705,"indexExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15704,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15702,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15688,"src":"44695:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":15703,"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":15706,"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":15700,"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":15699,"name":"uint8","nodeType":"ElementaryTypeName","src":"44680:5:48","typeDescriptions":{}}},"id":15708,"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":15698,"name":"_toHexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16592,"src":"44669:10:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint8_$returns$_t_bytes1_$","typeString":"function (uint8) pure returns (bytes1)"}},"id":15709,"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":15711,"nodeType":"ExpressionStatement","src":"44653:56:48"},{"expression":{"id":15728,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15712,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15681,"src":"44724:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15715,"indexExpression":{"id":15714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"44731:5:48","subExpression":{"id":15713,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15688,"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":15725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":15719,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15675,"src":"44757:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":15723,"indexExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15720,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15688,"src":"44766:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":15721,"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":15724,"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":15718,"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":15717,"name":"uint8","nodeType":"ElementaryTypeName","src":"44751:5:48","typeDescriptions":{}}},"id":15726,"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":15716,"name":"_toHexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16592,"src":"44740:10:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint8_$returns$_t_bytes1_$","typeString":"function (uint8) pure returns (bytes1)"}},"id":15727,"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":15729,"nodeType":"ExpressionStatement","src":"44724:58:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15693,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15690,"name":"_i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15688,"src":"44617:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15691,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15681,"src":"44622:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15692,"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":15731,"initializationExpression":{"assignments":[15688],"declarations":[{"constant":false,"id":15688,"mutability":"mutable","name":"_i","nameLocation":"44613:2:48","nodeType":"VariableDeclaration","scope":15731,"src":"44607:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15687,"name":"uint8","nodeType":"ElementaryTypeName","src":"44607:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":15689,"nodeType":"VariableDeclarationStatement","src":"44607:8:48"},"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"44602:192:48"},{"expression":{"arguments":[{"id":15734,"name":"_bytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15681,"src":"44818:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15733,"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":15732,"name":"string","nodeType":"ElementaryTypeName","src":"44811:6:48","typeDescriptions":{}}},"id":15735,"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":15679,"id":15736,"nodeType":"Return","src":"44804:21:48"}]},"id":15738,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"44453:11:48","nodeType":"FunctionDefinition","parameters":{"id":15676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15675,"mutability":"mutable","name":"_bytes32","nameLocation":"44473:8:48","nodeType":"VariableDeclaration","scope":15738,"src":"44465:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":15674,"name":"bytes32","nodeType":"ElementaryTypeName","src":"44465:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"44464:18:48"},"returnParameters":{"id":15679,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15678,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15738,"src":"44525:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15677,"name":"string","nodeType":"ElementaryTypeName","src":"44525:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"44524:15:48"},"scope":16619,"src":"44444:389:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15818,"nodeType":"Block","src":"45188:455:48","statements":[{"assignments":[15747],"declarations":[{"constant":false,"id":15747,"mutability":"mutable","name":"lowered","nameLocation":"45212:7:48","nodeType":"VariableDeclaration","scope":15818,"src":"45199:20:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15746,"name":"bytes","nodeType":"ElementaryTypeName","src":"45199:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":15756,"initialValue":{"arguments":[{"expression":{"arguments":[{"id":15752,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15741,"src":"45238:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15751,"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":15750,"name":"bytes","nodeType":"ElementaryTypeName","src":"45232:5:48","typeDescriptions":{}}},"id":15753,"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":15754,"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":15749,"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":15748,"name":"bytes","nodeType":"ElementaryTypeName","src":"45226:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":15755,"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":15812,"nodeType":"UncheckedBlock","src":"45261:342:48","statements":[{"body":{"id":15810,"nodeType":"Block","src":"45329:263:48","statements":[{"assignments":[15769],"declarations":[{"constant":false,"id":15769,"mutability":"mutable","name":"char","nameLocation":"45354:4:48","nodeType":"VariableDeclaration","scope":15810,"src":"45348:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15768,"name":"uint8","nodeType":"ElementaryTypeName","src":"45348:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":15779,"initialValue":{"arguments":[{"baseExpression":{"arguments":[{"id":15774,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15741,"src":"45373:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15773,"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":15772,"name":"bytes","nodeType":"ElementaryTypeName","src":"45367:5:48","typeDescriptions":{}}},"id":15775,"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":15777,"indexExpression":{"id":15776,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15758,"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":15771,"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":15770,"name":"uint8","nodeType":"ElementaryTypeName","src":"45361:5:48","typeDescriptions":{}}},"id":15778,"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":15786,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15780,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15769,"src":"45404:4:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3635","id":15781,"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":15785,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15783,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15769,"src":"45418:4:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3930","id":15784,"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":15808,"nodeType":"Block","src":"45509:68:48","statements":[{"expression":{"id":15806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15799,"name":"lowered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15747,"src":"45532:7:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15801,"indexExpression":{"id":15800,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15758,"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":15804,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15769,"src":"45552:4:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":15803,"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":15802,"name":"bytes1","nodeType":"ElementaryTypeName","src":"45545:6:48","typeDescriptions":{}}},"id":15805,"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":15807,"nodeType":"ExpressionStatement","src":"45532:25:48"}]},"id":15809,"nodeType":"IfStatement","src":"45400:177:48","trueBody":{"id":15798,"nodeType":"Block","src":"45430:73:48","statements":[{"expression":{"id":15796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15787,"name":"lowered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15747,"src":"45453:7:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15789,"indexExpression":{"id":15788,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15758,"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":15794,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15792,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15769,"src":"45473:4:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3332","id":15793,"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":15791,"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":15790,"name":"bytes1","nodeType":"ElementaryTypeName","src":"45466:6:48","typeDescriptions":{}}},"id":15795,"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":15797,"nodeType":"ExpressionStatement","src":"45453:30:48"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15761,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15758,"src":"45303:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15762,"name":"lowered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15747,"src":"45307:7:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15763,"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":15811,"initializationExpression":{"assignments":[15758],"declarations":[{"constant":false,"id":15758,"mutability":"mutable","name":"i","nameLocation":"45296:1:48","nodeType":"VariableDeclaration","scope":15811,"src":"45291:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15757,"name":"uint","nodeType":"ElementaryTypeName","src":"45291:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15760,"initialValue":{"hexValue":"30","id":15759,"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":15766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"45323:4:48","subExpression":{"id":15765,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15758,"src":"45323:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15767,"nodeType":"ExpressionStatement","src":"45323:4:48"},"nodeType":"ForStatement","src":"45286:306:48"}]},{"expression":{"arguments":[{"id":15815,"name":"lowered","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15747,"src":"45627:7:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":15814,"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":15813,"name":"string","nodeType":"ElementaryTypeName","src":"45620:6:48","typeDescriptions":{}}},"id":15816,"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":15745,"id":15817,"nodeType":"Return","src":"45613:22:48"}]},"documentation":{"id":15739,"nodeType":"StructuredDocumentation","src":"44843:238:48","text":"===============================================================================================================\n --- 'string' helper methods -----------------------------------------------------------------------------------"},"id":15819,"implemented":true,"kind":"function","modifiers":[],"name":"toLowerCase","nameLocation":"45096:11:48","nodeType":"FunctionDefinition","parameters":{"id":15742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15741,"mutability":"mutable","name":"str","nameLocation":"45122:3:48","nodeType":"VariableDeclaration","scope":15819,"src":"45108:17:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15740,"name":"string","nodeType":"ElementaryTypeName","src":"45108:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"45107:19:48"},"returnParameters":{"id":15745,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15744,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15819,"src":"45168:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15743,"name":"string","nodeType":"ElementaryTypeName","src":"45168:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"45167:15:48"},"scope":16619,"src":"45087:556:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15899,"nodeType":"Block","src":"45801:438:48","statements":[{"id":15898,"nodeType":"UncheckedBlock","src":"45812:420:48","statements":[{"expression":{"id":15837,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15826,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15824,"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":15835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":15831,"name":"hexString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15821,"src":"45862:9:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15830,"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":15829,"name":"bytes","nodeType":"ElementaryTypeName","src":"45856:5:48","typeDescriptions":{}}},"id":15832,"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":15833,"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":15834,"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":15828,"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":15827,"name":"bytes","nodeType":"ElementaryTypeName","src":"45850:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":15836,"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":15838,"nodeType":"ExpressionStatement","src":"45837:47:48"},{"body":{"id":15896,"nodeType":"Block","src":"45940:281:48","statements":[{"assignments":[15850],"declarations":[{"constant":false,"id":15850,"mutability":"mutable","name":"byte1","nameLocation":"45965:5:48","nodeType":"VariableDeclaration","scope":15896,"src":"45959:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15849,"name":"uint8","nodeType":"ElementaryTypeName","src":"45959:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":15864,"initialValue":{"arguments":[{"arguments":[{"baseExpression":{"arguments":[{"id":15856,"name":"hexString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15821,"src":"46000:9:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15855,"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":15854,"name":"bytes","nodeType":"ElementaryTypeName","src":"45994:5:48","typeDescriptions":{}}},"id":15857,"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":15861,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15860,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":15858,"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":15859,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15840,"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":15853,"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":15852,"name":"uint8","nodeType":"ElementaryTypeName","src":"45988:5:48","typeDescriptions":{}}},"id":15862,"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":15851,"name":"_hexCharToByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16556,"src":"45973:14:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint8_$returns$_t_uint8_$","typeString":"function (uint8) pure returns (uint8)"}},"id":15863,"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":[15866],"declarations":[{"constant":false,"id":15866,"mutability":"mutable","name":"byte2","nameLocation":"46044:5:48","nodeType":"VariableDeclaration","scope":15896,"src":"46038:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":15865,"name":"uint8","nodeType":"ElementaryTypeName","src":"46038:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":15882,"initialValue":{"arguments":[{"arguments":[{"baseExpression":{"arguments":[{"id":15872,"name":"hexString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15821,"src":"46079:9:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15871,"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":15870,"name":"bytes","nodeType":"ElementaryTypeName","src":"46073:5:48","typeDescriptions":{}}},"id":15873,"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":15879,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15878,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15876,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":15874,"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":15875,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15840,"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":15877,"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":15869,"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":15868,"name":"uint8","nodeType":"ElementaryTypeName","src":"46067:5:48","typeDescriptions":{}}},"id":15880,"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":15867,"name":"_hexCharToByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16556,"src":"46052:14:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint8_$returns$_t_uint8_$","typeString":"function (uint8) pure returns (uint8)"}},"id":15881,"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":15894,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":15883,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15824,"src":"46121:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15885,"indexExpression":{"id":15884,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15840,"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":15892,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15888,"name":"byte1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15850,"src":"46140:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"hexValue":"3136","id":15889,"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":15891,"name":"byte2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15866,"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":15887,"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":15886,"name":"bytes1","nodeType":"ElementaryTypeName","src":"46133:6:48","typeDescriptions":{}}},"id":15893,"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":15895,"nodeType":"ExpressionStatement","src":"46121:38:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15845,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15842,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15840,"src":"45915:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":15843,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15824,"src":"45919:6:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":15844,"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":15897,"initializationExpression":{"assignments":[15840],"declarations":[{"constant":false,"id":15840,"mutability":"mutable","name":"i","nameLocation":"45912:1:48","nodeType":"VariableDeclaration","scope":15897,"src":"45904:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15839,"name":"uint256","nodeType":"ElementaryTypeName","src":"45904:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15841,"nodeType":"VariableDeclarationStatement","src":"45904:9:48"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":15847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"45934:4:48","subExpression":{"id":15846,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15840,"src":"45934:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15848,"nodeType":"ExpressionStatement","src":"45934:4:48"},"nodeType":"ForStatement","src":"45899:322:48"}]}]},"id":15900,"implemented":true,"kind":"function","modifiers":[],"name":"parseHexString","nameLocation":"45717:14:48","nodeType":"FunctionDefinition","parameters":{"id":15822,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15821,"mutability":"mutable","name":"hexString","nameLocation":"45746:9:48","nodeType":"VariableDeclaration","scope":15900,"src":"45732:23:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15820,"name":"string","nodeType":"ElementaryTypeName","src":"45732:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"45731:25:48"},"returnParameters":{"id":15825,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15824,"mutability":"mutable","name":"result","nameLocation":"45793:6:48","nodeType":"VariableDeclaration","scope":15900,"src":"45780:19:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":15823,"name":"bytes","nodeType":"ElementaryTypeName","src":"45780:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"45779:21:48"},"scope":16619,"src":"45708:531:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":15993,"nodeType":"Block","src":"46345:455:48","statements":[{"id":15992,"nodeType":"UncheckedBlock","src":"46356:437:48","statements":[{"body":{"id":15986,"nodeType":"Block","src":"46429:320:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":15951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"arguments":[{"id":15927,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15902,"src":"46487:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15926,"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":15925,"name":"bytes","nodeType":"ElementaryTypeName","src":"46481:5:48","typeDescriptions":{}}},"id":15928,"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":15930,"indexExpression":{"id":15929,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15910,"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":15924,"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":15923,"name":"uint8","nodeType":"ElementaryTypeName","src":"46475:5:48","typeDescriptions":{}}},"id":15931,"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":15932,"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":15934,"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":15935,"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":15950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15947,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"arguments":[{"id":15941,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15902,"src":"46547:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15940,"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":15939,"name":"bytes","nodeType":"ElementaryTypeName","src":"46541:5:48","typeDescriptions":{}}},"id":15942,"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":15944,"indexExpression":{"id":15943,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15910,"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":15938,"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":15937,"name":"uint8","nodeType":"ElementaryTypeName","src":"46535:5:48","typeDescriptions":{}}},"id":15945,"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":15946,"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":15948,"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":15949,"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":15957,"nodeType":"IfStatement","src":"46448:197:48","trueBody":{"id":15956,"nodeType":"Block","src":"46585:60:48","statements":[{"expression":{"components":[{"hexValue":"30","id":15952,"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":15953,"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":15954,"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":15908,"id":15955,"nodeType":"Return","src":"46608:17:48"}]}},{"expression":{"id":15984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":15958,"name":"res","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15905,"src":"46663:3:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15983,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":15969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"arguments":[{"id":15963,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15902,"src":"46683:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15962,"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":15961,"name":"bytes","nodeType":"ElementaryTypeName","src":"46677:5:48","typeDescriptions":{}}},"id":15964,"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":15966,"indexExpression":{"id":15965,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15910,"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":15960,"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":15959,"name":"uint8","nodeType":"ElementaryTypeName","src":"46671:5:48","typeDescriptions":{}}},"id":15967,"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":15968,"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":15970,"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":15982,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":15971,"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":15980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15978,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":15974,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15902,"src":"46713:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15973,"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":15972,"name":"bytes","nodeType":"ElementaryTypeName","src":"46707:5:48","typeDescriptions":{}}},"id":15975,"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":15976,"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":15977,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15910,"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":15979,"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":15981,"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":15985,"nodeType":"ExpressionStatement","src":"46663:70:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":15919,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":15913,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15910,"src":"46401:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"arguments":[{"id":15916,"name":"str","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15902,"src":"46411:3:48","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":15915,"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":15914,"name":"bytes","nodeType":"ElementaryTypeName","src":"46405:5:48","typeDescriptions":{}}},"id":15917,"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":15918,"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":15987,"initializationExpression":{"assignments":[15910],"declarations":[{"constant":false,"id":15910,"mutability":"mutable","name":"i","nameLocation":"46394:1:48","nodeType":"VariableDeclaration","scope":15987,"src":"46386:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15909,"name":"uint256","nodeType":"ElementaryTypeName","src":"46386:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":15912,"initialValue":{"hexValue":"30","id":15911,"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":15921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"46424:3:48","subExpression":{"id":15920,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15910,"src":"46424:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":15922,"nodeType":"ExpressionStatement","src":"46424:3:48"},"nodeType":"ForStatement","src":"46381:368:48"},{"expression":{"components":[{"id":15988,"name":"res","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15905,"src":"46771:3:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":15989,"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":15990,"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":15908,"id":15991,"nodeType":"Return","src":"46763:18:48"}]}]},"id":15994,"implemented":true,"kind":"function","modifiers":[],"name":"tryUint","nameLocation":"46256:7:48","nodeType":"FunctionDefinition","parameters":{"id":15903,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15902,"mutability":"mutable","name":"str","nameLocation":"46278:3:48","nodeType":"VariableDeclaration","scope":15994,"src":"46264:17:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":15901,"name":"string","nodeType":"ElementaryTypeName","src":"46264:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"46263:19:48"},"returnParameters":{"id":15908,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15905,"mutability":"mutable","name":"res","nameLocation":"46329:3:48","nodeType":"VariableDeclaration","scope":15994,"src":"46324:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":15904,"name":"uint","nodeType":"ElementaryTypeName","src":"46324:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":15907,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":15994,"src":"46334:4:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":15906,"name":"bool","nodeType":"ElementaryTypeName","src":"46334:4:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"46323:16:48"},"scope":16619,"src":"46247:553:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16010,"nodeType":"Block","src":"47143:56:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16005,"name":"epoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":15998,"src":"47180:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":16003,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"47161:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":16004,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":16006,"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":16007,"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":16002,"id":16009,"nodeType":"Return","src":"47154:37:48"}]},"documentation":{"id":15995,"nodeType":"StructuredDocumentation","src":"46810:238:48","text":"===============================================================================================================\n --- 'uint*' helper methods ------------------------------------------------------------------------------------"},"id":16011,"implemented":true,"kind":"function","modifiers":[],"name":"determineBeaconIndexFromEpoch","nameLocation":"47063:29:48","nodeType":"FunctionDefinition","parameters":{"id":15999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":15998,"mutability":"mutable","name":"epoch","nameLocation":"47105:5:48","nodeType":"VariableDeclaration","scope":16011,"src":"47093:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":15997,"nodeType":"UserDefinedTypeName","pathNode":{"id":15996,"name":"BlockNumber","nameLocations":["47093:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"47093:11:48"},"referencedDeclaration":13094,"src":"47093:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"47092:19:48"},"returnParameters":{"id":16002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16001,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16011,"src":"47135:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":16000,"name":"uint64","nodeType":"ElementaryTypeName","src":"47135:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"47134:8:48"},"scope":16619,"src":"47054:145:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16025,"nodeType":"Block","src":"47306:151:48","statements":[{"expression":{"arguments":[{"arguments":[{"id":16021,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16014,"src":"47414:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"id":16020,"name":"determineEpochFromTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16086,"src":"47368:27:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_Timestamp_$13106_$returns$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"function (Witnet.Timestamp) pure returns (Witnet.BlockNumber)"}},"id":16022,"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_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"id":16019,"name":"determineBeaconIndexFromEpoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16011,"src":"47324:29:48","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_userDefinedValueType$_BlockNumber_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":16023,"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":16018,"id":16024,"nodeType":"Return","src":"47317:132:48"}]},"id":16026,"implemented":true,"kind":"function","modifiers":[],"name":"determineBeaconIndexFromTimestamp","nameLocation":"47220:33:48","nodeType":"FunctionDefinition","parameters":{"id":16015,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16014,"mutability":"mutable","name":"timestamp","nameLocation":"47264:9:48","nodeType":"VariableDeclaration","scope":16026,"src":"47254:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":16013,"nodeType":"UserDefinedTypeName","pathNode":{"id":16012,"name":"Timestamp","nameLocations":["47254:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"47254:9:48"},"referencedDeclaration":13106,"src":"47254:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"47253:21:48"},"returnParameters":{"id":16018,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16017,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16026,"src":"47298:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":16016,"name":"uint64","nodeType":"ElementaryTypeName","src":"47298:6:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"47297:8:48"},"scope":16619,"src":"47211:246:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16085,"nodeType":"Block","src":"47559:614:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16040,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16037,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16029,"src":"47591:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":16035,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"47574:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":16036,"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_$13106_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":16038,"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":16039,"name":"WIT_2_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13147,"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":16062,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16059,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16029,"src":"47886:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":16057,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"47869:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":16058,"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_$13106_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":16060,"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":16061,"name":"WIT_1_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13111,"src":"47899:23:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"47869:53:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":16082,"nodeType":"Block","src":"48113:53:48","statements":[{"expression":{"arguments":[{"hexValue":"30","id":16079,"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":16077,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"48135:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":16078,"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_$13094_$","typeString":"function (uint64) pure returns (Witnet.BlockNumber)"}},"id":16080,"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_$13094","typeString":"Witnet.BlockNumber"}},"functionReturnParameters":16034,"id":16081,"nodeType":"Return","src":"48128:26:48"}]},"id":16083,"nodeType":"IfStatement","src":"47865:301:48","trueBody":{"id":16076,"nodeType":"Block","src":"47924:183:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16067,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16029,"src":"47999:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":16065,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"47982:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":16066,"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_$13106_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":16068,"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":16069,"name":"WIT_1_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13111,"src":"48012:23:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"47982:53:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":16071,"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":16072,"name":"WIT_1_SECS_PER_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13114,"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":16063,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"47946:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":16064,"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_$13094_$","typeString":"function (uint64) pure returns (Witnet.BlockNumber)"}},"id":16074,"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_$13094","typeString":"Witnet.BlockNumber"}},"functionReturnParameters":16034,"id":16075,"nodeType":"Return","src":"47939:156:48"}]}},"id":16084,"nodeType":"IfStatement","src":"47570:596:48","trueBody":{"id":16056,"nodeType":"Block","src":"47629:230:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16043,"name":"WIT_2_GENESIS_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13144,"src":"47686:19:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16052,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16049,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16046,"name":"timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16029,"src":"47747:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}],"expression":{"id":16044,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"47730:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":16045,"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_$13106_$returns$_t_uint64_$","typeString":"function (Witnet.Timestamp) pure returns (uint64)"}},"id":16047,"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":16048,"name":"WIT_2_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13147,"src":"47760:23:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"47730:53:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":16050,"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":16051,"name":"WIT_2_SECS_PER_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13150,"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":16041,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"47651:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":16042,"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_$13094_$","typeString":"function (uint64) pure returns (Witnet.BlockNumber)"}},"id":16054,"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_$13094","typeString":"Witnet.BlockNumber"}},"functionReturnParameters":16034,"id":16055,"nodeType":"Return","src":"47644:203:48"}]}}]},"id":16086,"implemented":true,"kind":"function","modifiers":[],"name":"determineEpochFromTimestamp","nameLocation":"47474:27:48","nodeType":"FunctionDefinition","parameters":{"id":16030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16029,"mutability":"mutable","name":"timestamp","nameLocation":"47512:9:48","nodeType":"VariableDeclaration","scope":16086,"src":"47502:19:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":16028,"nodeType":"UserDefinedTypeName","pathNode":{"id":16027,"name":"Timestamp","nameLocations":["47502:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"47502:9:48"},"referencedDeclaration":13106,"src":"47502:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"47501:21:48"},"returnParameters":{"id":16034,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16033,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16086,"src":"47546:11:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":16032,"nodeType":"UserDefinedTypeName","pathNode":{"id":16031,"name":"BlockNumber","nameLocations":["47546:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"47546:11:48"},"referencedDeclaration":13094,"src":"47546:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"47545:13:48"},"scope":16619,"src":"47465:708:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16132,"nodeType":"Block","src":"48271:499:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16097,"name":"epoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16089,"src":"48305:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":16095,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"48286:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":16096,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":16098,"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":16099,"name":"WIT_2_GENESIS_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13144,"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":16128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16120,"name":"WIT_1_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13111,"src":"48658:23:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16126,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16121,"name":"WIT_1_SECS_PER_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13114,"src":"48702:20:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"arguments":[{"id":16124,"name":"epoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16089,"src":"48744:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":16122,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"48725:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":16123,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":16125,"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":16127,"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":16118,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"48629:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":16119,"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_$13106_$","typeString":"function (uint64) pure returns (Witnet.Timestamp)"}},"id":16129,"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_$13106","typeString":"Witnet.Timestamp"}},"functionReturnParameters":16094,"id":16130,"nodeType":"Return","src":"48622:140:48"},"id":16131,"nodeType":"IfStatement","src":"48282:480:48","trueBody":{"id":16117,"nodeType":"Block","src":"48336:280:48","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16103,"name":"WIT_2_GENESIS_TIMESTAMP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13147,"src":"48391:23:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16104,"name":"WIT_2_SECS_PER_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13150,"src":"48439:20:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":16110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16107,"name":"epoch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16089,"src":"48508:5:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}],"expression":{"id":16105,"name":"BlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13094,"src":"48489:11:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_BlockNumber_$13094_$","typeString":"type(Witnet.BlockNumber)"}},"id":16106,"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_$13094_$returns$_t_uint64_$","typeString":"function (Witnet.BlockNumber) pure returns (uint64)"}},"id":16108,"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":16109,"name":"WIT_2_GENESIS_EPOCH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13144,"src":"48546:19:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"48489:76:48","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"id":16111,"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":16113,"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":16101,"name":"Timestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":13106,"src":"48358:9:48","typeDescriptions":{"typeIdentifier":"t_type$_t_userDefinedValueType$_Timestamp_$13106_$","typeString":"type(Witnet.Timestamp)"}},"id":16102,"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_$13106_$","typeString":"function (uint64) pure returns (Witnet.Timestamp)"}},"id":16115,"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_$13106","typeString":"Witnet.Timestamp"}},"functionReturnParameters":16094,"id":16116,"nodeType":"Return","src":"48351:253:48"}]}}]},"id":16133,"implemented":true,"kind":"function","modifiers":[],"name":"determineTimestampFromEpoch","nameLocation":"48190:27:48","nodeType":"FunctionDefinition","parameters":{"id":16090,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16089,"mutability":"mutable","name":"epoch","nameLocation":"48230:5:48","nodeType":"VariableDeclaration","scope":16133,"src":"48218:17:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"},"typeName":{"id":16088,"nodeType":"UserDefinedTypeName","pathNode":{"id":16087,"name":"BlockNumber","nameLocations":["48218:11:48"],"nodeType":"IdentifierPath","referencedDeclaration":13094,"src":"48218:11:48"},"referencedDeclaration":13094,"src":"48218:11:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_BlockNumber_$13094","typeString":"Witnet.BlockNumber"}},"visibility":"internal"}],"src":"48217:19:48"},"returnParameters":{"id":16094,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16093,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16133,"src":"48260:9:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"},"typeName":{"id":16092,"nodeType":"UserDefinedTypeName","pathNode":{"id":16091,"name":"Timestamp","nameLocations":["48260:9:48"],"nodeType":"IdentifierPath","referencedDeclaration":13106,"src":"48260:9:48"},"referencedDeclaration":13106,"src":"48260:9:48","typeDescriptions":{"typeIdentifier":"t_userDefinedValueType$_Timestamp_$13106","typeString":"Witnet.Timestamp"}},"visibility":"internal"}],"src":"48259:11:48"},"scope":16619,"src":"48181:589:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16177,"nodeType":"Block","src":"49066:210:48","statements":[{"assignments":[16146],"declarations":[{"constant":false,"id":16146,"mutability":"mutable","name":"_number","nameLocation":"49085:7:48","nodeType":"VariableDeclaration","scope":16177,"src":"49077:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16145,"name":"uint256","nodeType":"ElementaryTypeName","src":"49077:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16166,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16165,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"arguments":[{"id":16152,"name":"seed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16140,"src":"49156:4:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":16153,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16138,"src":"49162:5:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":16150,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"49145:3:48","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":16151,"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":16154,"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":16149,"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":16155,"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":16148,"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":16147,"name":"uint256","nodeType":"ElementaryTypeName","src":"49095:7:48","typeDescriptions":{}}},"id":16156,"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":16163,"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":16161,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"32","id":16159,"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":16160,"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":16162,"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":16158,"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":16157,"name":"uint256","nodeType":"ElementaryTypeName","src":"49197:7:48","typeDescriptions":{}}},"id":16164,"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":16174,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16171,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16169,"name":"_number","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16146,"src":"49244:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":16170,"name":"range","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16136,"src":"49254:5:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"49244:15:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":16172,"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":16173,"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":16168,"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":16167,"name":"uint32","nodeType":"ElementaryTypeName","src":"49236:6:48","typeDescriptions":{}}},"id":16175,"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":16144,"id":16176,"nodeType":"Return","src":"49229:39:48"}]},"documentation":{"id":16134,"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":16178,"implemented":true,"kind":"function","modifiers":[],"name":"randomUniformUint32","nameLocation":"48947:19:48","nodeType":"FunctionDefinition","parameters":{"id":16141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16136,"mutability":"mutable","name":"range","nameLocation":"48974:5:48","nodeType":"VariableDeclaration","scope":16178,"src":"48967:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":16135,"name":"uint32","nodeType":"ElementaryTypeName","src":"48967:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"id":16138,"mutability":"mutable","name":"nonce","nameLocation":"48989:5:48","nodeType":"VariableDeclaration","scope":16178,"src":"48981:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16137,"name":"uint256","nodeType":"ElementaryTypeName","src":"48981:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16140,"mutability":"mutable","name":"seed","nameLocation":"49004:4:48","nodeType":"VariableDeclaration","scope":16178,"src":"48996:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16139,"name":"bytes32","nodeType":"ElementaryTypeName","src":"48996:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"48966:43:48"},"returnParameters":{"id":16144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16143,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16178,"src":"49052:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":16142,"name":"uint32","nodeType":"ElementaryTypeName","src":"49052:6:48","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"49051:8:48"},"scope":16619,"src":"48938:338:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16254,"nodeType":"Block","src":"49503:305:48","statements":[{"assignments":[16187],"declarations":[{"constant":false,"id":16187,"mutability":"mutable","name":"b2","nameLocation":"49527:2:48","nodeType":"VariableDeclaration","scope":16254,"src":"49514:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16186,"name":"bytes","nodeType":"ElementaryTypeName","src":"49514:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16192,"initialValue":{"arguments":[{"hexValue":"32","id":16190,"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":16189,"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":16188,"name":"bytes","nodeType":"ElementaryTypeName","src":"49536:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16191,"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":[16194],"declarations":[{"constant":false,"id":16194,"mutability":"mutable","name":"d0","nameLocation":"49561:2:48","nodeType":"VariableDeclaration","scope":16254,"src":"49555:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16193,"name":"uint8","nodeType":"ElementaryTypeName","src":"49555:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":16203,"initialValue":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16199,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16197,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16181,"src":"49572:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3136","id":16198,"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":16196,"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":16195,"name":"uint8","nodeType":"ElementaryTypeName","src":"49566:5:48","typeDescriptions":{}}},"id":16200,"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":16201,"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":[16205],"declarations":[{"constant":false,"id":16205,"mutability":"mutable","name":"d1","nameLocation":"49602:2:48","nodeType":"VariableDeclaration","scope":16254,"src":"49596:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16204,"name":"uint8","nodeType":"ElementaryTypeName","src":"49596:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":16214,"initialValue":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16208,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16181,"src":"49613:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"3136","id":16209,"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":16207,"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":16206,"name":"uint8","nodeType":"ElementaryTypeName","src":"49607:5:48","typeDescriptions":{}}},"id":16211,"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":16212,"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":16217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16215,"name":"d0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16194,"src":"49641:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3537","id":16216,"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":16222,"nodeType":"IfStatement","src":"49637:33:48","trueBody":{"expression":{"id":16220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16218,"name":"d0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16194,"src":"49663:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"37","id":16219,"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":16221,"nodeType":"ExpressionStatement","src":"49663:7:48"}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16223,"name":"d1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16205,"src":"49685:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"3537","id":16224,"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":16230,"nodeType":"IfStatement","src":"49681:33:48","trueBody":{"expression":{"id":16228,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16226,"name":"d1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16205,"src":"49707:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"37","id":16227,"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":16229,"nodeType":"ExpressionStatement","src":"49707:7:48"}},{"expression":{"id":16238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16231,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16187,"src":"49725:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16233,"indexExpression":{"hexValue":"30","id":16232,"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":16236,"name":"d0","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16194,"src":"49740:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16235,"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":16234,"name":"bytes1","nodeType":"ElementaryTypeName","src":"49733:6:48","typeDescriptions":{}}},"id":16237,"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":16239,"nodeType":"ExpressionStatement","src":"49725:18:48"},{"expression":{"id":16247,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16240,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16187,"src":"49754:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16242,"indexExpression":{"hexValue":"31","id":16241,"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":16245,"name":"d1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16205,"src":"49769:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16244,"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":16243,"name":"bytes1","nodeType":"ElementaryTypeName","src":"49762:6:48","typeDescriptions":{}}},"id":16246,"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":16248,"nodeType":"ExpressionStatement","src":"49754:18:48"},{"expression":{"arguments":[{"id":16251,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16187,"src":"49797:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16250,"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":16249,"name":"string","nodeType":"ElementaryTypeName","src":"49790:6:48","typeDescriptions":{}}},"id":16252,"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":16185,"id":16253,"nodeType":"Return","src":"49783:17:48"}]},"documentation":{"id":16179,"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":16255,"implemented":true,"kind":"function","modifiers":[],"name":"toHexString","nameLocation":"49420:11:48","nodeType":"FunctionDefinition","parameters":{"id":16182,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16181,"mutability":"mutable","name":"_u","nameLocation":"49438:2:48","nodeType":"VariableDeclaration","scope":16255,"src":"49432:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16180,"name":"uint8","nodeType":"ElementaryTypeName","src":"49432:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"49431:10:48"},"returnParameters":{"id":16185,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16184,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16255,"src":"49483:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16183,"name":"string","nodeType":"ElementaryTypeName","src":"49483:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"49482:15:48"},"scope":16619,"src":"49411:397:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16406,"nodeType":"Block","src":"50048:626:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16263,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"50063:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3130","id":16264,"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":16295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16293,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"50216:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"313030","id":16294,"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":16403,"nodeType":"Block","src":"50421:246:48","statements":[{"assignments":[16342],"declarations":[{"constant":false,"id":16342,"mutability":"mutable","name":"b3","nameLocation":"50449:2:48","nodeType":"VariableDeclaration","scope":16403,"src":"50436:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16341,"name":"bytes","nodeType":"ElementaryTypeName","src":"50436:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16347,"initialValue":{"arguments":[{"hexValue":"33","id":16345,"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":16344,"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":16343,"name":"bytes","nodeType":"ElementaryTypeName","src":"50458:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16346,"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":16362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16348,"name":"b3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16342,"src":"50481:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16350,"indexExpression":{"hexValue":"30","id":16349,"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":16360,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16357,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16355,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"50502:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"313030","id":16356,"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":16354,"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":16353,"name":"uint8","nodeType":"ElementaryTypeName","src":"50496:5:48","typeDescriptions":{}}},"id":16358,"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":16359,"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":16352,"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":16351,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50489:6:48","typeDescriptions":{}}},"id":16361,"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":16363,"nodeType":"ExpressionStatement","src":"50481:36:48"},{"expression":{"id":16380,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16364,"name":"b3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16342,"src":"50532:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16366,"indexExpression":{"hexValue":"31","id":16365,"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":16378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16375,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16371,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"50553:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"313030","id":16372,"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":16374,"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":16370,"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":16369,"name":"uint8","nodeType":"ElementaryTypeName","src":"50547:5:48","typeDescriptions":{}}},"id":16376,"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":16377,"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":16368,"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":16367,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50540:6:48","typeDescriptions":{}}},"id":16379,"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":16381,"nodeType":"ExpressionStatement","src":"50532:41:48"},{"expression":{"id":16396,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16382,"name":"b3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16342,"src":"50588:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16384,"indexExpression":{"hexValue":"32","id":16383,"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":16394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16389,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"50609:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"3130","id":16390,"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":16388,"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":16387,"name":"uint8","nodeType":"ElementaryTypeName","src":"50603:5:48","typeDescriptions":{}}},"id":16392,"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":16393,"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":16386,"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":16385,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50596:6:48","typeDescriptions":{}}},"id":16395,"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":16397,"nodeType":"ExpressionStatement","src":"50588:35:48"},{"expression":{"arguments":[{"id":16400,"name":"b3","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16342,"src":"50652:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16399,"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":16398,"name":"string","nodeType":"ElementaryTypeName","src":"50645:6:48","typeDescriptions":{}}},"id":16401,"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":16262,"id":16402,"nodeType":"Return","src":"50638:17:48"}]},"id":16404,"nodeType":"IfStatement","src":"50212:455:48","trueBody":{"id":16340,"nodeType":"Block","src":"50226:189:48","statements":[{"assignments":[16297],"declarations":[{"constant":false,"id":16297,"mutability":"mutable","name":"b2","nameLocation":"50254:2:48","nodeType":"VariableDeclaration","scope":16340,"src":"50241:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16296,"name":"bytes","nodeType":"ElementaryTypeName","src":"50241:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16302,"initialValue":{"arguments":[{"hexValue":"32","id":16300,"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":16299,"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":16298,"name":"bytes","nodeType":"ElementaryTypeName","src":"50263:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16301,"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":16317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16303,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16297,"src":"50286:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16305,"indexExpression":{"hexValue":"30","id":16304,"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":16315,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16310,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"50307:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130","id":16311,"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":16309,"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":16308,"name":"uint8","nodeType":"ElementaryTypeName","src":"50301:5:48","typeDescriptions":{}}},"id":16313,"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":16314,"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":16307,"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":16306,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50294:6:48","typeDescriptions":{}}},"id":16316,"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":16318,"nodeType":"ExpressionStatement","src":"50286:35:48"},{"expression":{"id":16333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16319,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16297,"src":"50336:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16321,"indexExpression":{"hexValue":"31","id":16320,"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":16331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16328,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16326,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"50357:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"3130","id":16327,"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":16325,"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":16324,"name":"uint8","nodeType":"ElementaryTypeName","src":"50351:5:48","typeDescriptions":{}}},"id":16329,"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":16330,"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":16323,"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":16322,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50344:6:48","typeDescriptions":{}}},"id":16332,"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":16334,"nodeType":"ExpressionStatement","src":"50336:35:48"},{"expression":{"arguments":[{"id":16337,"name":"b2","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16297,"src":"50400:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16336,"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":16335,"name":"string","nodeType":"ElementaryTypeName","src":"50393:6:48","typeDescriptions":{}}},"id":16338,"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":16262,"id":16339,"nodeType":"Return","src":"50386:17:48"}]}},"id":16405,"nodeType":"IfStatement","src":"50059:608:48","trueBody":{"id":16292,"nodeType":"Block","src":"50072:134:48","statements":[{"assignments":[16267],"declarations":[{"constant":false,"id":16267,"mutability":"mutable","name":"b1","nameLocation":"50100:2:48","nodeType":"VariableDeclaration","scope":16292,"src":"50087:15:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16266,"name":"bytes","nodeType":"ElementaryTypeName","src":"50087:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16272,"initialValue":{"arguments":[{"hexValue":"31","id":16270,"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":16269,"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":16268,"name":"bytes","nodeType":"ElementaryTypeName","src":"50109:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16271,"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":16285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16273,"name":"b1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16267,"src":"50132:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16275,"indexExpression":{"hexValue":"30","id":16274,"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":16283,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":16280,"name":"_u","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16258,"src":"50153:2:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":16279,"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":16278,"name":"uint8","nodeType":"ElementaryTypeName","src":"50147:5:48","typeDescriptions":{}}},"id":16281,"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":16282,"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":16277,"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":16276,"name":"bytes1","nodeType":"ElementaryTypeName","src":"50140:6:48","typeDescriptions":{}}},"id":16284,"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":16286,"nodeType":"ExpressionStatement","src":"50132:30:48"},{"expression":{"arguments":[{"id":16289,"name":"b1","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16267,"src":"50191:2:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16288,"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":16287,"name":"string","nodeType":"ElementaryTypeName","src":"50184:6:48","typeDescriptions":{}}},"id":16290,"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":16262,"id":16291,"nodeType":"Return","src":"50177:17:48"}]}}]},"documentation":{"id":16256,"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":16407,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"49968:8:48","nodeType":"FunctionDefinition","parameters":{"id":16259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16258,"mutability":"mutable","name":"_u","nameLocation":"49983:2:48","nodeType":"VariableDeclaration","scope":16407,"src":"49977:8:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16257,"name":"uint8","nodeType":"ElementaryTypeName","src":"49977:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"49976:10:48"},"returnParameters":{"id":16262,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16261,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16407,"src":"50028:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16260,"name":"string","nodeType":"ElementaryTypeName","src":"50028:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"50027:15:48"},"scope":16619,"src":"49959:715:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16498,"nodeType":"Block","src":"50843:448:48","statements":[{"assignments":[16416],"declarations":[{"constant":false,"id":16416,"mutability":"mutable","name":"maxlength","nameLocation":"50859:9:48","nodeType":"VariableDeclaration","scope":16498,"src":"50854:14:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16415,"name":"uint","nodeType":"ElementaryTypeName","src":"50854:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16418,"initialValue":{"hexValue":"313030","id":16417,"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":[16420],"declarations":[{"constant":false,"id":16420,"mutability":"mutable","name":"reversed","nameLocation":"50898:8:48","nodeType":"VariableDeclaration","scope":16498,"src":"50885:21:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16419,"name":"bytes","nodeType":"ElementaryTypeName","src":"50885:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16425,"initialValue":{"arguments":[{"id":16423,"name":"maxlength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16416,"src":"50919:9:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16422,"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":16421,"name":"bytes","nodeType":"ElementaryTypeName","src":"50913:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16424,"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":[16427],"declarations":[{"constant":false,"id":16427,"mutability":"mutable","name":"i","nameLocation":"50945:1:48","nodeType":"VariableDeclaration","scope":16498,"src":"50940:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16426,"name":"uint","nodeType":"ElementaryTypeName","src":"50940:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16429,"initialValue":{"hexValue":"30","id":16428,"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":16457,"nodeType":"Block","src":"50964:137:48","statements":[{"assignments":[16431],"declarations":[{"constant":false,"id":16431,"mutability":"mutable","name":"remainder","nameLocation":"50985:9:48","nodeType":"VariableDeclaration","scope":16457,"src":"50979:15:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16430,"name":"uint8","nodeType":"ElementaryTypeName","src":"50979:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":16438,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16436,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16434,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16410,"src":"51003:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"3130","id":16435,"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":16433,"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":16432,"name":"uint8","nodeType":"ElementaryTypeName","src":"50997:5:48","typeDescriptions":{}}},"id":16437,"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":16443,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16439,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16410,"src":"51025:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16442,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16440,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16410,"src":"51029:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"3130","id":16441,"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":16444,"nodeType":"ExpressionStatement","src":"51025:10:48"},{"expression":{"id":16455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16445,"name":"reversed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16420,"src":"51050:8:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16448,"indexExpression":{"id":16447,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"51059:4:48","subExpression":{"id":16446,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16427,"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":16453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3438","id":16451,"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":16452,"name":"remainder","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16431,"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":16450,"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":16449,"name":"bytes1","nodeType":"ElementaryTypeName","src":"51067:6:48","typeDescriptions":{}}},"id":16454,"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":16456,"nodeType":"ExpressionStatement","src":"51050:39:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16460,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16458,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16410,"src":"51109:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":16459,"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":16461,"nodeType":"DoWhileStatement","src":"50961:156:48"},{"assignments":[16463],"declarations":[{"constant":false,"id":16463,"mutability":"mutable","name":"buf","nameLocation":"51140:3:48","nodeType":"VariableDeclaration","scope":16498,"src":"51127:16:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16462,"name":"bytes","nodeType":"ElementaryTypeName","src":"51127:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16468,"initialValue":{"arguments":[{"id":16466,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16427,"src":"51156:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16465,"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":16464,"name":"bytes","nodeType":"ElementaryTypeName","src":"51150:5:48","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16467,"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":16491,"nodeType":"Block","src":"51200:55:48","statements":[{"expression":{"id":16489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16479,"name":"buf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16463,"src":"51215:3:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16483,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16480,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16470,"src":"51219:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":16481,"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":16484,"name":"reversed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16420,"src":"51228:8:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16488,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16487,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16485,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16427,"src":"51237:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":16486,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16470,"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":16490,"nodeType":"ExpressionStatement","src":"51215:28:48"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16475,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16473,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16470,"src":"51186:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":16474,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16427,"src":"51191:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"51186:6:48","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16492,"initializationExpression":{"assignments":[16470],"declarations":[{"constant":false,"id":16470,"mutability":"mutable","name":"j","nameLocation":"51179:1:48","nodeType":"VariableDeclaration","scope":16492,"src":"51174:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16469,"name":"uint","nodeType":"ElementaryTypeName","src":"51174:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16472,"initialValue":{"hexValue":"31","id":16471,"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":16477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"51194:4:48","subExpression":{"id":16476,"name":"j","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16470,"src":"51194:1:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16478,"nodeType":"ExpressionStatement","src":"51194:4:48"},"nodeType":"ForStatement","src":"51169:86:48"},{"expression":{"arguments":[{"id":16495,"name":"buf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16463,"src":"51279:3:48","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":16494,"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":16493,"name":"string","nodeType":"ElementaryTypeName","src":"51272:6:48","typeDescriptions":{}}},"id":16496,"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":16414,"id":16497,"nodeType":"Return","src":"51265:18:48"}]},"documentation":{"id":16408,"nodeType":"StructuredDocumentation","src":"50682:67:48","text":"@notice Convert a `uint` into a string` representing its value."},"id":16499,"implemented":true,"kind":"function","modifiers":[],"name":"toString","nameLocation":"50764:8:48","nodeType":"FunctionDefinition","parameters":{"id":16411,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16410,"mutability":"mutable","name":"v","nameLocation":"50778:1:48","nodeType":"VariableDeclaration","scope":16499,"src":"50773:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16409,"name":"uint","nodeType":"ElementaryTypeName","src":"50773:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"50772:8:48"},"returnParameters":{"id":16414,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16413,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16499,"src":"50823:13:48","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":16412,"name":"string","nodeType":"ElementaryTypeName","src":"50823:6:48","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"50822:15:48"},"scope":16619,"src":"50755:536:48","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16555,"nodeType":"Block","src":"51613:426:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":16513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16507,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16502,"src":"51628:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30783330","id":16508,"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":16512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16510,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16502,"src":"51647:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"30783339","id":16511,"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":16525,"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":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16502,"src":"51740:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30783431","id":16520,"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":16524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16522,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16502,"src":"51759:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"30783436","id":16523,"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":16539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16533,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16502,"src":"51859:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30783631","id":16534,"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":16538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16536,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16502,"src":"51878:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"30783636","id":16537,"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":16551,"nodeType":"Block","src":"51974:58:48","statements":[{"expression":{"arguments":[{"hexValue":"496e76616c69642068657820636861726163746572","id":16548,"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":16547,"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":16549,"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":16550,"nodeType":"ExpressionStatement","src":"51989:31:48"}]},"id":16552,"nodeType":"IfStatement","src":"51855:177:48","trueBody":{"id":16546,"nodeType":"Block","src":"51895:73:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16544,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16542,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16540,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16502,"src":"51917:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"30783631","id":16541,"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":16543,"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":16506,"id":16545,"nodeType":"Return","src":"51910:26:48"}]}},"id":16553,"nodeType":"IfStatement","src":"51736:296:48","trueBody":{"id":16532,"nodeType":"Block","src":"51776:73:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16530,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16526,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16502,"src":"51798:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"30783431","id":16527,"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":16529,"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":16506,"id":16531,"nodeType":"Return","src":"51791:26:48"}]}},"id":16554,"nodeType":"IfStatement","src":"51624:408:48","trueBody":{"id":16518,"nodeType":"Block","src":"51664:66:48","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16516,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16514,"name":"hexChar","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16502,"src":"51686:7:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"30783330","id":16515,"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":16506,"id":16517,"nodeType":"Return","src":"51679:21:48"}]}}]},"documentation":{"id":16500,"nodeType":"StructuredDocumentation","src":"51301:238:48","text":"===============================================================================================================\n --- Witnet library private methods ----------------------------------------------------------------------------"},"id":16556,"implemented":true,"kind":"function","modifiers":[],"name":"_hexCharToByte","nameLocation":"51554:14:48","nodeType":"FunctionDefinition","parameters":{"id":16503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16502,"mutability":"mutable","name":"hexChar","nameLocation":"51575:7:48","nodeType":"VariableDeclaration","scope":16556,"src":"51569:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16501,"name":"uint8","nodeType":"ElementaryTypeName","src":"51569:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"51568:15:48"},"returnParameters":{"id":16506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16505,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16556,"src":"51606:5:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16504,"name":"uint8","nodeType":"ElementaryTypeName","src":"51606:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"51605:7:48"},"scope":16619,"src":"51545:494:48","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":16566,"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":"shanghai","externalReferences":[{"declaration":16558,"isOffset":false,"isSlot":false,"src":"52176:2:48","valueSize":1},{"declaration":16560,"isOffset":false,"isSlot":false,"src":"52206:2:48","valueSize":1},{"declaration":16563,"isOffset":false,"isSlot":false,"src":"52223:5:48","valueSize":1}],"id":16565,"nodeType":"InlineAssembly","src":"52140:123:48"}]},"id":16567,"implemented":true,"kind":"function","modifiers":[],"name":"_merkleHash","nameLocation":"52056:11:48","nodeType":"FunctionDefinition","parameters":{"id":16561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16558,"mutability":"mutable","name":"_a","nameLocation":"52076:2:48","nodeType":"VariableDeclaration","scope":16567,"src":"52068:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16557,"name":"bytes32","nodeType":"ElementaryTypeName","src":"52068:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":16560,"mutability":"mutable","name":"_b","nameLocation":"52088:2:48","nodeType":"VariableDeclaration","scope":16567,"src":"52080:10:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16559,"name":"bytes32","nodeType":"ElementaryTypeName","src":"52080:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"52067:24:48"},"returnParameters":{"id":16564,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16563,"mutability":"mutable","name":"_hash","nameLocation":"52122:5:48","nodeType":"VariableDeclaration","scope":16567,"src":"52114:13:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16562,"name":"bytes32","nodeType":"ElementaryTypeName","src":"52114:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"52113:15:48"},"scope":16619,"src":"52047:223:48","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":16591,"nodeType":"Block","src":"52342:81:48","statements":[{"expression":{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16574,"name":"_uint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16569,"src":"52360:6:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3130","id":16575,"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":16587,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16585,"name":"_uint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16569,"src":"52403:6:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3837","id":16586,"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":16584,"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":16583,"name":"bytes1","nodeType":"ElementaryTypeName","src":"52396:6:48","typeDescriptions":{}}},"id":16588,"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":16589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"52360:55:48","trueExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":16581,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16579,"name":"_uint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16569,"src":"52381:6:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3438","id":16580,"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":16578,"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":16577,"name":"bytes1","nodeType":"ElementaryTypeName","src":"52374:6:48","typeDescriptions":{}}},"id":16582,"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":16573,"id":16590,"nodeType":"Return","src":"52353:62:48"}]},"id":16592,"implemented":true,"kind":"function","modifiers":[],"name":"_toHexChar","nameLocation":"52287:10:48","nodeType":"FunctionDefinition","parameters":{"id":16570,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16569,"mutability":"mutable","name":"_uint8","nameLocation":"52304:6:48","nodeType":"VariableDeclaration","scope":16592,"src":"52298:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":16568,"name":"uint8","nodeType":"ElementaryTypeName","src":"52298:5:48","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"52297:14:48"},"returnParameters":{"id":16573,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16572,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16592,"src":"52334:6:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":16571,"name":"bytes1","nodeType":"ElementaryTypeName","src":"52334:6:48","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"52333:8:48"},"scope":16619,"src":"52278:145:48","stateMutability":"pure","virtual":false,"visibility":"private"},{"body":{"id":16617,"nodeType":"Block","src":"52603:204:48","statements":[{"body":{"id":16615,"nodeType":"Block","src":"52637:163:48","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":16607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":16603,"name":"_bytes32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16595,"src":"52656:8:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"id":16605,"indexExpression":{"id":16604,"name":"_length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16598,"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":16606,"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":16610,"nodeType":"IfStatement","src":"52652:68:48","trueBody":{"id":16609,"nodeType":"Block","src":"52680:40:48","statements":[{"id":16608,"nodeType":"Break","src":"52699:5:48"}]}},{"id":16614,"nodeType":"UncheckedBlock","src":"52734:55:48","statements":[{"expression":{"id":16612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"52763:10:48","subExpression":{"id":16611,"name":"_length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16598,"src":"52763:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16613,"nodeType":"ExpressionStatement","src":"52763:10:48"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16602,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16600,"name":"_length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16598,"src":"52621:7:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3332","id":16601,"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":16616,"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"52614:186:48"}]},"documentation":{"id":16593,"nodeType":"StructuredDocumentation","src":"52431:64:48","text":"@dev Calculate length of string-equivalent to given bytes32."},"id":16618,"implemented":true,"kind":"function","modifiers":[],"name":"_toStringLength","nameLocation":"52510:15:48","nodeType":"FunctionDefinition","parameters":{"id":16596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16595,"mutability":"mutable","name":"_bytes32","nameLocation":"52534:8:48","nodeType":"VariableDeclaration","scope":16618,"src":"52526:16:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":16594,"name":"bytes32","nodeType":"ElementaryTypeName","src":"52526:7:48","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"52525:18:48"},"returnParameters":{"id":16599,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16598,"mutability":"mutable","name":"_length","nameLocation":"52589:7:48","nodeType":"VariableDeclaration","scope":16618,"src":"52584:12:48","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16597,"name":"uint","nodeType":"ElementaryTypeName","src":"52584:4:48","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"52583:14:48"},"scope":16619,"src":"52501:306:48","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":16620,"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":[18509]},"id":18510,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":16621,"literals":["solidity",">=","0.8",".0","<","0.9",".0"],"nodeType":"PragmaDirective","src":"35:31:49"},{"abstract":false,"baseContracts":[],"canonicalName":"WitnetBuffer","contractDependencies":[],"contractKind":"library","documentation":{"id":16622,"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":18509,"linearizedBaseContracts":[18509],"name":"WitnetBuffer","nameLocation":"652:12:49","nodeType":"ContractDefinition","nodes":[{"errorSelector":"240db51c","id":16624,"name":"EmptyBuffer","nameLocation":"678:11:49","nodeType":"ErrorDefinition","parameters":{"id":16623,"nodeType":"ParameterList","parameters":[],"src":"689:2:49"},"src":"672:20:49"},{"errorSelector":"63a056dd","id":16630,"name":"IndexOutOfBounds","nameLocation":"702:16:49","nodeType":"ErrorDefinition","parameters":{"id":16629,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16626,"mutability":"mutable","name":"index","nameLocation":"724:5:49","nodeType":"VariableDeclaration","scope":16630,"src":"719:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16625,"name":"uint","nodeType":"ElementaryTypeName","src":"719:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16628,"mutability":"mutable","name":"range","nameLocation":"736:5:49","nodeType":"VariableDeclaration","scope":16630,"src":"731:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16627,"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":16636,"name":"MissingArgs","nameLocation":"753:11:49","nodeType":"ErrorDefinition","parameters":{"id":16635,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16632,"mutability":"mutable","name":"expected","nameLocation":"770:8:49","nodeType":"VariableDeclaration","scope":16636,"src":"765:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16631,"name":"uint","nodeType":"ElementaryTypeName","src":"765:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16634,"mutability":"mutable","name":"given","nameLocation":"785:5:49","nodeType":"VariableDeclaration","scope":16636,"src":"780:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16633,"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":16637,"nodeType":"StructuredDocumentation","src":"798:26:49","text":"Iterable bytes buffer."},"id":16642,"members":[{"constant":false,"id":16639,"mutability":"mutable","name":"data","nameLocation":"857:4:49","nodeType":"VariableDeclaration","scope":16642,"src":"851:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"},"typeName":{"id":16638,"name":"bytes","nodeType":"ElementaryTypeName","src":"851:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":16641,"mutability":"mutable","name":"cursor","nameLocation":"875:6:49","nodeType":"VariableDeclaration","scope":16642,"src":"870:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16640,"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":18509,"src":"828:59:49","visibility":"public"},{"body":{"id":16659,"nodeType":"Block","src":"993:95:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16650,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16648,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16644,"src":"1004:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":16649,"name":"_range","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16646,"src":"1012:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"1004:14:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":16657,"nodeType":"IfStatement","src":"1000:75:49","trueBody":{"id":16656,"nodeType":"Block","src":"1020:55:49","statements":[{"errorCall":{"arguments":[{"id":16652,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16644,"src":"1053:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16653,"name":"_range","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16646,"src":"1060:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16651,"name":"IndexOutOfBounds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16630,"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":16654,"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":16655,"nodeType":"RevertStatement","src":"1029:38:49"}]}},{"id":16658,"nodeType":"PlaceholderStatement","src":"1081:1:49"}]},"id":16660,"name":"withinRange","nameLocation":"956:11:49","nodeType":"ModifierDefinition","parameters":{"id":16647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16644,"mutability":"mutable","name":"index","nameLocation":"973:5:49","nodeType":"VariableDeclaration","scope":16660,"src":"968:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16643,"name":"uint","nodeType":"ElementaryTypeName","src":"968:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16646,"mutability":"mutable","name":"_range","nameLocation":"985:6:49","nodeType":"VariableDeclaration","scope":16660,"src":"980:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16645,"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":16708,"nodeType":"Block","src":"1327:1316:49","statements":[{"id":16707,"nodeType":"UncheckedBlock","src":"1334:1304:49","statements":[{"assignments":[16670],"declarations":[{"constant":false,"id":16670,"mutability":"mutable","name":"destinationPointer","nameLocation":"1358:18:49","nodeType":"VariableDeclaration","scope":16707,"src":"1353:23:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16669,"name":"uint","nodeType":"ElementaryTypeName","src":"1353:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16671,"nodeType":"VariableDeclarationStatement","src":"1353:23:49"},{"assignments":[16673],"declarations":[{"constant":false,"id":16673,"mutability":"mutable","name":"destinationLength","nameLocation":"1390:17:49","nodeType":"VariableDeclaration","scope":16707,"src":"1385:22:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16672,"name":"uint","nodeType":"ElementaryTypeName","src":"1385:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16674,"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":"shanghai","externalReferences":[{"declaration":16670,"isOffset":false,"isSlot":false,"src":"1550:18:49","valueSize":1},{"declaration":16667,"isOffset":false,"isSlot":false,"src":"1474:6:49","valueSize":1},{"declaration":16667,"isOffset":false,"isSlot":false,"src":"1576:6:49","valueSize":1}],"id":16675,"nodeType":"InlineAssembly","src":"1416:180:49"},{"body":{"id":16704,"nodeType":"Block","src":"1656:768:49","statements":[{"assignments":[16688],"declarations":[{"constant":false,"id":16688,"mutability":"mutable","name":"source","nameLocation":"1674:6:49","nodeType":"VariableDeclaration","scope":16704,"src":"1669:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16687,"name":"uint","nodeType":"ElementaryTypeName","src":"1669:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16689,"nodeType":"VariableDeclarationStatement","src":"1669:11:49"},{"assignments":[16691],"declarations":[{"constant":false,"id":16691,"mutability":"mutable","name":"sourceLength","nameLocation":"1696:12:49","nodeType":"VariableDeclaration","scope":16704,"src":"1691:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16690,"name":"uint","nodeType":"ElementaryTypeName","src":"1691:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16692,"nodeType":"VariableDeclarationStatement","src":"1691:17:49"},{"assignments":[16694],"declarations":[{"constant":false,"id":16694,"mutability":"mutable","name":"sourcePointer","nameLocation":"1724:13:49","nodeType":"VariableDeclaration","scope":16704,"src":"1719:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16693,"name":"uint","nodeType":"ElementaryTypeName","src":"1719:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16695,"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":"shanghai","externalReferences":[{"declaration":16664,"isOffset":false,"isSlot":false,"src":"1839:6:49","valueSize":1},{"declaration":16677,"isOffset":false,"isSlot":false,"src":"1851:2:49","valueSize":1},{"declaration":16688,"isOffset":false,"isSlot":false,"src":"1819:6:49","valueSize":1},{"declaration":16688,"isOffset":false,"isSlot":false,"src":"1927:6:49","valueSize":1},{"declaration":16688,"isOffset":false,"isSlot":false,"src":"2008:6:49","valueSize":1},{"declaration":16691,"isOffset":false,"isSlot":false,"src":"1905:12:49","valueSize":1},{"declaration":16694,"isOffset":false,"isSlot":false,"src":"1987:13:49","valueSize":1}],"id":16696,"nodeType":"InlineAssembly","src":"1756:274:49"},{"expression":{"arguments":[{"id":16698,"name":"destinationPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16670,"src":"2059:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16699,"name":"sourcePointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16694,"src":"2090:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16700,"name":"sourceLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16691,"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":16697,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18508,"src":"2040:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":16701,"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":16702,"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":"shanghai","externalReferences":[{"declaration":16673,"isOffset":false,"isSlot":false,"src":"2230:17:49","valueSize":1},{"declaration":16673,"isOffset":false,"isSlot":false,"src":"2255:17:49","valueSize":1},{"declaration":16670,"isOffset":false,"isSlot":false,"src":"2345:18:49","valueSize":1},{"declaration":16670,"isOffset":false,"isSlot":false,"src":"2371:18:49","valueSize":1},{"declaration":16691,"isOffset":false,"isSlot":false,"src":"2274:12:49","valueSize":1},{"declaration":16691,"isOffset":false,"isSlot":false,"src":"2391:12:49","valueSize":1}],"id":16703,"nodeType":"InlineAssembly","src":"2150:265:49"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16683,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16680,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16677,"src":"1628:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":16681,"name":"_buffs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16664,"src":"1634:6:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":16682,"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":16705,"initializationExpression":{"assignments":[16677],"declarations":[{"constant":false,"id":16677,"mutability":"mutable","name":"ix","nameLocation":"1620:2:49","nodeType":"VariableDeclaration","scope":16705,"src":"1615:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16676,"name":"uint","nodeType":"ElementaryTypeName","src":"1615:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16679,"initialValue":{"hexValue":"31","id":16678,"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":16685,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"1649:5:49","subExpression":{"id":16684,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16677,"src":"1649:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":16686,"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":"shanghai","externalReferences":[{"declaration":16673,"isOffset":false,"isSlot":false,"src":"2500:17:49","valueSize":1},{"declaration":16673,"isOffset":false,"isSlot":false,"src":"2598:17:49","valueSize":1},{"declaration":16667,"isOffset":false,"isSlot":false,"src":"2492:6:49","valueSize":1}],"id":16706,"nodeType":"InlineAssembly","src":"2432:199:49"}]}]},"documentation":{"id":16661,"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":16709,"implemented":true,"kind":"function","modifiers":[],"name":"concat","nameLocation":"1240:6:49","nodeType":"FunctionDefinition","parameters":{"id":16665,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16664,"mutability":"mutable","name":"_buffs","nameLocation":"1262:6:49","nodeType":"VariableDeclaration","scope":16709,"src":"1247:21:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":16662,"name":"bytes","nodeType":"ElementaryTypeName","src":"1247:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":16663,"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":16668,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16667,"mutability":"mutable","name":"output","nameLocation":"1316:6:49","nodeType":"VariableDeclaration","scope":16709,"src":"1303:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16666,"name":"bytes","nodeType":"ElementaryTypeName","src":"1303:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"1302:21:49"},"scope":18509,"src":"1231:1412:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16725,"nodeType":"Block","src":"2762:75:49","statements":[{"expression":{"arguments":[{"expression":{"id":16719,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16712,"src":"2791:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16720,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2798:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"2791:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"expression":{"id":16721,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16712,"src":"2811:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16722,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2818:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"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":16718,"name":"Buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16642,"src":"2776:6:49","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Buffer_$16642_storage_ptr_$","typeString":"type(struct WitnetBuffer.Buffer storage pointer)"}},"id":16723,"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_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"functionReturnParameters":16717,"id":16724,"nodeType":"Return","src":"2769:62:49"}]},"id":16726,"implemented":true,"kind":"function","modifiers":[],"name":"fork","nameLocation":"2658:4:49","nodeType":"FunctionDefinition","parameters":{"id":16713,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16712,"mutability":"mutable","name":"buffer","nameLocation":"2690:6:49","nodeType":"VariableDeclaration","scope":16726,"src":"2663:33:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16711,"nodeType":"UserDefinedTypeName","pathNode":{"id":16710,"name":"WitnetBuffer.Buffer","nameLocations":["2663:12:49","2676:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"2663:19:49"},"referencedDeclaration":16642,"src":"2663:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"2662:35:49"},"returnParameters":{"id":16717,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16716,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16726,"src":"2731:26:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16715,"nodeType":"UserDefinedTypeName","pathNode":{"id":16714,"name":"WitnetBuffer.Buffer","nameLocations":["2731:12:49","2744:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"2731:19:49"},"referencedDeclaration":16642,"src":"2731:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"2730:28:49"},"scope":18509,"src":"2649:188:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16803,"nodeType":"Block","src":"3042:310:49","statements":[{"assignments":[16751],"declarations":[{"constant":false,"id":16751,"mutability":"mutable","name":"parts","nameLocation":"3064:5:49","nodeType":"VariableDeclaration","scope":16803,"src":"3049:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes[]"},"typeName":{"baseType":{"id":16749,"name":"bytes","nodeType":"ElementaryTypeName","src":"3049:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":16750,"nodeType":"ArrayTypeName","src":"3049:7:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}},"visibility":"internal"}],"id":16757,"initialValue":{"arguments":[{"hexValue":"33","id":16755,"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":16754,"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":16752,"name":"bytes","nodeType":"ElementaryTypeName","src":"3076:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"id":16753,"nodeType":"ArrayTypeName","src":"3076:7:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_storage_$dyn_storage_ptr","typeString":"bytes[]"}}},"id":16756,"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":16767,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16758,"name":"parts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16751,"src":"3093:5:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":16760,"indexExpression":{"hexValue":"30","id":16759,"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":16762,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16729,"src":"3117:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"hexValue":"30","id":16763,"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":16764,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16729,"src":"3142:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16765,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3149:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"3142:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16761,"name":"peek","nodeType":"Identifier","overloadedDeclarations":[16876,16904],"referencedDeclaration":16876,"src":"3104:4:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256,uint256) pure returns (bytes memory)"}},"id":16766,"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":16768,"nodeType":"ExpressionStatement","src":"3093:69:49"},{"expression":{"id":16773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16769,"name":"parts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16751,"src":"3169:5:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":16771,"indexExpression":{"hexValue":"31","id":16770,"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":16772,"name":"pokes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16733,"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":16774,"nodeType":"ExpressionStatement","src":"3169:16:49"},{"expression":{"id":16793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":16775,"name":"parts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16751,"src":"3192:5:49","typeDescriptions":{"typeIdentifier":"t_array$_t_bytes_memory_ptr_$dyn_memory_ptr","typeString":"bytes memory[] memory"}},"id":16777,"indexExpression":{"hexValue":"32","id":16776,"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":16779,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16729,"src":"3216:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":16780,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16729,"src":"3231:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16781,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3238:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"3231:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":16782,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16731,"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":16791,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16789,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":16784,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16729,"src":"3262:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16785,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3269:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"3262:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16786,"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":16787,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16729,"src":"3283:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16788,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3290:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"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":16790,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16731,"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_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16778,"name":"peek","nodeType":"Identifier","overloadedDeclarations":[16876,16904],"referencedDeclaration":16876,"src":"3203:4:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256,uint256) pure returns (bytes memory)"}},"id":16792,"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":16794,"nodeType":"ExpressionStatement","src":"3192:120:49"},{"expression":{"id":16801,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":16795,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16729,"src":"3319:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16797,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3326:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"3319:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16799,"name":"parts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16751,"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":16798,"name":"concat","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16709,"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":16800,"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":16802,"nodeType":"ExpressionStatement","src":"3319:27:49"}]},"id":16804,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":16736,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16731,"src":"2991:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16744,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16742,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":16737,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16729,"src":"2999:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16738,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3006:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"2999:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16739,"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":16740,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16729,"src":"3020:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16741,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3027:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"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":16743,"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":16745,"kind":"modifierInvocation","modifierName":{"id":16735,"name":"withinRange","nameLocations":["2979:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"2979:11:49"},"nodeType":"ModifierInvocation","src":"2979:59:49"}],"name":"mutate","nameLocation":"2852:6:49","nodeType":"FunctionDefinition","parameters":{"id":16734,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16729,"mutability":"mutable","name":"buffer","nameLocation":"2894:6:49","nodeType":"VariableDeclaration","scope":16804,"src":"2867:33:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16728,"nodeType":"UserDefinedTypeName","pathNode":{"id":16727,"name":"WitnetBuffer.Buffer","nameLocations":["2867:12:49","2880:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"2867:19:49"},"referencedDeclaration":16642,"src":"2867:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":16731,"mutability":"mutable","name":"length","nameLocation":"2914:6:49","nodeType":"VariableDeclaration","scope":16804,"src":"2909:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16730,"name":"uint","nodeType":"ElementaryTypeName","src":"2909:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16733,"mutability":"mutable","name":"pokes","nameLocation":"2942:5:49","nodeType":"VariableDeclaration","scope":16804,"src":"2929:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16732,"name":"bytes","nodeType":"ElementaryTypeName","src":"2929:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2858:96:49"},"returnParameters":{"id":16746,"nodeType":"ParameterList","parameters":[],"src":"3042:0:49"},"scope":18509,"src":"2843:509:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16827,"nodeType":"Block","src":"3677:145:49","statements":[{"expression":{"baseExpression":{"expression":{"id":16820,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16808,"src":"3787:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16821,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3794:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"3787:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16825,"indexExpression":{"id":16824,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3799:16:49","subExpression":{"expression":{"id":16822,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16808,"src":"3799:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16823,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"3806:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"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":16819,"id":16826,"nodeType":"Return","src":"3780:36:49"}]},"documentation":{"id":16805,"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":16828,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"expression":{"id":16811,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16808,"src":"3617:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16812,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3624:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"3617:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":16813,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16808,"src":"3632:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16814,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3639:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"3632:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16815,"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":16816,"kind":"modifierInvocation","modifierName":{"id":16810,"name":"withinRange","nameLocations":["3605:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"3605:11:49"},"nodeType":"ModifierInvocation","src":"3605:46:49"}],"name":"next","nameLocation":"3554:4:49","nodeType":"FunctionDefinition","parameters":{"id":16809,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16808,"mutability":"mutable","name":"buffer","nameLocation":"3573:6:49","nodeType":"VariableDeclaration","scope":16828,"src":"3559:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16807,"nodeType":"UserDefinedTypeName","pathNode":{"id":16806,"name":"Buffer","nameLocations":["3559:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"3559:6:49"},"referencedDeclaration":16642,"src":"3559:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"3558:22:49"},"returnParameters":{"id":16819,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16818,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16828,"src":"3666:6:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"typeName":{"id":16817,"name":"bytes1","nodeType":"ElementaryTypeName","src":"3666:6:49","typeDescriptions":{"typeIdentifier":"t_bytes1","typeString":"bytes1"}},"visibility":"internal"}],"src":"3665:8:49"},"scope":18509,"src":"3545:277:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16875,"nodeType":"Block","src":"4035:365:49","statements":[{"assignments":[16849],"declarations":[{"constant":false,"id":16849,"mutability":"mutable","name":"data","nameLocation":"4055:4:49","nodeType":"VariableDeclaration","scope":16875,"src":"4042:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16848,"name":"bytes","nodeType":"ElementaryTypeName","src":"4042:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16852,"initialValue":{"expression":{"id":16850,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16831,"src":"4062:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16851,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4069:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"4062:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"4042:31:49"},{"assignments":[16854],"declarations":[{"constant":false,"id":16854,"mutability":"mutable","name":"peeks","nameLocation":"4093:5:49","nodeType":"VariableDeclaration","scope":16875,"src":"4080:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16853,"name":"bytes","nodeType":"ElementaryTypeName","src":"4080:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16859,"initialValue":{"arguments":[{"id":16857,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16835,"src":"4111:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16856,"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":16855,"name":"bytes","nodeType":"ElementaryTypeName","src":"4105:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16858,"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":[16861],"declarations":[{"constant":false,"id":16861,"mutability":"mutable","name":"destinationPointer","nameLocation":"4130:18:49","nodeType":"VariableDeclaration","scope":16875,"src":"4125:23:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16860,"name":"uint","nodeType":"ElementaryTypeName","src":"4125:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16862,"nodeType":"VariableDeclarationStatement","src":"4125:23:49"},{"assignments":[16864],"declarations":[{"constant":false,"id":16864,"mutability":"mutable","name":"sourcePointer","nameLocation":"4160:13:49","nodeType":"VariableDeclaration","scope":16875,"src":"4155:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16863,"name":"uint","nodeType":"ElementaryTypeName","src":"4155:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16865,"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":"shanghai","externalReferences":[{"declaration":16849,"isOffset":false,"isSlot":false,"src":"4267:4:49","valueSize":1},{"declaration":16861,"isOffset":false,"isSlot":false,"src":"4198:18:49","valueSize":1},{"declaration":16833,"isOffset":false,"isSlot":false,"src":"4278:6:49","valueSize":1},{"declaration":16854,"isOffset":false,"isSlot":false,"src":"4224:5:49","valueSize":1},{"declaration":16864,"isOffset":false,"isSlot":false,"src":"4242:13:49","valueSize":1}],"id":16866,"nodeType":"InlineAssembly","src":"4180:112:49"},{"expression":{"arguments":[{"id":16868,"name":"destinationPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16861,"src":"4313:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16869,"name":"sourcePointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16864,"src":"4340:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16870,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16835,"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":16867,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18508,"src":"4298:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":16871,"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":16872,"nodeType":"ExpressionStatement","src":"4298:77:49"},{"expression":{"id":16873,"name":"peeks","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16854,"src":"4389:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":16847,"id":16874,"nodeType":"Return","src":"4382:12:49"}]},"id":16876,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16840,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16838,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16833,"src":"3967:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":16839,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16835,"src":"3976:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"3967:15:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":16841,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16831,"src":"3984:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16842,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3991:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"3984:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16843,"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":16844,"kind":"modifierInvocation","modifierName":{"id":16837,"name":"withinRange","nameLocations":["3955:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"3955:11:49"},"nodeType":"ModifierInvocation","src":"3955:48:49"}],"name":"peek","nameLocation":"3837:4:49","nodeType":"FunctionDefinition","parameters":{"id":16836,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16831,"mutability":"mutable","name":"buffer","nameLocation":"3877:6:49","nodeType":"VariableDeclaration","scope":16876,"src":"3850:33:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16830,"nodeType":"UserDefinedTypeName","pathNode":{"id":16829,"name":"WitnetBuffer.Buffer","nameLocations":["3850:12:49","3863:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"3850:19:49"},"referencedDeclaration":16642,"src":"3850:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":16833,"mutability":"mutable","name":"offset","nameLocation":"3897:6:49","nodeType":"VariableDeclaration","scope":16876,"src":"3892:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16832,"name":"uint","nodeType":"ElementaryTypeName","src":"3892:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":16835,"mutability":"mutable","name":"length","nameLocation":"3917:6:49","nodeType":"VariableDeclaration","scope":16876,"src":"3912:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16834,"name":"uint","nodeType":"ElementaryTypeName","src":"3912:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"3841:89:49"},"returnParameters":{"id":16847,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16846,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16876,"src":"4018:12:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16845,"name":"bytes","nodeType":"ElementaryTypeName","src":"4018:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4017:14:49"},"scope":18509,"src":"3828:572:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16903,"nodeType":"Block","src":"4840:83:49","statements":[{"expression":{"arguments":[{"id":16897,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16880,"src":"4867:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":16898,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16880,"src":"4882:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16899,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4889:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"4882:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16900,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16882,"src":"4904:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16896,"name":"peek","nodeType":"Identifier","overloadedDeclarations":[16876,16904],"referencedDeclaration":16876,"src":"4854:4:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint256_$_t_uint256_$returns$_t_bytes_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256,uint256) pure returns (bytes memory)"}},"id":16901,"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":16895,"id":16902,"nodeType":"Return","src":"4847:70:49"}]},"documentation":{"id":16877,"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":16904,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":16885,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16882,"src":"4765:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16891,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":16886,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16880,"src":"4773:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16887,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4780:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"4773:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16888,"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":16889,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16880,"src":"4794:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16890,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4801:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"4794:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"4773:34:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":16892,"kind":"modifierInvocation","modifierName":{"id":16884,"name":"withinRange","nameLocations":["4753:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"4753:11:49"},"nodeType":"ModifierInvocation","src":"4753:55:49"}],"name":"peek","nameLocation":"4655:4:49","nodeType":"FunctionDefinition","parameters":{"id":16883,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16880,"mutability":"mutable","name":"buffer","nameLocation":"4695:6:49","nodeType":"VariableDeclaration","scope":16904,"src":"4668:33:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16879,"nodeType":"UserDefinedTypeName","pathNode":{"id":16878,"name":"WitnetBuffer.Buffer","nameLocations":["4668:12:49","4681:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"4668:19:49"},"referencedDeclaration":16642,"src":"4668:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":16882,"mutability":"mutable","name":"length","nameLocation":"4715:6:49","nodeType":"VariableDeclaration","scope":16904,"src":"4710:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16881,"name":"uint","nodeType":"ElementaryTypeName","src":"4710:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"4659:69:49"},"returnParameters":{"id":16895,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16894,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":16904,"src":"4823:12:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16893,"name":"bytes","nodeType":"ElementaryTypeName","src":"4823:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"4822:14:49"},"scope":18509,"src":"4646:277:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":16965,"nodeType":"Block","src":"5417:767:49","statements":[{"expression":{"id":16929,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":16924,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16922,"src":"5478:6:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":16927,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16910,"src":"5497:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":16926,"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":16925,"name":"bytes","nodeType":"ElementaryTypeName","src":"5491:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":16928,"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":16930,"nodeType":"ExpressionStatement","src":"5478:26:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16931,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16910,"src":"5567:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":16932,"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":16964,"nodeType":"IfStatement","src":"5563:616:49","trueBody":{"id":16963,"nodeType":"Block","src":"5579:600:49","statements":[{"assignments":[16935],"declarations":[{"constant":false,"id":16935,"mutability":"mutable","name":"input","nameLocation":"5601:5:49","nodeType":"VariableDeclaration","scope":16963,"src":"5588:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16934,"name":"bytes","nodeType":"ElementaryTypeName","src":"5588:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":16938,"initialValue":{"expression":{"id":16936,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16908,"src":"5609:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16937,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5616:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"5609:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"5588:32:49"},{"assignments":[16940],"declarations":[{"constant":false,"id":16940,"mutability":"mutable","name":"offset","nameLocation":"5634:6:49","nodeType":"VariableDeclaration","scope":16963,"src":"5629:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16939,"name":"uint","nodeType":"ElementaryTypeName","src":"5629:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16943,"initialValue":{"expression":{"id":16941,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16908,"src":"5643:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16942,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5650:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"5643:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"5629:27:49"},{"assignments":[16945],"declarations":[{"constant":false,"id":16945,"mutability":"mutable","name":"sourcePointer","nameLocation":"5724:13:49","nodeType":"VariableDeclaration","scope":16963,"src":"5719:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16944,"name":"uint","nodeType":"ElementaryTypeName","src":"5719:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16946,"nodeType":"VariableDeclarationStatement","src":"5719:18:49"},{"assignments":[16948],"declarations":[{"constant":false,"id":16948,"mutability":"mutable","name":"destinationPointer","nameLocation":"5751:18:49","nodeType":"VariableDeclaration","scope":16963,"src":"5746:23:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16947,"name":"uint","nodeType":"ElementaryTypeName","src":"5746:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":16949,"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":"shanghai","externalReferences":[{"declaration":16948,"isOffset":false,"isSlot":false,"src":"5852:18:49","valueSize":1},{"declaration":16935,"isOffset":false,"isSlot":false,"src":"5823:5:49","valueSize":1},{"declaration":16940,"isOffset":false,"isSlot":false,"src":"5835:6:49","valueSize":1},{"declaration":16922,"isOffset":false,"isSlot":false,"src":"5878:6:49","valueSize":1},{"declaration":16945,"isOffset":false,"isSlot":false,"src":"5798:13:49","valueSize":1}],"id":16950,"nodeType":"InlineAssembly","src":"5778:120:49"},{"expression":{"arguments":[{"id":16952,"name":"destinationPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16948,"src":"5980:18:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16953,"name":"sourcePointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16945,"src":"6009:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":16954,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16910,"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":16951,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18508,"src":"5963:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":16955,"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":16956,"nodeType":"ExpressionStatement","src":"5963:85:49"},{"expression":{"arguments":[{"id":16958,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16908,"src":"6124:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"id":16959,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16910,"src":"6141:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":16960,"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_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":16957,"name":"seek","nodeType":"Identifier","overloadedDeclarations":[18443,18461],"referencedDeclaration":18443,"src":"6109:4:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256,bool) pure returns (uint256)"}},"id":16961,"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":16962,"nodeType":"ExpressionStatement","src":"6109:62:49"}]}}]},"documentation":{"id":16905,"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":16966,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":16916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":16913,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16908,"src":"5335:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16914,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5342:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"5335:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":16915,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16910,"src":"5351:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"5335:22:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":16917,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16908,"src":"5359:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":16918,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5366:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"5359:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":16919,"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":16920,"kind":"modifierInvocation","modifierName":{"id":16912,"name":"withinRange","nameLocations":["5323:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"5323:11:49"},"nodeType":"ModifierInvocation","src":"5323:55:49"}],"name":"read","nameLocation":"5259:4:49","nodeType":"FunctionDefinition","parameters":{"id":16911,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16908,"mutability":"mutable","name":"buffer","nameLocation":"5278:6:49","nodeType":"VariableDeclaration","scope":16966,"src":"5264:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16907,"nodeType":"UserDefinedTypeName","pathNode":{"id":16906,"name":"Buffer","nameLocations":["5264:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"5264:6:49"},"referencedDeclaration":16642,"src":"5264:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":16910,"mutability":"mutable","name":"length","nameLocation":"5291:6:49","nodeType":"VariableDeclaration","scope":16966,"src":"5286:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":16909,"name":"uint","nodeType":"ElementaryTypeName","src":"5286:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5263:35:49"},"returnParameters":{"id":16923,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16922,"mutability":"mutable","name":"output","nameLocation":"5406:6:49","nodeType":"VariableDeclaration","scope":16966,"src":"5393:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":16921,"name":"bytes","nodeType":"ElementaryTypeName","src":"5393:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"5392:21:49"},"scope":18509,"src":"5250:934:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17116,"nodeType":"Block","src":"7043:1153:49","statements":[{"assignments":[16976],"declarations":[{"constant":false,"id":16976,"mutability":"mutable","name":"value","nameLocation":"7057:5:49","nodeType":"VariableDeclaration","scope":17116,"src":"7050:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":16975,"name":"uint32","nodeType":"ElementaryTypeName","src":"7050:6:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":16980,"initialValue":{"arguments":[{"id":16978,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16970,"src":"7076:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":16977,"name":"readUint16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17615,"src":"7065:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint16_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint16)"}},"id":16979,"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":[16982],"declarations":[{"constant":false,"id":16982,"mutability":"mutable","name":"sign","nameLocation":"7127:4:49","nodeType":"VariableDeclaration","scope":17116,"src":"7120:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":16981,"name":"uint32","nodeType":"ElementaryTypeName","src":"7120:6:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":16986,"initialValue":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":16985,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16983,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16976,"src":"7134:5:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307838303030","id":16984,"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":[16988],"declarations":[{"constant":false,"id":16988,"mutability":"mutable","name":"exponent","nameLocation":"7274:8:49","nodeType":"VariableDeclaration","scope":17116,"src":"7268:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":16987,"name":"int32","nodeType":"ElementaryTypeName","src":"7268:5:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"id":17000,"initialValue":{"commonType":{"typeIdentifier":"t_int32","typeString":"int32"},"id":16999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int32","typeString":"int32"},"id":16996,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":16993,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":16991,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16976,"src":"7292:5:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307837633030","id":16992,"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":16990,"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":16989,"name":"int32","nodeType":"ElementaryTypeName","src":"7286:5:49","typeDescriptions":{}}},"id":16994,"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":16995,"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":16997,"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":16998,"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":[17002],"declarations":[{"constant":false,"id":17002,"mutability":"mutable","name":"fraction","nameLocation":"7357:8:49","nodeType":"VariableDeclaration","scope":17116,"src":"7351:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":17001,"name":"int32","nodeType":"ElementaryTypeName","src":"7351:5:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"id":17009,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":17007,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17005,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16976,"src":"7374:5:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830336666","id":17006,"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":17004,"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":17003,"name":"int32","nodeType":"ElementaryTypeName","src":"7368:5:49","typeDescriptions":{}}},"id":17008,"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":17013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17010,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16988,"src":"7456:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17012,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"7468:3:49","subExpression":{"hexValue":"3135","id":17011,"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":17021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17019,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16988,"src":"7517:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3136","id":17020,"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":17040,"nodeType":"IfStatement","src":"7513:206:49","trueBody":{"id":17039,"nodeType":"Block","src":"7533:186:49","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"5769746e65744275666665722e72656164466c6f617431363a20","id":17027,"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":17030,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17028,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16982,"src":"7636:4:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17029,"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":17032,"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":17033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"7636:30:49","trueExpression":{"hexValue":"6e65676174697665","id":17031,"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":17034,"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":17025,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"7566:3:49","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":17026,"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":17035,"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":17024,"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":17023,"name":"string","nodeType":"ElementaryTypeName","src":"7559:6:49","typeDescriptions":{}}},"id":17036,"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":17022,"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":17037,"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":17038,"nodeType":"ExpressionStatement","src":"7542:169:49"}]}},"id":17041,"nodeType":"IfStatement","src":"7452:267:49","trueBody":{"id":17018,"nodeType":"Block","src":"7473:34:49","statements":[{"expression":{"id":17016,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17014,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17002,"src":"7482:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"hexValue":"3078343030","id":17015,"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":17017,"nodeType":"ExpressionStatement","src":"7482:17:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_int32","typeString":"int32"},"id":17044,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17042,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16988,"src":"7785:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":17043,"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":17104,"nodeType":"Block","src":"7944:139:49","statements":[{"expression":{"id":17102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17073,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16973,"src":"7953:6:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17100,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17097,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17080,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17002,"src":"7986:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int32","typeString":"int32"}],"id":17079,"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":17078,"name":"int","nodeType":"ElementaryTypeName","src":"7982:3:49","typeDescriptions":{}}},"id":17081,"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":17082,"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":17095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17086,"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":17092,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"8046:10:49","subExpression":{"id":17091,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16988,"src":"8048:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int32","typeString":"int32"}],"id":17090,"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":17089,"name":"int","nodeType":"ElementaryTypeName","src":"8042:3:49","typeDescriptions":{}}},"id":17093,"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":17088,"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":17087,"name":"uint","nodeType":"ElementaryTypeName","src":"8037:4:49","typeDescriptions":{}}},"id":17094,"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":17085,"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":17084,"name":"int","nodeType":"ElementaryTypeName","src":"8028:3:49","typeDescriptions":{}}},"id":17096,"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":17077,"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":17076,"name":"int","nodeType":"ElementaryTypeName","src":"7968:3:49","typeDescriptions":{}}},"id":17098,"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":17099,"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":17075,"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":17074,"name":"int32","nodeType":"ElementaryTypeName","src":"7962:5:49","typeDescriptions":{}}},"id":17101,"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":17103,"nodeType":"ExpressionStatement","src":"7953:122:49"}]},"id":17105,"nodeType":"IfStatement","src":"7781:302:49","trueBody":{"id":17072,"nodeType":"Block","src":"7800:138:49","statements":[{"expression":{"id":17070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17045,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16973,"src":"7809:6:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17068,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17063,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17052,"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":17057,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16988,"src":"7862:8:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int32","typeString":"int32"}],"id":17056,"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":17055,"name":"int256","nodeType":"ElementaryTypeName","src":"7855:6:49","typeDescriptions":{}}},"id":17058,"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":17054,"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":17053,"name":"uint256","nodeType":"ElementaryTypeName","src":"7847:7:49","typeDescriptions":{}}},"id":17059,"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":17051,"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":17050,"name":"int","nodeType":"ElementaryTypeName","src":"7838:3:49","typeDescriptions":{}}},"id":17061,"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":17062,"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":17064,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17002,"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":17049,"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":17048,"name":"int","nodeType":"ElementaryTypeName","src":"7824:3:49","typeDescriptions":{}}},"id":17066,"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":17067,"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":17047,"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":17046,"name":"int32","nodeType":"ElementaryTypeName","src":"7818:5:49","typeDescriptions":{}}},"id":17069,"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":17071,"nodeType":"ExpressionStatement","src":"7809:121:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":17108,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17106,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16982,"src":"8151:4:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17107,"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":17115,"nodeType":"IfStatement","src":"8147:44:49","trueBody":{"id":17114,"nodeType":"Block","src":"8162:29:49","statements":[{"expression":{"id":17112,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17109,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16973,"src":"8171:6:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"id":17111,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"8181:2:49","subExpression":{"hexValue":"31","id":17110,"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":17113,"nodeType":"ExpressionStatement","src":"8171:12:49"}]}}]},"documentation":{"id":16967,"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":17117,"implemented":true,"kind":"function","modifiers":[],"name":"readFloat16","nameLocation":"6959:11:49","nodeType":"FunctionDefinition","parameters":{"id":16971,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16970,"mutability":"mutable","name":"buffer","nameLocation":"6985:6:49","nodeType":"VariableDeclaration","scope":17117,"src":"6971:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":16969,"nodeType":"UserDefinedTypeName","pathNode":{"id":16968,"name":"Buffer","nameLocations":["6971:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"6971:6:49"},"referencedDeclaration":16642,"src":"6971:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"6970:22:49"},"returnParameters":{"id":16974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":16973,"mutability":"mutable","name":"result","nameLocation":"7032:6:49","nodeType":"VariableDeclaration","scope":17117,"src":"7026:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":16972,"name":"int32","nodeType":"ElementaryTypeName","src":"7026:5:49","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"7025:14:49"},"scope":18509,"src":"6950:1246:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17254,"nodeType":"Block","src":"9031:1130:49","statements":[{"assignments":[17127],"declarations":[{"constant":false,"id":17127,"mutability":"mutable","name":"value","nameLocation":"9043:5:49","nodeType":"VariableDeclaration","scope":17254,"src":"9038:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17126,"name":"uint","nodeType":"ElementaryTypeName","src":"9038:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17131,"initialValue":{"arguments":[{"id":17129,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17121,"src":"9062:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17128,"name":"readUint32","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17651,"src":"9051:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint32_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint32)"}},"id":17130,"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":[17133],"declarations":[{"constant":false,"id":17133,"mutability":"mutable","name":"sign","nameLocation":"9111:4:49","nodeType":"VariableDeclaration","scope":17254,"src":"9106:9:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17132,"name":"uint","nodeType":"ElementaryTypeName","src":"9106:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17137,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17136,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17134,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17127,"src":"9118:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783830303030303030","id":17135,"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":[17139],"declarations":[{"constant":false,"id":17139,"mutability":"mutable","name":"exponent","nameLocation":"9262:8:49","nodeType":"VariableDeclaration","scope":17254,"src":"9258:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17138,"name":"int","nodeType":"ElementaryTypeName","src":"9258:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":17151,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17144,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17142,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17127,"src":"9278:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783766383030303030","id":17143,"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":17141,"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":17140,"name":"int","nodeType":"ElementaryTypeName","src":"9274:3:49","typeDescriptions":{}}},"id":17145,"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":17146,"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":17148,"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":17149,"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":[17153],"declarations":[{"constant":false,"id":17153,"mutability":"mutable","name":"fraction","nameLocation":"9346:8:49","nodeType":"VariableDeclaration","scope":17254,"src":"9342:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17152,"name":"int","nodeType":"ElementaryTypeName","src":"9342:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":17160,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17158,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17156,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17127,"src":"9361:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783030376666666666","id":17157,"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":17155,"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":17154,"name":"int","nodeType":"ElementaryTypeName","src":"9357:3:49","typeDescriptions":{}}},"id":17159,"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":17164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17161,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17139,"src":"9448:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17163,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"9460:4:49","subExpression":{"hexValue":"313237","id":17162,"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":17172,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17170,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17139,"src":"9513:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"313238","id":17171,"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":17191,"nodeType":"IfStatement","src":"9509:207:49","trueBody":{"id":17190,"nodeType":"Block","src":"9530:186:49","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"5769746e65744275666665722e72656164466c6f617433323a20","id":17178,"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":17181,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17179,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17133,"src":"9633:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17180,"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":17183,"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":17184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"9633:30:49","trueExpression":{"hexValue":"6e65676174697665","id":17182,"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":17185,"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":17176,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"9563:3:49","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":17177,"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":17186,"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":17175,"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":17174,"name":"string","nodeType":"ElementaryTypeName","src":"9556:6:49","typeDescriptions":{}}},"id":17187,"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":17173,"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":17188,"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":17189,"nodeType":"ExpressionStatement","src":"9539:169:49"}]}},"id":17192,"nodeType":"IfStatement","src":"9444:272:49","trueBody":{"id":17169,"nodeType":"Block","src":"9466:37:49","statements":[{"expression":{"id":17167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17165,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17153,"src":"9475:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"hexValue":"3078383030303030","id":17166,"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":17168,"nodeType":"ExpressionStatement","src":"9475:20:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17195,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17193,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17139,"src":"9782:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":17194,"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":17242,"nodeType":"Block","src":"9924:124:49","statements":[{"expression":{"id":17240,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17219,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17124,"src":"9933:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17236,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17220,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17153,"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":17223,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":17221,"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":17222,"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":17224,"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":17234,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17228,"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":17232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10013:9:49","subExpression":{"id":17231,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17139,"src":"10014:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17230,"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":17229,"name":"uint","nodeType":"ElementaryTypeName","src":"10008:4:49","typeDescriptions":{}}},"id":17233,"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":17227,"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":17226,"name":"int","nodeType":"ElementaryTypeName","src":"9999:3:49","typeDescriptions":{}}},"id":17235,"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":17237,"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":17238,"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":17241,"nodeType":"ExpressionStatement","src":"9933:107:49"}]},"id":17243,"nodeType":"IfStatement","src":"9778:270:49","trueBody":{"id":17218,"nodeType":"Block","src":"9797:121:49","statements":[{"expression":{"id":17216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17196,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17124,"src":"9806:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17215,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17210,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17204,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17199,"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":17202,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17139,"src":"9840:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17201,"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":17200,"name":"uint","nodeType":"ElementaryTypeName","src":"9835:4:49","typeDescriptions":{}}},"id":17203,"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":17198,"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":17197,"name":"int","nodeType":"ElementaryTypeName","src":"9826:3:49","typeDescriptions":{}}},"id":17205,"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":17208,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":17206,"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":17207,"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":17209,"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":17211,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17153,"src":"9887:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"9826:69:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17213,"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":17214,"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":17217,"nodeType":"ExpressionStatement","src":"9806:104:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17244,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17133,"src":"10116:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17245,"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":17253,"nodeType":"IfStatement","src":"10112:44:49","trueBody":{"id":17252,"nodeType":"Block","src":"10127:29:49","statements":[{"expression":{"id":17250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17247,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17124,"src":"10136:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"id":17249,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"10146:2:49","subExpression":{"hexValue":"31","id":17248,"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":17251,"nodeType":"ExpressionStatement","src":"10136:12:49"}]}}]},"documentation":{"id":17118,"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":17255,"implemented":true,"kind":"function","modifiers":[],"name":"readFloat32","nameLocation":"8949:11:49","nodeType":"FunctionDefinition","parameters":{"id":17122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17121,"mutability":"mutable","name":"buffer","nameLocation":"8975:6:49","nodeType":"VariableDeclaration","scope":17255,"src":"8961:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17120,"nodeType":"UserDefinedTypeName","pathNode":{"id":17119,"name":"Buffer","nameLocations":["8961:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"8961:6:49"},"referencedDeclaration":16642,"src":"8961:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"8960:22:49"},"returnParameters":{"id":17125,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17124,"mutability":"mutable","name":"result","nameLocation":"9020:6:49","nodeType":"VariableDeclaration","scope":17255,"src":"9016:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17123,"name":"int","nodeType":"ElementaryTypeName","src":"9016:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"9015:12:49"},"scope":18509,"src":"8940:1221:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17392,"nodeType":"Block","src":"10999:1171:49","statements":[{"assignments":[17265],"declarations":[{"constant":false,"id":17265,"mutability":"mutable","name":"value","nameLocation":"11011:5:49","nodeType":"VariableDeclaration","scope":17392,"src":"11006:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17264,"name":"uint","nodeType":"ElementaryTypeName","src":"11006:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17269,"initialValue":{"arguments":[{"id":17267,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17259,"src":"11030:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17266,"name":"readUint64","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17687,"src":"11019:10:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint64)"}},"id":17268,"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":[17271],"declarations":[{"constant":false,"id":17271,"mutability":"mutable","name":"sign","nameLocation":"11079:4:49","nodeType":"VariableDeclaration","scope":17392,"src":"11074:9:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17270,"name":"uint","nodeType":"ElementaryTypeName","src":"11074:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17275,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17272,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17265,"src":"11086:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307838303030303030303030303030303030","id":17273,"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":[17277],"declarations":[{"constant":false,"id":17277,"mutability":"mutable","name":"exponent","nameLocation":"11241:8:49","nodeType":"VariableDeclaration","scope":17392,"src":"11237:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17276,"name":"int","nodeType":"ElementaryTypeName","src":"11237:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":17289,"initialValue":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17285,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17280,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17265,"src":"11257:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307837666630303030303030303030303030","id":17281,"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":17279,"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":17278,"name":"int","nodeType":"ElementaryTypeName","src":"11253:3:49","typeDescriptions":{}}},"id":17283,"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":17284,"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":17286,"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":17287,"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":[17291],"declarations":[{"constant":false,"id":17291,"mutability":"mutable","name":"fraction","nameLocation":"11334:8:49","nodeType":"VariableDeclaration","scope":17392,"src":"11330:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17290,"name":"int","nodeType":"ElementaryTypeName","src":"11330:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"id":17298,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17294,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17265,"src":"11349:5:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"307830303066666666666666666666666666","id":17295,"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":17293,"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":17292,"name":"int","nodeType":"ElementaryTypeName","src":"11345:3:49","typeDescriptions":{}}},"id":17297,"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":17302,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17299,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17277,"src":"11445:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":17301,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"11457:5:49","subExpression":{"hexValue":"31303233","id":17300,"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":17310,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17308,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17277,"src":"11519:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31303234","id":17309,"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":17329,"nodeType":"IfStatement","src":"11515:208:49","trueBody":{"id":17328,"nodeType":"Block","src":"11537:186:49","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"hexValue":"5769746e65744275666665722e72656164466c6f617436343a20","id":17316,"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":17319,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17317,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17271,"src":"11640:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17318,"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":17321,"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":17322,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"11640:30:49","trueExpression":{"hexValue":"6e65676174697665","id":17320,"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":17323,"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":17314,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"11570:3:49","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":17315,"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":17324,"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":17313,"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":17312,"name":"string","nodeType":"ElementaryTypeName","src":"11563:6:49","typeDescriptions":{}}},"id":17325,"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":17311,"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":17326,"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":17327,"nodeType":"ExpressionStatement","src":"11546:169:49"}]}},"id":17330,"nodeType":"IfStatement","src":"11441:282:49","trueBody":{"id":17307,"nodeType":"Block","src":"11464:45:49","statements":[{"expression":{"id":17305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17303,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17291,"src":"11473:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"|=","rightHandSide":{"hexValue":"30783130303030303030303030303030","id":17304,"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":17306,"nodeType":"ExpressionStatement","src":"11473:28:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17333,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17331,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17277,"src":"11789:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":17332,"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":17380,"nodeType":"Block","src":"11932:125:49","statements":[{"expression":{"id":17378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17357,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17262,"src":"11941:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17377,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17374,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17358,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17291,"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":17361,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":17359,"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":17360,"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":17362,"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":17372,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17366,"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":17370,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"12022:9:49","subExpression":{"id":17369,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17277,"src":"12023:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17368,"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":17367,"name":"uint","nodeType":"ElementaryTypeName","src":"12017:4:49","typeDescriptions":{}}},"id":17371,"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":17365,"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":17364,"name":"int","nodeType":"ElementaryTypeName","src":"12008:3:49","typeDescriptions":{}}},"id":17373,"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":17375,"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":17376,"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":17379,"nodeType":"ExpressionStatement","src":"11941:108:49"}]},"id":17381,"nodeType":"IfStatement","src":"11785:272:49","trueBody":{"id":17356,"nodeType":"Block","src":"11804:122:49","statements":[{"expression":{"id":17354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17334,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17262,"src":"11813:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17353,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17350,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":17348,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17342,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":17337,"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":17340,"name":"exponent","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17277,"src":"11847:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":17339,"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":17338,"name":"uint","nodeType":"ElementaryTypeName","src":"11842:4:49","typeDescriptions":{}}},"id":17341,"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":17336,"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":17335,"name":"int","nodeType":"ElementaryTypeName","src":"11833:3:49","typeDescriptions":{}}},"id":17343,"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":17346,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":17344,"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":17345,"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":17347,"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":17349,"name":"fraction","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17291,"src":"11895:8:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"11833:70:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"id":17351,"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":17352,"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":17355,"nodeType":"ExpressionStatement","src":"11813:105:49"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17384,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17382,"name":"sign","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17271,"src":"12125:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":17383,"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":17391,"nodeType":"IfStatement","src":"12121:44:49","trueBody":{"id":17390,"nodeType":"Block","src":"12136:29:49","statements":[{"expression":{"id":17388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17385,"name":"result","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17262,"src":"12145:6:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"Assignment","operator":"*=","rightHandSide":{"id":17387,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"12155:2:49","subExpression":{"hexValue":"31","id":17386,"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":17389,"nodeType":"ExpressionStatement","src":"12145:12:49"}]}}]},"documentation":{"id":17256,"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":17393,"implemented":true,"kind":"function","modifiers":[],"name":"readFloat64","nameLocation":"10917:11:49","nodeType":"FunctionDefinition","parameters":{"id":17260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17259,"mutability":"mutable","name":"buffer","nameLocation":"10943:6:49","nodeType":"VariableDeclaration","scope":17393,"src":"10929:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17258,"nodeType":"UserDefinedTypeName","pathNode":{"id":17257,"name":"Buffer","nameLocations":["10929:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"10929:6:49"},"referencedDeclaration":16642,"src":"10929:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"10928:22:49"},"returnParameters":{"id":17263,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17262,"mutability":"mutable","name":"result","nameLocation":"10988:6:49","nodeType":"VariableDeclaration","scope":17393,"src":"10984:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":17261,"name":"int","nodeType":"ElementaryTypeName","src":"10984:3:49","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"10983:12:49"},"scope":18509,"src":"10908:1262:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17545,"nodeType":"Block","src":"12567:930:49","statements":[{"expression":{"id":17409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17404,"name":"text","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17402,"src":"12574:4:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":17407,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17399,"src":"12591:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":17406,"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":17405,"name":"bytes","nodeType":"ElementaryTypeName","src":"12585:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}}},"id":17408,"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":17410,"nodeType":"ExpressionStatement","src":"12574:24:49"},{"id":17544,"nodeType":"UncheckedBlock","src":"12605:887:49","statements":[{"body":{"id":17541,"nodeType":"Block","src":"12673:715:49","statements":[{"assignments":[17422],"declarations":[{"constant":false,"id":17422,"mutability":"mutable","name":"char","nameLocation":"12690:4:49","nodeType":"VariableDeclaration","scope":17541,"src":"12684:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17421,"name":"uint8","nodeType":"ElementaryTypeName","src":"12684:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":17426,"initialValue":{"arguments":[{"id":17424,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17397,"src":"12707:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17423,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17579,"src":"12697:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17425,"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":17431,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17429,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17427,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17422,"src":"12729:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783830","id":17428,"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":17430,"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":17531,"nodeType":"IfStatement","src":"12725:617:49","trueBody":{"id":17530,"nodeType":"Block","src":"12747:595:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17434,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17432,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17422,"src":"12764:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30786530","id":17433,"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":17458,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17456,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17422,"src":"12911:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"30786630","id":17457,"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":17527,"nodeType":"Block","src":"13105:226:49","statements":[{"expression":{"id":17521,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17489,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17422,"src":"13120:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17520,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17504,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17490,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17422,"src":"13128:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783066","id":17491,"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":17493,"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":17494,"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":17503,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17497,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17397,"src":"13175:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17496,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17579,"src":"13165:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17498,"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":17499,"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":17501,"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":17502,"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":17512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17506,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17397,"src":"13225:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17505,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17579,"src":"13215:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17507,"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":17508,"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":17510,"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":17511,"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":17518,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17515,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17397,"src":"13276:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17514,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17579,"src":"13266:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17516,"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":17517,"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":17519,"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":17522,"nodeType":"ExpressionStatement","src":"13120:171:49"},{"expression":{"id":17525,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17523,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17399,"src":"13306:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"33","id":17524,"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":17526,"nodeType":"ExpressionStatement","src":"13306:11:49"}]},"id":17528,"nodeType":"IfStatement","src":"12907:424:49","trueBody":{"id":17488,"nodeType":"Block","src":"12924:175:49","statements":[{"expression":{"id":17482,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17459,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17422,"src":"12939:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17474,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17465,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17462,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17460,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17422,"src":"12948:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783066","id":17461,"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":17463,"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":17464,"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":17473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17470,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17467,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17397,"src":"12995:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17466,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17579,"src":"12985:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17468,"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":17469,"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":17471,"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":17472,"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":17479,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17476,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17397,"src":"13044:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17475,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17579,"src":"13034:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17477,"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":17478,"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":17480,"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":17483,"nodeType":"ExpressionStatement","src":"12939:120:49"},{"expression":{"id":17486,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17484,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17399,"src":"13074:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"32","id":17485,"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":17487,"nodeType":"ExpressionStatement","src":"13074:11:49"}]}},"id":17529,"nodeType":"IfStatement","src":"12760:571:49","trueBody":{"id":17455,"nodeType":"Block","src":"12777:124:49","statements":[{"expression":{"id":17449,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17435,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17422,"src":"12792:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17448,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17441,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17436,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17422,"src":"12800:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783166","id":17437,"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":17439,"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":17440,"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":17446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":17443,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17397,"src":"12846:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":17442,"name":"readUint8","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17579,"src":"12836:9:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint8_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":17444,"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":17445,"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":17447,"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":17450,"nodeType":"ExpressionStatement","src":"12792:69:49"},{"expression":{"id":17453,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17451,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17399,"src":"12876:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"31","id":17452,"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":17454,"nodeType":"ExpressionStatement","src":"12876:11:49"}]}}]}},{"expression":{"id":17539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":17532,"name":"text","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17402,"src":"13352:4:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17534,"indexExpression":{"id":17533,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17412,"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":17537,"name":"char","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17422,"src":"13373:4:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":17536,"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":17535,"name":"bytes1","nodeType":"ElementaryTypeName","src":"13366:6:49","typeDescriptions":{}}},"id":17538,"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":17540,"nodeType":"ExpressionStatement","src":"13352:26:49"}]},"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":17417,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17415,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17412,"src":"12647:5:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":17416,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17399,"src":"12655:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"12647:14:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17542,"initializationExpression":{"assignments":[17412],"declarations":[{"constant":false,"id":17412,"mutability":"mutable","name":"index","nameLocation":"12636:5:49","nodeType":"VariableDeclaration","scope":17542,"src":"12629:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":17411,"name":"uint64","nodeType":"ElementaryTypeName","src":"12629:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":17414,"initialValue":{"hexValue":"30","id":17413,"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":17419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"12663:8:49","subExpression":{"id":17418,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17412,"src":"12663:5:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":17420,"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":"shanghai","externalReferences":[{"declaration":17399,"isOffset":false,"isSlot":false,"src":"13469:6:49","valueSize":1},{"declaration":17402,"isOffset":false,"isSlot":false,"src":"13463:4:49","valueSize":1}],"id":17543,"nodeType":"InlineAssembly","src":"13436:49:49"}]}]},"documentation":{"id":17394,"nodeType":"StructuredDocumentation","src":"12294:68:49","text":"but it can be easily casted into a string with `string(result)`."},"id":17546,"implemented":true,"kind":"function","modifiers":[],"name":"readText","nameLocation":"12432:8:49","nodeType":"FunctionDefinition","parameters":{"id":17400,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17397,"mutability":"mutable","name":"buffer","nameLocation":"12476:6:49","nodeType":"VariableDeclaration","scope":17546,"src":"12449:33:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17396,"nodeType":"UserDefinedTypeName","pathNode":{"id":17395,"name":"WitnetBuffer.Buffer","nameLocations":["12449:12:49","12462:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"12449:19:49"},"referencedDeclaration":16642,"src":"12449:19:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":17399,"mutability":"mutable","name":"length","nameLocation":"12498:6:49","nodeType":"VariableDeclaration","scope":17546,"src":"12491:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":17398,"name":"uint64","nodeType":"ElementaryTypeName","src":"12491:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"12440:71:49"},"returnParameters":{"id":17403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17402,"mutability":"mutable","name":"text","nameLocation":"12558:4:49","nodeType":"VariableDeclaration","scope":17546,"src":"12545:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17401,"name":"bytes","nodeType":"ElementaryTypeName","src":"12545:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"12544:19:49"},"scope":18509,"src":"12423:1074:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17578,"nodeType":"Block","src":"13873:173:49","statements":[{"assignments":[17563],"declarations":[{"constant":false,"id":17563,"mutability":"mutable","name":"data","nameLocation":"13893:4:49","nodeType":"VariableDeclaration","scope":17578,"src":"13880:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17562,"name":"bytes","nodeType":"ElementaryTypeName","src":"13880:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17566,"initialValue":{"expression":{"id":17564,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17550,"src":"13900:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17565,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13907:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"13900:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"13880:31:49"},{"assignments":[17568],"declarations":[{"constant":false,"id":17568,"mutability":"mutable","name":"offset","nameLocation":"13923:6:49","nodeType":"VariableDeclaration","scope":17578,"src":"13918:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17567,"name":"uint","nodeType":"ElementaryTypeName","src":"13918:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17571,"initialValue":{"expression":{"id":17569,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17550,"src":"13932:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17570,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13939:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"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":"shanghai","externalReferences":[{"declaration":17563,"isOffset":false,"isSlot":false,"src":"13993:4:49","valueSize":1},{"declaration":17568,"isOffset":false,"isSlot":false,"src":"14003:6:49","valueSize":1},{"declaration":17560,"isOffset":false,"isSlot":false,"src":"13970:5:49","valueSize":1}],"id":17572,"nodeType":"InlineAssembly","src":"13952:66:49"},{"expression":{"id":17576,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"14024:16:49","subExpression":{"expression":{"id":17573,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17550,"src":"14024:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17575,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14031:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"14024:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17577,"nodeType":"ExpressionStatement","src":"14024:16:49"}]},"documentation":{"id":17547,"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":17579,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"expression":{"id":17553,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17550,"src":"13808:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17554,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13815:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"13808:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":17555,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17550,"src":"13823:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17556,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13830:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"13823:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17557,"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":17558,"kind":"modifierInvocation","modifierName":{"id":17552,"name":"withinRange","nameLocations":["13796:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"13796:11:49"},"nodeType":"ModifierInvocation","src":"13796:46:49"}],"name":"readUint8","nameLocation":"13740:9:49","nodeType":"FunctionDefinition","parameters":{"id":17551,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17550,"mutability":"mutable","name":"buffer","nameLocation":"13764:6:49","nodeType":"VariableDeclaration","scope":17579,"src":"13750:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17549,"nodeType":"UserDefinedTypeName","pathNode":{"id":17548,"name":"Buffer","nameLocations":["13750:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"13750:6:49"},"referencedDeclaration":16642,"src":"13750:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"13749:22:49"},"returnParameters":{"id":17561,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17560,"mutability":"mutable","name":"value","nameLocation":"13863:5:49","nodeType":"VariableDeclaration","scope":17579,"src":"13857:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17559,"name":"uint8","nodeType":"ElementaryTypeName","src":"13857:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"13856:13:49"},"scope":18509,"src":"13731:315:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17614,"nodeType":"Block","src":"14436:175:49","statements":[{"assignments":[17598],"declarations":[{"constant":false,"id":17598,"mutability":"mutable","name":"data","nameLocation":"14456:4:49","nodeType":"VariableDeclaration","scope":17614,"src":"14443:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17597,"name":"bytes","nodeType":"ElementaryTypeName","src":"14443:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17601,"initialValue":{"expression":{"id":17599,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17583,"src":"14463:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17600,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14470:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"14463:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"14443:31:49"},{"assignments":[17603],"declarations":[{"constant":false,"id":17603,"mutability":"mutable","name":"offset","nameLocation":"14486:6:49","nodeType":"VariableDeclaration","scope":17614,"src":"14481:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17602,"name":"uint","nodeType":"ElementaryTypeName","src":"14481:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17606,"initialValue":{"expression":{"id":17604,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17583,"src":"14495:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17605,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14502:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"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":"shanghai","externalReferences":[{"declaration":17598,"isOffset":false,"isSlot":false,"src":"14556:4:49","valueSize":1},{"declaration":17603,"isOffset":false,"isSlot":false,"src":"14566:6:49","valueSize":1},{"declaration":17595,"isOffset":false,"isSlot":false,"src":"14533:5:49","valueSize":1}],"id":17607,"nodeType":"InlineAssembly","src":"14515:66:49"},{"expression":{"id":17612,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17608,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17583,"src":"14587:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17610,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"14594:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"14587:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"32","id":17611,"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":17613,"nodeType":"ExpressionStatement","src":"14587:18:49"}]},"documentation":{"id":17580,"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":17615,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17586,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17583,"src":"14366:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17587,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14373:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"14366:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":17588,"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":17590,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17583,"src":"14385:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17591,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14392:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"14385:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17592,"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":17593,"kind":"modifierInvocation","modifierName":{"id":17585,"name":"withinRange","nameLocations":["14354:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"14354:11:49"},"nodeType":"ModifierInvocation","src":"14354:50:49"}],"name":"readUint16","nameLocation":"14297:10:49","nodeType":"FunctionDefinition","parameters":{"id":17584,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17583,"mutability":"mutable","name":"buffer","nameLocation":"14322:6:49","nodeType":"VariableDeclaration","scope":17615,"src":"14308:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17582,"nodeType":"UserDefinedTypeName","pathNode":{"id":17581,"name":"Buffer","nameLocations":["14308:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"14308:6:49"},"referencedDeclaration":16642,"src":"14308:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"14307:22:49"},"returnParameters":{"id":17596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17595,"mutability":"mutable","name":"value","nameLocation":"14426:5:49","nodeType":"VariableDeclaration","scope":17615,"src":"14419:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":17594,"name":"uint16","nodeType":"ElementaryTypeName","src":"14419:6:49","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"14418:14:49"},"scope":18509,"src":"14288:323:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17650,"nodeType":"Block","src":"15001:175:49","statements":[{"assignments":[17634],"declarations":[{"constant":false,"id":17634,"mutability":"mutable","name":"data","nameLocation":"15021:4:49","nodeType":"VariableDeclaration","scope":17650,"src":"15008:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17633,"name":"bytes","nodeType":"ElementaryTypeName","src":"15008:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17637,"initialValue":{"expression":{"id":17635,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17619,"src":"15028:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17636,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15035:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"15028:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"15008:31:49"},{"assignments":[17639],"declarations":[{"constant":false,"id":17639,"mutability":"mutable","name":"offset","nameLocation":"15051:6:49","nodeType":"VariableDeclaration","scope":17650,"src":"15046:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17638,"name":"uint","nodeType":"ElementaryTypeName","src":"15046:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17642,"initialValue":{"expression":{"id":17640,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17619,"src":"15060:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17641,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15067:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"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":"shanghai","externalReferences":[{"declaration":17634,"isOffset":false,"isSlot":false,"src":"15121:4:49","valueSize":1},{"declaration":17639,"isOffset":false,"isSlot":false,"src":"15131:6:49","valueSize":1},{"declaration":17631,"isOffset":false,"isSlot":false,"src":"15098:5:49","valueSize":1}],"id":17643,"nodeType":"InlineAssembly","src":"15080:66:49"},{"expression":{"id":17648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17644,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17619,"src":"15152:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17646,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"15159:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"15152:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"34","id":17647,"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":17649,"nodeType":"ExpressionStatement","src":"15152:18:49"}]},"documentation":{"id":17616,"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":17651,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17625,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17622,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17619,"src":"14931:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17623,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14938:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"14931:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"34","id":17624,"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":17626,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17619,"src":"14950:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17627,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14957:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"14950:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17628,"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":17629,"kind":"modifierInvocation","modifierName":{"id":17621,"name":"withinRange","nameLocations":["14919:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"14919:11:49"},"nodeType":"ModifierInvocation","src":"14919:50:49"}],"name":"readUint32","nameLocation":"14862:10:49","nodeType":"FunctionDefinition","parameters":{"id":17620,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17619,"mutability":"mutable","name":"buffer","nameLocation":"14887:6:49","nodeType":"VariableDeclaration","scope":17651,"src":"14873:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17618,"nodeType":"UserDefinedTypeName","pathNode":{"id":17617,"name":"Buffer","nameLocations":["14873:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"14873:6:49"},"referencedDeclaration":16642,"src":"14873:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"14872:22:49"},"returnParameters":{"id":17632,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17631,"mutability":"mutable","name":"value","nameLocation":"14991:5:49","nodeType":"VariableDeclaration","scope":17651,"src":"14984:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":17630,"name":"uint32","nodeType":"ElementaryTypeName","src":"14984:6:49","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"14983:14:49"},"scope":18509,"src":"14853:323:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17686,"nodeType":"Block","src":"15566:175:49","statements":[{"assignments":[17670],"declarations":[{"constant":false,"id":17670,"mutability":"mutable","name":"data","nameLocation":"15586:4:49","nodeType":"VariableDeclaration","scope":17686,"src":"15573:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17669,"name":"bytes","nodeType":"ElementaryTypeName","src":"15573:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17673,"initialValue":{"expression":{"id":17671,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17655,"src":"15593:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17672,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15600:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"15593:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"15573:31:49"},{"assignments":[17675],"declarations":[{"constant":false,"id":17675,"mutability":"mutable","name":"offset","nameLocation":"15616:6:49","nodeType":"VariableDeclaration","scope":17686,"src":"15611:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17674,"name":"uint","nodeType":"ElementaryTypeName","src":"15611:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17678,"initialValue":{"expression":{"id":17676,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17655,"src":"15625:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17677,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15632:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"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":"shanghai","externalReferences":[{"declaration":17670,"isOffset":false,"isSlot":false,"src":"15686:4:49","valueSize":1},{"declaration":17675,"isOffset":false,"isSlot":false,"src":"15696:6:49","valueSize":1},{"declaration":17667,"isOffset":false,"isSlot":false,"src":"15663:5:49","valueSize":1}],"id":17679,"nodeType":"InlineAssembly","src":"15645:66:49"},{"expression":{"id":17684,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17680,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17655,"src":"15717:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17682,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"15724:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"15717:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"38","id":17683,"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":17685,"nodeType":"ExpressionStatement","src":"15717:18:49"}]},"documentation":{"id":17652,"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":17687,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17661,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17658,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17655,"src":"15496:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17659,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15503:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"15496:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"38","id":17660,"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":17662,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17655,"src":"15515:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17663,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15522:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"15515:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17664,"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":17665,"kind":"modifierInvocation","modifierName":{"id":17657,"name":"withinRange","nameLocations":["15484:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"15484:11:49"},"nodeType":"ModifierInvocation","src":"15484:50:49"}],"name":"readUint64","nameLocation":"15427:10:49","nodeType":"FunctionDefinition","parameters":{"id":17656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17655,"mutability":"mutable","name":"buffer","nameLocation":"15452:6:49","nodeType":"VariableDeclaration","scope":17687,"src":"15438:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17654,"nodeType":"UserDefinedTypeName","pathNode":{"id":17653,"name":"Buffer","nameLocations":["15438:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"15438:6:49"},"referencedDeclaration":16642,"src":"15438:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"15437:22:49"},"returnParameters":{"id":17668,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17667,"mutability":"mutable","name":"value","nameLocation":"15556:5:49","nodeType":"VariableDeclaration","scope":17687,"src":"15549:12:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":17666,"name":"uint64","nodeType":"ElementaryTypeName","src":"15549:6:49","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"15548:14:49"},"scope":18509,"src":"15418:323:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17722,"nodeType":"Block","src":"16138:177:49","statements":[{"assignments":[17706],"declarations":[{"constant":false,"id":17706,"mutability":"mutable","name":"data","nameLocation":"16158:4:49","nodeType":"VariableDeclaration","scope":17722,"src":"16145:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17705,"name":"bytes","nodeType":"ElementaryTypeName","src":"16145:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17709,"initialValue":{"expression":{"id":17707,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17691,"src":"16165:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17708,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16172:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"16165:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"16145:31:49"},{"assignments":[17711],"declarations":[{"constant":false,"id":17711,"mutability":"mutable","name":"offset","nameLocation":"16188:6:49","nodeType":"VariableDeclaration","scope":17722,"src":"16183:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17710,"name":"uint","nodeType":"ElementaryTypeName","src":"16183:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17714,"initialValue":{"expression":{"id":17712,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17691,"src":"16197:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17713,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16204:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"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":"shanghai","externalReferences":[{"declaration":17706,"isOffset":false,"isSlot":false,"src":"16258:4:49","valueSize":1},{"declaration":17711,"isOffset":false,"isSlot":false,"src":"16269:6:49","valueSize":1},{"declaration":17703,"isOffset":false,"isSlot":false,"src":"16235:5:49","valueSize":1}],"id":17715,"nodeType":"InlineAssembly","src":"16217:67:49"},{"expression":{"id":17720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17716,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17691,"src":"16290:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17718,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16297:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"16290:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3136","id":17719,"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":17721,"nodeType":"ExpressionStatement","src":"16290:19:49"}]},"documentation":{"id":17688,"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":17723,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17697,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17694,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17691,"src":"16066:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17695,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16073:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"16066:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3136","id":17696,"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":17698,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17691,"src":"16086:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17699,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16093:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"16086:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17700,"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":17701,"kind":"modifierInvocation","modifierName":{"id":17693,"name":"withinRange","nameLocations":["16054:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"16054:11:49"},"nodeType":"ModifierInvocation","src":"16054:51:49"}],"name":"readUint128","nameLocation":"15996:11:49","nodeType":"FunctionDefinition","parameters":{"id":17692,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17691,"mutability":"mutable","name":"buffer","nameLocation":"16022:6:49","nodeType":"VariableDeclaration","scope":17723,"src":"16008:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17690,"nodeType":"UserDefinedTypeName","pathNode":{"id":17689,"name":"Buffer","nameLocations":["16008:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"16008:6:49"},"referencedDeclaration":16642,"src":"16008:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"16007:22:49"},"returnParameters":{"id":17704,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17703,"mutability":"mutable","name":"value","nameLocation":"16128:5:49","nodeType":"VariableDeclaration","scope":17723,"src":"16120:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":17702,"name":"uint128","nodeType":"ElementaryTypeName","src":"16120:7:49","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"16119:15:49"},"scope":18509,"src":"15987:328:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17758,"nodeType":"Block","src":"16712:177:49","statements":[{"assignments":[17742],"declarations":[{"constant":false,"id":17742,"mutability":"mutable","name":"data","nameLocation":"16732:4:49","nodeType":"VariableDeclaration","scope":17758,"src":"16719:17:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17741,"name":"bytes","nodeType":"ElementaryTypeName","src":"16719:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":17745,"initialValue":{"expression":{"id":17743,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"16739:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17744,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16746:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"16739:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"16719:31:49"},{"assignments":[17747],"declarations":[{"constant":false,"id":17747,"mutability":"mutable","name":"offset","nameLocation":"16762:6:49","nodeType":"VariableDeclaration","scope":17758,"src":"16757:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17746,"name":"uint","nodeType":"ElementaryTypeName","src":"16757:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17750,"initialValue":{"expression":{"id":17748,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"16771:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17749,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16778:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"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":"shanghai","externalReferences":[{"declaration":17742,"isOffset":false,"isSlot":false,"src":"16832:4:49","valueSize":1},{"declaration":17747,"isOffset":false,"isSlot":false,"src":"16843:6:49","valueSize":1},{"declaration":17739,"isOffset":false,"isSlot":false,"src":"16809:5:49","valueSize":1}],"id":17751,"nodeType":"InlineAssembly","src":"16791:67:49"},{"expression":{"id":17756,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":17752,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"16864:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17754,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16871:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"16864:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":17755,"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":17757,"nodeType":"ExpressionStatement","src":"16864:19:49"}]},"documentation":{"id":17724,"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":17759,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17730,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"16640:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17731,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16647:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"16640:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"3332","id":17732,"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":17734,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17727,"src":"16660:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":17735,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16667:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"16660:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17736,"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":17737,"kind":"modifierInvocation","modifierName":{"id":17729,"name":"withinRange","nameLocations":["16628:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"16628:11:49"},"nodeType":"ModifierInvocation","src":"16628:51:49"}],"name":"readUint256","nameLocation":"16570:11:49","nodeType":"FunctionDefinition","parameters":{"id":17728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17727,"mutability":"mutable","name":"buffer","nameLocation":"16596:6:49","nodeType":"VariableDeclaration","scope":17759,"src":"16582:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":17726,"nodeType":"UserDefinedTypeName","pathNode":{"id":17725,"name":"Buffer","nameLocations":["16582:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"16582:6:49"},"referencedDeclaration":16642,"src":"16582:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"16581:22:49"},"returnParameters":{"id":17740,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17739,"mutability":"mutable","name":"value","nameLocation":"16702:5:49","nodeType":"VariableDeclaration","scope":17759,"src":"16694:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17738,"name":"uint256","nodeType":"ElementaryTypeName","src":"16694:7:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"16693:15:49"},"scope":18509,"src":"16561:328:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":17876,"nodeType":"Block","src":"17227:593:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17770,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17767,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17762,"src":"17238:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17768,"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":17769,"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":17774,"nodeType":"IfStatement","src":"17234:47:49","trueBody":{"id":17773,"nodeType":"Block","src":"17256:25:49","statements":[{"expression":{"hexValue":"30","id":17771,"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":17766,"id":17772,"nodeType":"Return","src":"17265:8:49"}]}},{"id":17875,"nodeType":"UncheckedBlock","src":"17287:528:49","statements":[{"assignments":[17776],"declarations":[{"constant":false,"id":17776,"mutability":"mutable","name":"ix","nameLocation":"17311:2:49","nodeType":"VariableDeclaration","scope":17875,"src":"17306:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17775,"name":"uint","nodeType":"ElementaryTypeName","src":"17306:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17778,"initialValue":{"hexValue":"30","id":17777,"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":[17780],"declarations":[{"constant":false,"id":17780,"mutability":"mutable","name":"length","nameLocation":"17332:6:49","nodeType":"VariableDeclaration","scope":17875,"src":"17327:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17779,"name":"uint","nodeType":"ElementaryTypeName","src":"17327:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17785,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17784,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17781,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17762,"src":"17341:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17782,"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":17783,"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":17873,"nodeType":"Block","src":"17388:420:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":17796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17789,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17762,"src":"17415:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17791,"indexExpression":{"id":17790,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17776,"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":17794,"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":17793,"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":17792,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17428:6:49","typeDescriptions":{}}},"id":17795,"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":17806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17797,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17762,"src":"17457:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17801,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17798,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17776,"src":"17463:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":17799,"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":17804,"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":17803,"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":17802,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17474:6:49","typeDescriptions":{}}},"id":17805,"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":17817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17808,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17762,"src":"17503:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17812,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17809,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17776,"src":"17509:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17810,"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":17815,"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":17814,"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":17813,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17520:6:49","typeDescriptions":{}}},"id":17816,"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":17828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17819,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17762,"src":"17548:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17823,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17820,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17776,"src":"17554:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17821,"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":17826,"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":17825,"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":17824,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17565:6:49","typeDescriptions":{}}},"id":17827,"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":17871,"nodeType":"Block","src":"17769:30:49","statements":[{"expression":{"id":17869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17782:5:49","subExpression":{"id":17868,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17776,"src":"17782:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":17870,"nodeType":"ExpressionStatement","src":"17782:5:49"}]},"id":17872,"nodeType":"IfStatement","src":"17399:400:49","trueBody":{"id":17867,"nodeType":"Block","src":"17588:175:49","statements":[{"assignments":[17831],"declarations":[{"constant":false,"id":17831,"mutability":"mutable","name":"ax","nameLocation":"17607:2:49","nodeType":"VariableDeclaration","scope":17867,"src":"17601:8:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17830,"name":"uint8","nodeType":"ElementaryTypeName","src":"17601:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":17853,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17851,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":17849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":17836,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17762,"src":"17624:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17840,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17839,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17837,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17776,"src":"17630:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17838,"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":17835,"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":17834,"name":"uint8","nodeType":"ElementaryTypeName","src":"17618:5:49","typeDescriptions":{}}},"id":17841,"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":17846,"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":17845,"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":17844,"name":"bytes1","nodeType":"ElementaryTypeName","src":"17647:6:49","typeDescriptions":{}}},"id":17847,"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":17843,"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":17842,"name":"uint8","nodeType":"ElementaryTypeName","src":"17641:5:49","typeDescriptions":{}}},"id":17848,"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":17850,"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":17833,"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":17832,"name":"uint8","nodeType":"ElementaryTypeName","src":"17612:5:49","typeDescriptions":{}}},"id":17852,"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":17856,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17854,"name":"ax","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17831,"src":"17681:2:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":17855,"name":"count","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17765,"src":"17686:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"17681:10:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17862,"nodeType":"IfStatement","src":"17677:55:49","trueBody":{"id":17861,"nodeType":"Block","src":"17693:39:49","statements":[{"expression":{"id":17859,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17857,"name":"count","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17765,"src":"17708:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":17858,"name":"ax","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17831,"src":"17716:2:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"17708:10:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"id":17860,"nodeType":"ExpressionStatement","src":"17708:10:49"}]}},{"expression":{"id":17865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17863,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17776,"src":"17744:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"33","id":17864,"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":17866,"nodeType":"ExpressionStatement","src":"17744:7:49"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17786,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17776,"src":"17373:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":17787,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17780,"src":"17378:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17373:11:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":17874,"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"17366:442:49"}]}]},"documentation":{"id":17760,"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":17877,"implemented":true,"kind":"function","modifiers":[],"name":"argsCountOf","nameLocation":"17146:11:49","nodeType":"FunctionDefinition","parameters":{"id":17763,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17762,"mutability":"mutable","name":"input","nameLocation":"17171:5:49","nodeType":"VariableDeclaration","scope":17877,"src":"17158:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17761,"name":"bytes","nodeType":"ElementaryTypeName","src":"17158:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"17157:20:49"},"returnParameters":{"id":17766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17765,"mutability":"mutable","name":"count","nameLocation":"17217:5:49","nodeType":"VariableDeclaration","scope":17877,"src":"17211:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":17764,"name":"uint8","nodeType":"ElementaryTypeName","src":"17211:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"17210:13:49"},"scope":18509,"src":"17137:683:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18123,"nodeType":"Block","src":"18348:2340:49","statements":[{"assignments":[17891],"declarations":[{"constant":false,"id":17891,"mutability":"mutable","name":"ix","nameLocation":"18360:2:49","nodeType":"VariableDeclaration","scope":18123,"src":"18355:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17890,"name":"uint","nodeType":"ElementaryTypeName","src":"18355:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17893,"initialValue":{"hexValue":"30","id":17892,"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":[17895],"declarations":[{"constant":false,"id":17895,"mutability":"mutable","name":"lix","nameLocation":"18373:3:49","nodeType":"VariableDeclaration","scope":18123,"src":"18368:8:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17894,"name":"uint","nodeType":"ElementaryTypeName","src":"18368:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17897,"initialValue":{"hexValue":"30","id":17896,"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":[17899],"declarations":[{"constant":false,"id":17899,"mutability":"mutable","name":"inputLength","nameLocation":"18392:11:49","nodeType":"VariableDeclaration","scope":18123,"src":"18387:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17898,"name":"uint","nodeType":"ElementaryTypeName","src":"18387:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17900,"nodeType":"VariableDeclarationStatement","src":"18387:16:49"},{"assignments":[17902],"declarations":[{"constant":false,"id":17902,"mutability":"mutable","name":"inputPointer","nameLocation":"18415:12:49","nodeType":"VariableDeclaration","scope":18123,"src":"18410:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17901,"name":"uint","nodeType":"ElementaryTypeName","src":"18410:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17903,"nodeType":"VariableDeclarationStatement","src":"18410:17:49"},{"assignments":[17905],"declarations":[{"constant":false,"id":17905,"mutability":"mutable","name":"outputLength","nameLocation":"18439:12:49","nodeType":"VariableDeclaration","scope":18123,"src":"18434:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17904,"name":"uint","nodeType":"ElementaryTypeName","src":"18434:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17906,"nodeType":"VariableDeclarationStatement","src":"18434:17:49"},{"assignments":[17908],"declarations":[{"constant":false,"id":17908,"mutability":"mutable","name":"outputPointer","nameLocation":"18463:13:49","nodeType":"VariableDeclaration","scope":18123,"src":"18458:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17907,"name":"uint","nodeType":"ElementaryTypeName","src":"18458:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17909,"nodeType":"VariableDeclarationStatement","src":"18458:18:49"},{"assignments":[17911],"declarations":[{"constant":false,"id":17911,"mutability":"mutable","name":"source","nameLocation":"18492:6:49","nodeType":"VariableDeclaration","scope":18123,"src":"18487:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17910,"name":"uint","nodeType":"ElementaryTypeName","src":"18487:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17912,"nodeType":"VariableDeclarationStatement","src":"18487:11:49"},{"assignments":[17914],"declarations":[{"constant":false,"id":17914,"mutability":"mutable","name":"sourceLength","nameLocation":"18510:12:49","nodeType":"VariableDeclaration","scope":18123,"src":"18505:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17913,"name":"uint","nodeType":"ElementaryTypeName","src":"18505:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17915,"nodeType":"VariableDeclarationStatement","src":"18505:17:49"},{"assignments":[17917],"declarations":[{"constant":false,"id":17917,"mutability":"mutable","name":"sourcePointer","nameLocation":"18534:13:49","nodeType":"VariableDeclaration","scope":18123,"src":"18529:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17916,"name":"uint","nodeType":"ElementaryTypeName","src":"18529:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17918,"nodeType":"VariableDeclarationStatement","src":"18529:18:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17919,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17880,"src":"18560:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17920,"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":17921,"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":17928,"nodeType":"IfStatement","src":"18556:56:49","trueBody":{"id":17927,"nodeType":"Block","src":"18578:34:49","statements":[{"expression":{"components":[{"id":17923,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17880,"src":"18595:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":17924,"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":17925,"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":17889,"id":17926,"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":"shanghai","externalReferences":[{"declaration":17880,"isOffset":false,"isSlot":false,"src":"18699:5:49","valueSize":1},{"declaration":17902,"isOffset":false,"isSlot":false,"src":"18679:12:49","valueSize":1},{"declaration":17886,"isOffset":false,"isSlot":false,"src":"18752:6:49","valueSize":1},{"declaration":17886,"isOffset":false,"isSlot":false,"src":"18840:6:49","valueSize":1},{"declaration":17908,"isOffset":false,"isSlot":false,"src":"18819:13:49","valueSize":1}],"id":17929,"nodeType":"InlineAssembly","src":"18624:234:49"},{"id":18091,"nodeType":"UncheckedBlock","src":"18875:1360:49","statements":[{"assignments":[17931],"declarations":[{"constant":false,"id":17931,"mutability":"mutable","name":"length","nameLocation":"18899:6:49","nodeType":"VariableDeclaration","scope":18091,"src":"18894:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17930,"name":"uint","nodeType":"ElementaryTypeName","src":"18894:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":17936,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17935,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":17932,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17880,"src":"18908:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17933,"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":17934,"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":18084,"nodeType":"Block","src":"18955:1243:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17969,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":17958,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":17947,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17940,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17880,"src":"18982:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17942,"indexExpression":{"id":17941,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"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":17945,"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":17944,"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":17943,"name":"bytes1","nodeType":"ElementaryTypeName","src":"18995:6:49","typeDescriptions":{}}},"id":17946,"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":17957,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17948,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17880,"src":"19024:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17952,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17949,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"19030:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":17950,"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":17955,"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":17954,"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":17953,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19041:6:49","typeDescriptions":{}}},"id":17956,"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":17968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17959,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17880,"src":"19070:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17963,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17962,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17960,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"19076:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17961,"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":17966,"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":17965,"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":17964,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19087:6:49","typeDescriptions":{}}},"id":17967,"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":17979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":17970,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17880,"src":"19115:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":17974,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17973,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17971,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"19121:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":17972,"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":17977,"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":17976,"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":17975,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19132:6:49","typeDescriptions":{}}},"id":17978,"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":18082,"nodeType":"Block","src":"20159:30:49","statements":[{"expression":{"id":18080,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"20172:5:49","subExpression":{"id":18079,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"20172:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18081,"nodeType":"ExpressionStatement","src":"20172:5:49"}]},"id":18083,"nodeType":"IfStatement","src":"18966:1223:49","trueBody":{"id":18078,"nodeType":"Block","src":"19155:998:49","statements":[{"expression":{"id":17986,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17981,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17899,"src":"19168:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17982,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"19183:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":17983,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17895,"src":"19188:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19183:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":17985,"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":17987,"nodeType":"ExpressionStatement","src":"19168:24:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17988,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"19209:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":17989,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17895,"src":"19214:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19209:8:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18012,"nodeType":"Block","src":"19451:46:49","statements":[{"expression":{"id":18010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18008,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17902,"src":"19466:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"33","id":18009,"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":18011,"nodeType":"ExpressionStatement","src":"19466:17:49"}]},"id":18013,"nodeType":"IfStatement","src":"19205:292:49","trueBody":{"id":18007,"nodeType":"Block","src":"19219:226:49","statements":[{"expression":{"arguments":[{"id":17992,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17908,"src":"19257:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17993,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17902,"src":"19287:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":17994,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17899,"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":17991,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18508,"src":"19234:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":17995,"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":17996,"nodeType":"ExpressionStatement","src":"19234:108:49"},{"expression":{"id":18001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":17997,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17902,"src":"19357:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18000,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17998,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17899,"src":"19373:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"33","id":17999,"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":18002,"nodeType":"ExpressionStatement","src":"19357:31:49"},{"expression":{"id":18005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18003,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17908,"src":"19403:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":18004,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17899,"src":"19420:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"19403:28:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18006,"nodeType":"ExpressionStatement","src":"19403:28:49"}]}},{"assignments":[18015],"declarations":[{"constant":false,"id":18015,"mutability":"mutable","name":"ax","nameLocation":"19514:2:49","nodeType":"VariableDeclaration","scope":18078,"src":"19509:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18014,"name":"uint","nodeType":"ElementaryTypeName","src":"19509:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18035,"initialValue":{"arguments":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18033,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":18020,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17880,"src":"19530:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18024,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18021,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"19536:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18022,"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":18019,"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":18018,"name":"uint8","nodeType":"ElementaryTypeName","src":"19524:5:49","typeDescriptions":{}}},"id":18025,"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":18030,"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":18029,"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":18028,"name":"bytes1","nodeType":"ElementaryTypeName","src":"19553:6:49","typeDescriptions":{}}},"id":18031,"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":18027,"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":18026,"name":"uint8","nodeType":"ElementaryTypeName","src":"19547:5:49","typeDescriptions":{}}},"id":18032,"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":18017,"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":18016,"name":"uint","nodeType":"ElementaryTypeName","src":"19519:4:49","typeDescriptions":{}}},"id":18034,"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":18039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18036,"name":"ax","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18015,"src":"19583:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"id":18037,"name":"args","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17883,"src":"19589:4:49","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":18038,"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":18049,"nodeType":"IfStatement","src":"19579:91:49","trueBody":{"id":18048,"nodeType":"Block","src":"19602:68:49","statements":[{"errorCall":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18043,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18041,"name":"ax","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18015,"src":"19636:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18042,"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":18044,"name":"args","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17883,"src":"19644:4:49","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":18045,"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":18040,"name":"MissingArgs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":16636,"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":18046,"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":18047,"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":"shanghai","externalReferences":[{"declaration":17883,"isOffset":false,"isSlot":false,"src":"19726:4:49","valueSize":1},{"declaration":18015,"isOffset":false,"isSlot":false,"src":"19744:2:49","valueSize":1},{"declaration":17911,"isOffset":false,"isSlot":false,"src":"19706:6:49","valueSize":1},{"declaration":17911,"isOffset":false,"isSlot":false,"src":"19789:6:49","valueSize":1},{"declaration":17911,"isOffset":false,"isSlot":false,"src":"19831:6:49","valueSize":1},{"declaration":17914,"isOffset":false,"isSlot":false,"src":"19767:12:49","valueSize":1},{"declaration":17917,"isOffset":false,"isSlot":false,"src":"19810:13:49","valueSize":1}],"id":18050,"nodeType":"InlineAssembly","src":"19682:179:49"},{"expression":{"arguments":[{"id":18052,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17908,"src":"19902:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18053,"name":"sourcePointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17917,"src":"19930:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18054,"name":"sourceLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17914,"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":18051,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18508,"src":"19881:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":18055,"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":18056,"nodeType":"ExpressionStatement","src":"19881:102:49"},{"expression":{"id":18061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18057,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17905,"src":"19996:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18058,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17899,"src":"20012:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":18059,"name":"sourceLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17914,"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":18062,"nodeType":"ExpressionStatement","src":"19996:42:49"},{"expression":{"id":18065,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18063,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17908,"src":"20051:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":18064,"name":"sourceLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17914,"src":"20068:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20051:29:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18066,"nodeType":"ExpressionStatement","src":"20051:29:49"},{"expression":{"id":18069,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18067,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"20093:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"33","id":18068,"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":18070,"nodeType":"ExpressionStatement","src":"20093:7:49"},{"expression":{"id":18073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18071,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17895,"src":"20113:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18072,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"20119:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20113:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18074,"nodeType":"ExpressionStatement","src":"20113:8:49"},{"expression":{"id":18076,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"20134:7:49","subExpression":{"id":18075,"name":"hits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17888,"src":"20134:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18077,"nodeType":"ExpressionStatement","src":"20134:7:49"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":17939,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":17937,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"18940:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":17938,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17931,"src":"18945:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"18940:11:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18085,"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"18933:1265:49"},{"expression":{"id":18089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18086,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"20206:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":18087,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17880,"src":"20211:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18088,"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":18090,"nodeType":"ExpressionStatement","src":"20206:17:49"}]},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18094,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18092,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17905,"src":"20245:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":18093,"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":18121,"nodeType":"Block","src":"20649:34:49","statements":[{"expression":{"components":[{"id":18117,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17880,"src":"20666:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":18118,"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":18119,"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":17889,"id":18120,"nodeType":"Return","src":"20658:17:49"}]},"id":18122,"nodeType":"IfStatement","src":"20241:442:49","trueBody":{"id":18116,"nodeType":"Block","src":"20263:375:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18097,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18095,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"20276:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18096,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17895,"src":"20281:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20276:8:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18114,"nodeType":"IfStatement","src":"20272:162:49","trueBody":{"id":18113,"nodeType":"Block","src":"20287:147:49","statements":[{"expression":{"arguments":[{"id":18099,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17908,"src":"20317:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18100,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17902,"src":"20343:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18103,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18101,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"20368:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18102,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17895,"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":18098,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18508,"src":"20298:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":18104,"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":18105,"nodeType":"ExpressionStatement","src":"20298:89:49"},{"expression":{"id":18111,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18106,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17905,"src":"20398:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18107,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17891,"src":"20415:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18108,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":17895,"src":"20420:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"20415:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18110,"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":18112,"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":"shanghai","externalReferences":[{"declaration":17886,"isOffset":false,"isSlot":false,"src":"20505:6:49","valueSize":1},{"declaration":17905,"isOffset":false,"isSlot":false,"src":"20513:12:49","valueSize":1},{"declaration":17905,"isOffset":false,"isSlot":false,"src":"20603:12:49","valueSize":1}],"id":18115,"nodeType":"InlineAssembly","src":"20442:189:49"}]}}]},"documentation":{"id":17878,"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":18124,"implemented":true,"kind":"function","modifiers":[],"name":"replace","nameLocation":"18230:7:49","nodeType":"FunctionDefinition","parameters":{"id":17884,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17880,"mutability":"mutable","name":"input","nameLocation":"18251:5:49","nodeType":"VariableDeclaration","scope":18124,"src":"18238:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17879,"name":"bytes","nodeType":"ElementaryTypeName","src":"18238:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":17883,"mutability":"mutable","name":"args","nameLocation":"18274:4:49","nodeType":"VariableDeclaration","scope":18124,"src":"18258:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":17881,"name":"string","nodeType":"ElementaryTypeName","src":"18258:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":17882,"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":17889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":17886,"mutability":"mutable","name":"output","nameLocation":"18326:6:49","nodeType":"VariableDeclaration","scope":18124,"src":"18313:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":17885,"name":"bytes","nodeType":"ElementaryTypeName","src":"18313:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":17888,"mutability":"mutable","name":"hits","nameLocation":"18339:4:49","nodeType":"VariableDeclaration","scope":18124,"src":"18334:9:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17887,"name":"uint","nodeType":"ElementaryTypeName","src":"18334:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"18312:32:49"},"scope":18509,"src":"18221:2467:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18350,"nodeType":"Block","src":"21262:2200:49","statements":[{"assignments":[18139],"declarations":[{"constant":false,"id":18139,"mutability":"mutable","name":"ix","nameLocation":"21274:2:49","nodeType":"VariableDeclaration","scope":18350,"src":"21269:7:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18138,"name":"uint","nodeType":"ElementaryTypeName","src":"21269:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18141,"initialValue":{"hexValue":"30","id":18140,"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":[18143],"declarations":[{"constant":false,"id":18143,"mutability":"mutable","name":"lix","nameLocation":"21287:3:49","nodeType":"VariableDeclaration","scope":18350,"src":"21282:8:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18142,"name":"uint","nodeType":"ElementaryTypeName","src":"21282:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18145,"initialValue":{"hexValue":"30","id":18144,"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":[18147],"declarations":[{"constant":false,"id":18147,"mutability":"mutable","name":"inputLength","nameLocation":"21306:11:49","nodeType":"VariableDeclaration","scope":18350,"src":"21301:16:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18146,"name":"uint","nodeType":"ElementaryTypeName","src":"21301:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18148,"nodeType":"VariableDeclarationStatement","src":"21301:16:49"},{"assignments":[18150],"declarations":[{"constant":false,"id":18150,"mutability":"mutable","name":"inputPointer","nameLocation":"21329:12:49","nodeType":"VariableDeclaration","scope":18350,"src":"21324:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18149,"name":"uint","nodeType":"ElementaryTypeName","src":"21324:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18151,"nodeType":"VariableDeclarationStatement","src":"21324:17:49"},{"assignments":[18153],"declarations":[{"constant":false,"id":18153,"mutability":"mutable","name":"outputLength","nameLocation":"21353:12:49","nodeType":"VariableDeclaration","scope":18350,"src":"21348:17:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18152,"name":"uint","nodeType":"ElementaryTypeName","src":"21348:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18154,"nodeType":"VariableDeclarationStatement","src":"21348:17:49"},{"assignments":[18156],"declarations":[{"constant":false,"id":18156,"mutability":"mutable","name":"outputPointer","nameLocation":"21377:13:49","nodeType":"VariableDeclaration","scope":18350,"src":"21372:18:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18155,"name":"uint","nodeType":"ElementaryTypeName","src":"21372:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18157,"nodeType":"VariableDeclarationStatement","src":"21372:18:49"},{"assignments":[18159],"declarations":[{"constant":false,"id":18159,"mutability":"mutable","name":"argValueLength","nameLocation":"21403:14:49","nodeType":"VariableDeclaration","scope":18350,"src":"21398:19:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18158,"name":"uint","nodeType":"ElementaryTypeName","src":"21398:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18160,"nodeType":"VariableDeclarationStatement","src":"21398:19:49"},{"assignments":[18162],"declarations":[{"constant":false,"id":18162,"mutability":"mutable","name":"argValuePointer","nameLocation":"21429:15:49","nodeType":"VariableDeclaration","scope":18350,"src":"21424:20:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18161,"name":"uint","nodeType":"ElementaryTypeName","src":"21424:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18163,"nodeType":"VariableDeclarationStatement","src":"21424:20:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18164,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18127,"src":"21457:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18165,"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":18166,"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":18173,"nodeType":"IfStatement","src":"21453:56:49","trueBody":{"id":18172,"nodeType":"Block","src":"21475:34:49","statements":[{"expression":{"components":[{"id":18168,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18127,"src":"21492:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":18169,"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":18170,"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":18137,"id":18171,"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":"shanghai","externalReferences":[{"declaration":18131,"isOffset":false,"isSlot":false,"src":"21824:8:49","valueSize":1},{"declaration":18131,"isOffset":false,"isSlot":false,"src":"21910:8:49","valueSize":1},{"declaration":18159,"isOffset":false,"isSlot":false,"src":"21886:14:49","valueSize":1},{"declaration":18162,"isOffset":false,"isSlot":false,"src":"21801:15:49","valueSize":1},{"declaration":18127,"isOffset":false,"isSlot":false,"src":"21596:5:49","valueSize":1},{"declaration":18150,"isOffset":false,"isSlot":false,"src":"21576:12:49","valueSize":1},{"declaration":18134,"isOffset":false,"isSlot":false,"src":"21649:6:49","valueSize":1},{"declaration":18134,"isOffset":false,"isSlot":false,"src":"21737:6:49","valueSize":1},{"declaration":18156,"isOffset":false,"isSlot":false,"src":"21716:13:49","valueSize":1}],"id":18174,"nodeType":"InlineAssembly","src":"21521:405:49"},{"id":18318,"nodeType":"UncheckedBlock","src":"21943:1066:49","statements":[{"assignments":[18176],"declarations":[{"constant":false,"id":18176,"mutability":"mutable","name":"length","nameLocation":"21967:6:49","nodeType":"VariableDeclaration","scope":18318,"src":"21962:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18175,"name":"uint","nodeType":"ElementaryTypeName","src":"21962:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18181,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18177,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18127,"src":"21976:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18178,"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":18179,"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":18311,"nodeType":"Block","src":"22023:949:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18244,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bytes1","typeString":"bytes1"},"id":18192,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18185,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18127,"src":"22050:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18187,"indexExpression":{"id":18186,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"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":18190,"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":18189,"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":18188,"name":"bytes1","nodeType":"ElementaryTypeName","src":"22063:6:49","typeDescriptions":{}}},"id":18191,"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":18202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18193,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18127,"src":"22092:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18197,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18196,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18194,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"22098:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"32","id":18195,"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":18200,"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":18199,"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":18198,"name":"bytes1","nodeType":"ElementaryTypeName","src":"22109:6:49","typeDescriptions":{}}},"id":18201,"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":18213,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18204,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18127,"src":"22138:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18208,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18207,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18205,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"22144:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18206,"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":18211,"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":18210,"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":18209,"name":"bytes1","nodeType":"ElementaryTypeName","src":"22155:6:49","typeDescriptions":{}}},"id":18212,"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":18224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":18215,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18127,"src":"22183:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18219,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18218,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18216,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"22189:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18217,"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":18222,"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":18221,"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":18220,"name":"bytes1","nodeType":"ElementaryTypeName","src":"22200:6:49","typeDescriptions":{}}},"id":18223,"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":18243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18241,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"baseExpression":{"id":18228,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18127,"src":"22234:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18232,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18231,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18229,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"22240:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":18230,"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":18227,"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":18226,"name":"uint8","nodeType":"ElementaryTypeName","src":"22228:5:49","typeDescriptions":{}}},"id":18233,"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":18238,"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":18237,"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":18236,"name":"bytes1","nodeType":"ElementaryTypeName","src":"22257:6:49","typeDescriptions":{}}},"id":18239,"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":18235,"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":18234,"name":"uint8","nodeType":"ElementaryTypeName","src":"22251:5:49","typeDescriptions":{}}},"id":18240,"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":18242,"name":"argIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18129,"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":18309,"nodeType":"Block","src":"22933:30:49","statements":[{"expression":{"id":18307,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"22946:5:49","subExpression":{"id":18306,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"22946:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18308,"nodeType":"ExpressionStatement","src":"22946:5:49"}]},"id":18310,"nodeType":"IfStatement","src":"22034:929:49","trueBody":{"id":18305,"nodeType":"Block","src":"22293:634:49","statements":[{"expression":{"id":18250,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18245,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18147,"src":"22306:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18246,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"22321:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18247,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18143,"src":"22326:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22321:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18249,"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":18251,"nodeType":"ExpressionStatement","src":"22306:24:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18252,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"22347:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18253,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18143,"src":"22352:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22347:8:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18276,"nodeType":"Block","src":"22589:46:49","statements":[{"expression":{"id":18274,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18272,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18150,"src":"22604:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"33","id":18273,"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":18275,"nodeType":"ExpressionStatement","src":"22604:17:49"}]},"id":18277,"nodeType":"IfStatement","src":"22343:292:49","trueBody":{"id":18271,"nodeType":"Block","src":"22357:226:49","statements":[{"expression":{"arguments":[{"id":18256,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18156,"src":"22395:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18257,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18150,"src":"22425:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18258,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18147,"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":18255,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18508,"src":"22372:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":18259,"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":18260,"nodeType":"ExpressionStatement","src":"22372:108:49"},{"expression":{"id":18265,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18261,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18150,"src":"22495:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18262,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18147,"src":"22511:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"33","id":18263,"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":18266,"nodeType":"ExpressionStatement","src":"22495:31:49"},{"expression":{"id":18269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18267,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18156,"src":"22541:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":18268,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18147,"src":"22558:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22541:28:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18270,"nodeType":"ExpressionStatement","src":"22541:28:49"}]}},{"expression":{"arguments":[{"id":18279,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18156,"src":"22668:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18280,"name":"argValuePointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18162,"src":"22696:15:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18281,"name":"argValueLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18159,"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":18278,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18508,"src":"22647:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":18282,"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":18283,"nodeType":"ExpressionStatement","src":"22647:106:49"},{"expression":{"id":18288,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18284,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18153,"src":"22766:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18285,"name":"inputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18147,"src":"22782:11:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":18286,"name":"argValueLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18159,"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":18289,"nodeType":"ExpressionStatement","src":"22766:44:49"},{"expression":{"id":18292,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18290,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18156,"src":"22823:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":18291,"name":"argValueLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18159,"src":"22840:14:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22823:31:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18293,"nodeType":"ExpressionStatement","src":"22823:31:49"},{"expression":{"id":18296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18294,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"22867:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"33","id":18295,"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":18297,"nodeType":"ExpressionStatement","src":"22867:7:49"},{"expression":{"id":18300,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18298,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18143,"src":"22887:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18299,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"22893:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22887:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18301,"nodeType":"ExpressionStatement","src":"22887:8:49"},{"expression":{"id":18303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"22908:7:49","subExpression":{"id":18302,"name":"hits","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18136,"src":"22908:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18304,"nodeType":"ExpressionStatement","src":"22908:7:49"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18184,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18182,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"22008:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":18183,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18176,"src":"22013:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22008:11:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18312,"isSimpleCounterLoop":false,"nodeType":"ForStatement","src":"22001:971:49"},{"expression":{"id":18316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18313,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"22980:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":18314,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18127,"src":"22985:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18315,"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":18317,"nodeType":"ExpressionStatement","src":"22980:17:49"}]},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18321,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18319,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18153,"src":"23019:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":18320,"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":18348,"nodeType":"Block","src":"23423:34:49","statements":[{"expression":{"components":[{"id":18344,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18127,"src":"23440:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":18345,"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":18346,"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":18137,"id":18347,"nodeType":"Return","src":"23432:17:49"}]},"id":18349,"nodeType":"IfStatement","src":"23015:442:49","trueBody":{"id":18343,"nodeType":"Block","src":"23037:375:49","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18324,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18322,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"23050:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18323,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18143,"src":"23055:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23050:8:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18341,"nodeType":"IfStatement","src":"23046:162:49","trueBody":{"id":18340,"nodeType":"Block","src":"23061:147:49","statements":[{"expression":{"arguments":[{"id":18326,"name":"outputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18156,"src":"23091:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":18327,"name":"inputPointer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18150,"src":"23117:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18328,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"23142:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18329,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18143,"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":18325,"name":"memcpy","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18508,"src":"23072:6:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (uint256,uint256,uint256) pure"}},"id":18331,"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":18332,"nodeType":"ExpressionStatement","src":"23072:89:49"},{"expression":{"id":18338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18333,"name":"outputLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18153,"src":"23172:12:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18336,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18334,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18139,"src":"23189:2:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18335,"name":"lix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18143,"src":"23194:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23189:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18337,"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":18339,"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":"shanghai","externalReferences":[{"declaration":18134,"isOffset":false,"isSlot":false,"src":"23279:6:49","valueSize":1},{"declaration":18153,"isOffset":false,"isSlot":false,"src":"23287:12:49","valueSize":1},{"declaration":18153,"isOffset":false,"isSlot":false,"src":"23377:12:49","valueSize":1}],"id":18342,"nodeType":"InlineAssembly","src":"23216:189:49"}]}}]},"documentation":{"id":18125,"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":18351,"implemented":true,"kind":"function","modifiers":[],"name":"replace","nameLocation":"21126:7:49","nodeType":"FunctionDefinition","parameters":{"id":18132,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18127,"mutability":"mutable","name":"input","nameLocation":"21147:5:49","nodeType":"VariableDeclaration","scope":18351,"src":"21134:18:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18126,"name":"bytes","nodeType":"ElementaryTypeName","src":"21134:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":18129,"mutability":"mutable","name":"argIndex","nameLocation":"21160:8:49","nodeType":"VariableDeclaration","scope":18351,"src":"21154:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18128,"name":"uint8","nodeType":"ElementaryTypeName","src":"21154:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18131,"mutability":"mutable","name":"argValue","nameLocation":"21184:8:49","nodeType":"VariableDeclaration","scope":18351,"src":"21170:22:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18130,"name":"string","nodeType":"ElementaryTypeName","src":"21170:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"21133:60:49"},"returnParameters":{"id":18137,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18134,"mutability":"mutable","name":"output","nameLocation":"21240:6:49","nodeType":"VariableDeclaration","scope":18351,"src":"21227:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18133,"name":"bytes","nodeType":"ElementaryTypeName","src":"21227:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":18136,"mutability":"mutable","name":"hits","nameLocation":"21253:4:49","nodeType":"VariableDeclaration","scope":18351,"src":"21248:9:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18135,"name":"uint","nodeType":"ElementaryTypeName","src":"21248:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21226:32:49"},"scope":18509,"src":"21117:2345:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18377,"nodeType":"Block","src":"23923:106:49","statements":[{"assignments":[18363,null],"declarations":[{"constant":false,"id":18363,"mutability":"mutable","name":"_outputBytes","nameLocation":"23944:12:49","nodeType":"VariableDeclaration","scope":18377,"src":"23931:25:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18362,"name":"bytes","nodeType":"ElementaryTypeName","src":"23931:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},null],"id":18371,"initialValue":{"arguments":[{"arguments":[{"id":18367,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18354,"src":"23976:5:49","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":18366,"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":18365,"name":"bytes","nodeType":"ElementaryTypeName","src":"23970:5:49","typeDescriptions":{}}},"id":18368,"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":18369,"name":"args","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18357,"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":18364,"name":"replace","nodeType":"Identifier","overloadedDeclarations":[18124,18351,18378,18407],"referencedDeclaration":18124,"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":18370,"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":18374,"name":"_outputBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18363,"src":"24010:12:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":18373,"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":18372,"name":"string","nodeType":"ElementaryTypeName","src":"24003:6:49","typeDescriptions":{}}},"id":18375,"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":18361,"id":18376,"nodeType":"Return","src":"23996:27:49"}]},"documentation":{"id":18352,"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":18378,"implemented":true,"kind":"function","modifiers":[],"name":"replace","nameLocation":"23821:7:49","nodeType":"FunctionDefinition","parameters":{"id":18358,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18354,"mutability":"mutable","name":"input","nameLocation":"23843:5:49","nodeType":"VariableDeclaration","scope":18378,"src":"23829:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18353,"name":"string","nodeType":"ElementaryTypeName","src":"23829:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":18357,"mutability":"mutable","name":"args","nameLocation":"23866:4:49","nodeType":"VariableDeclaration","scope":18378,"src":"23850:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":18355,"name":"string","nodeType":"ElementaryTypeName","src":"23850:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":18356,"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":18361,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18360,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18378,"src":"23905:13:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18359,"name":"string","nodeType":"ElementaryTypeName","src":"23905:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"23904:15:49"},"scope":18509,"src":"23812:217:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18406,"nodeType":"Block","src":"24531:120:49","statements":[{"assignments":[18391,null],"declarations":[{"constant":false,"id":18391,"mutability":"mutable","name":"_outputBytes","nameLocation":"24552:12:49","nodeType":"VariableDeclaration","scope":18406,"src":"24539:25:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18390,"name":"bytes","nodeType":"ElementaryTypeName","src":"24539:5:49","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},null],"id":18400,"initialValue":{"arguments":[{"arguments":[{"id":18395,"name":"input","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18381,"src":"24584:5:49","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":18394,"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":18393,"name":"bytes","nodeType":"ElementaryTypeName","src":"24578:5:49","typeDescriptions":{}}},"id":18396,"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":18397,"name":"argIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18383,"src":"24592:8:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":18398,"name":"argValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18385,"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":18392,"name":"replace","nodeType":"Identifier","overloadedDeclarations":[18124,18351,18378,18407],"referencedDeclaration":18351,"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":18399,"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":18403,"name":"_outputBytes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18391,"src":"24632:12:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":18402,"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":18401,"name":"string","nodeType":"ElementaryTypeName","src":"24625:6:49","typeDescriptions":{}}},"id":18404,"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":18389,"id":18405,"nodeType":"Return","src":"24618:27:49"}]},"documentation":{"id":18379,"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":18407,"implemented":true,"kind":"function","modifiers":[],"name":"replace","nameLocation":"24411:7:49","nodeType":"FunctionDefinition","parameters":{"id":18386,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18381,"mutability":"mutable","name":"input","nameLocation":"24433:5:49","nodeType":"VariableDeclaration","scope":18407,"src":"24419:19:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18380,"name":"string","nodeType":"ElementaryTypeName","src":"24419:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"},{"constant":false,"id":18383,"mutability":"mutable","name":"argIndex","nameLocation":"24446:8:49","nodeType":"VariableDeclaration","scope":18407,"src":"24440:14:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18382,"name":"uint8","nodeType":"ElementaryTypeName","src":"24440:5:49","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18385,"mutability":"mutable","name":"argValue","nameLocation":"24470:8:49","nodeType":"VariableDeclaration","scope":18407,"src":"24456:22:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18384,"name":"string","nodeType":"ElementaryTypeName","src":"24456:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"24418:61:49"},"returnParameters":{"id":18389,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18388,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18407,"src":"24513:13:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":18387,"name":"string","nodeType":"ElementaryTypeName","src":"24513:6:49","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"24512:15:49"},"scope":18509,"src":"24402:249:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18442,"nodeType":"Block","src":"25329:150:49","statements":[{"condition":{"id":18426,"name":"relative","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18415,"src":"25375:8:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18433,"nodeType":"IfStatement","src":"25371:54:49","trueBody":{"id":18432,"nodeType":"Block","src":"25385:40:49","statements":[{"expression":{"id":18430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18427,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18413,"src":"25394:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"expression":{"id":18428,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18411,"src":"25404:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18429,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25411:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"25404:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25394:23:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18431,"nodeType":"ExpressionStatement","src":"25394:23:49"}]}},{"expression":{"id":18438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":18434,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18411,"src":"25431:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18436,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"25438:6:49","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"25431:13:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":18437,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18413,"src":"25447:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25431:22:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18439,"nodeType":"ExpressionStatement","src":"25431:22:49"},{"expression":{"id":18440,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18413,"src":"25467:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":18425,"id":18441,"nodeType":"Return","src":"25460:13:49"}]},"documentation":{"id":18408,"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":18443,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":18418,"name":"offset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18413,"src":"25278:6:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"expression":{"id":18419,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18411,"src":"25286:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18420,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"25293:4:49","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"25286:11:49","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18421,"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":18422,"kind":"modifierInvocation","modifierName":{"id":18417,"name":"withinRange","nameLocations":["25266:11:49"],"nodeType":"IdentifierPath","referencedDeclaration":16660,"src":"25266:11:49"},"nodeType":"ModifierInvocation","src":"25266:39:49"}],"name":"seek","nameLocation":"25159:4:49","nodeType":"FunctionDefinition","parameters":{"id":18416,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18411,"mutability":"mutable","name":"buffer","nameLocation":"25186:6:49","nodeType":"VariableDeclaration","scope":18443,"src":"25172:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18410,"nodeType":"UserDefinedTypeName","pathNode":{"id":18409,"name":"Buffer","nameLocations":["25172:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"25172:6:49"},"referencedDeclaration":16642,"src":"25172:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":18413,"mutability":"mutable","name":"offset","nameLocation":"25206:6:49","nodeType":"VariableDeclaration","scope":18443,"src":"25201:11:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18412,"name":"uint","nodeType":"ElementaryTypeName","src":"25201:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18415,"mutability":"mutable","name":"relative","nameLocation":"25226:8:49","nodeType":"VariableDeclaration","scope":18443,"src":"25221:13:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18414,"name":"bool","nodeType":"ElementaryTypeName","src":"25221:4:49","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"25163:78:49"},"returnParameters":{"id":18425,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18424,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18443,"src":"25320:4:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18423,"name":"uint","nodeType":"ElementaryTypeName","src":"25320:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25319:6:49"},"scope":18509,"src":"25150:329:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18460,"nodeType":"Block","src":"25918:82:49","statements":[{"expression":{"arguments":[{"id":18455,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18447,"src":"25945:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"id":18456,"name":"relativeOffset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18449,"src":"25960:14:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":18457,"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_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":18454,"name":"seek","nodeType":"Identifier","overloadedDeclarations":[18443,18461],"referencedDeclaration":18443,"src":"25932:4:49","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256,bool) pure returns (uint256)"}},"id":18458,"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":18453,"id":18459,"nodeType":"Return","src":"25925:69:49"}]},"documentation":{"id":18444,"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":18461,"implemented":true,"kind":"function","modifiers":[],"name":"seek","nameLocation":"25807:4:49","nodeType":"FunctionDefinition","parameters":{"id":18450,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18447,"mutability":"mutable","name":"buffer","nameLocation":"25834:6:49","nodeType":"VariableDeclaration","scope":18461,"src":"25820:20:49","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18446,"nodeType":"UserDefinedTypeName","pathNode":{"id":18445,"name":"Buffer","nameLocations":["25820:6:49"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"25820:6:49"},"referencedDeclaration":16642,"src":"25820:6:49","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":18449,"mutability":"mutable","name":"relativeOffset","nameLocation":"25854:14:49","nodeType":"VariableDeclaration","scope":18461,"src":"25849:19:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18448,"name":"uint","nodeType":"ElementaryTypeName","src":"25849:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25811:64:49"},"returnParameters":{"id":18453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18452,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18461,"src":"25909:4:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18451,"name":"uint","nodeType":"ElementaryTypeName","src":"25909:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25908:6:49"},"scope":18509,"src":"25798:202:49","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18507,"nodeType":"Block","src":"26592:526:49","statements":[{"id":18506,"nodeType":"UncheckedBlock","src":"26599:514:49","statements":[{"body":{"id":18487,"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":"shanghai","externalReferences":[{"declaration":18464,"isOffset":false,"isSlot":false,"src":"26736:4:49","valueSize":1},{"declaration":18466,"isOffset":false,"isSlot":false,"src":"26748:3:49","valueSize":1}],"id":18478,"nodeType":"InlineAssembly","src":"26707:57:49"},{"expression":{"id":18481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18479,"name":"dest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18464,"src":"26774:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":18480,"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":18482,"nodeType":"ExpressionStatement","src":"26774:10:49"},{"expression":{"id":18485,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18483,"name":"src","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18466,"src":"26795:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"hexValue":"3332","id":18484,"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":18486,"nodeType":"ExpressionStatement","src":"26795:9:49"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18471,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18468,"src":"26674:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3332","id":18472,"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":18488,"isSimpleCounterLoop":false,"loopExpression":{"expression":{"id":18476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18474,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18468,"src":"26685:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"hexValue":"3332","id":18475,"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":18477,"nodeType":"ExpressionStatement","src":"26685:9:49"},"nodeType":"ForStatement","src":"26667:147:49"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18489,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18468,"src":"26826:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":18490,"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":18505,"nodeType":"IfStatement","src":"26822:284:49","trueBody":{"id":18504,"nodeType":"Block","src":"26835:271:49","statements":[{"assignments":[18493],"declarations":[{"constant":false,"id":18493,"mutability":"mutable","name":"_mask","nameLocation":"26884:5:49","nodeType":"VariableDeclaration","scope":18504,"src":"26879:10:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18492,"name":"uint","nodeType":"ElementaryTypeName","src":"26879:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18502,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"323536","id":18494,"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":18497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3332","id":18495,"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":18496,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18468,"src":"26905:3:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26900:8:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":18498,"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":18500,"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":"shanghai","externalReferences":[{"declaration":18493,"isOffset":false,"isSlot":false,"src":"26981:5:49","valueSize":1},{"declaration":18493,"isOffset":false,"isSlot":false,"src":"27033:5:49","valueSize":1},{"declaration":18464,"isOffset":false,"isSlot":false,"src":"27026:4:49","valueSize":1},{"declaration":18464,"isOffset":false,"isSlot":false,"src":"27058:4:49","valueSize":1},{"declaration":18466,"isOffset":false,"isSlot":false,"src":"26971:3:49","valueSize":1}],"id":18503,"nodeType":"InlineAssembly","src":"26924:173:49"}]}}]}]},"documentation":{"id":18462,"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":18508,"implemented":true,"kind":"function","modifiers":[],"name":"memcpy","nameLocation":"26505:6:49","nodeType":"FunctionDefinition","parameters":{"id":18469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18464,"mutability":"mutable","name":"dest","nameLocation":"26525:4:49","nodeType":"VariableDeclaration","scope":18508,"src":"26520:9:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18463,"name":"uint","nodeType":"ElementaryTypeName","src":"26520:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18466,"mutability":"mutable","name":"src","nameLocation":"26543:3:49","nodeType":"VariableDeclaration","scope":18508,"src":"26538:8:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18465,"name":"uint","nodeType":"ElementaryTypeName","src":"26538:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18468,"mutability":"mutable","name":"len","nameLocation":"26560:3:49","nodeType":"VariableDeclaration","scope":18508,"src":"26555:8:49","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18467,"name":"uint","nodeType":"ElementaryTypeName","src":"26555:4:49","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26511:59:49"},"returnParameters":{"id":18470,"nodeType":"ParameterList","parameters":[],"src":"26592:0:49"},"scope":18509,"src":"26496:622:49","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":18510,"src":"644:26479:49","usedErrors":[16624,16630,16636],"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":[18509],"WitnetCBOR":[20052]},"id":20053,"license":"MIT","nodeType":"SourceUnit","nodes":[{"id":18511,"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":18512,"nameLocation":"-1:-1:-1","nodeType":"ImportDirective","scope":20053,"sourceUnit":18510,"src":"70:28:50","symbolAliases":[],"unitAlias":""},{"abstract":false,"baseContracts":[],"canonicalName":"WitnetCBOR","contractDependencies":[],"contractKind":"library","documentation":{"id":18513,"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":20052,"linearizedBaseContracts":[20052],"name":"WitnetCBOR","nameLocation":"544:10:50","nodeType":"ContractDefinition","nodes":[{"global":false,"id":18517,"libraryName":{"id":18514,"name":"WitnetBuffer","nameLocations":["568:12:50"],"nodeType":"IdentifierPath","referencedDeclaration":18509,"src":"568:12:50"},"nodeType":"UsingForDirective","src":"562:43:50","typeName":{"id":18516,"nodeType":"UserDefinedTypeName","pathNode":{"id":18515,"name":"WitnetBuffer.Buffer","nameLocations":["585:12:50","598:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"585:19:50"},"referencedDeclaration":16642,"src":"585:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}}},{"global":false,"id":18521,"libraryName":{"id":18518,"name":"WitnetCBOR","nameLocations":["615:10:50"],"nodeType":"IdentifierPath","referencedDeclaration":20052,"src":"615:10:50"},"nodeType":"UsingForDirective","src":"609:37:50","typeName":{"id":18520,"nodeType":"UserDefinedTypeName","pathNode":{"id":18519,"name":"WitnetCBOR.CBOR","nameLocations":["630:10:50","641:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"630:15:50"},"referencedDeclaration":18536,"src":"630:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}}},{"canonicalName":"WitnetCBOR.CBOR","documentation":{"id":18522,"nodeType":"StructuredDocumentation","src":"652:86:50","text":"Data struct following the RFC-7049 standard: Concise Binary Object Representation."},"id":18536,"members":[{"constant":false,"id":18525,"mutability":"mutable","name":"buffer","nameLocation":"783:6:50","nodeType":"VariableDeclaration","scope":18536,"src":"763:26:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18524,"nodeType":"UserDefinedTypeName","pathNode":{"id":18523,"name":"WitnetBuffer.Buffer","nameLocations":["763:12:50","776:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"763:19:50"},"referencedDeclaration":16642,"src":"763:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":18527,"mutability":"mutable","name":"initialByte","nameLocation":"804:11:50","nodeType":"VariableDeclaration","scope":18536,"src":"798:17:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18526,"name":"uint8","nodeType":"ElementaryTypeName","src":"798:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18529,"mutability":"mutable","name":"majorType","nameLocation":"830:9:50","nodeType":"VariableDeclaration","scope":18536,"src":"824:15:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18528,"name":"uint8","nodeType":"ElementaryTypeName","src":"824:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18531,"mutability":"mutable","name":"additionalInformation","nameLocation":"854:21:50","nodeType":"VariableDeclaration","scope":18536,"src":"848:27:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18530,"name":"uint8","nodeType":"ElementaryTypeName","src":"848:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":18533,"mutability":"mutable","name":"len","nameLocation":"891:3:50","nodeType":"VariableDeclaration","scope":18536,"src":"884:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":18532,"name":"uint64","nodeType":"ElementaryTypeName","src":"884:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"},{"constant":false,"id":18535,"mutability":"mutable","name":"tag","nameLocation":"910:3:50","nodeType":"VariableDeclaration","scope":18536,"src":"903:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":18534,"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":20052,"src":"742:177:50","visibility":"public"},{"constant":true,"id":18539,"mutability":"constant","name":"MAJOR_TYPE_INT","nameLocation":"949:14:50","nodeType":"VariableDeclaration","scope":20052,"src":"925:42:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18537,"name":"uint8","nodeType":"ElementaryTypeName","src":"925:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"30","id":18538,"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":18542,"mutability":"constant","name":"MAJOR_TYPE_NEGATIVE_INT","nameLocation":"996:23:50","nodeType":"VariableDeclaration","scope":20052,"src":"972:51:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18540,"name":"uint8","nodeType":"ElementaryTypeName","src":"972:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"31","id":18541,"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":18545,"mutability":"constant","name":"MAJOR_TYPE_BYTES","nameLocation":"1052:16:50","nodeType":"VariableDeclaration","scope":20052,"src":"1028:44:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18543,"name":"uint8","nodeType":"ElementaryTypeName","src":"1028:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"32","id":18544,"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":18548,"mutability":"constant","name":"MAJOR_TYPE_STRING","nameLocation":"1101:17:50","nodeType":"VariableDeclaration","scope":20052,"src":"1077:45:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18546,"name":"uint8","nodeType":"ElementaryTypeName","src":"1077:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"33","id":18547,"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":18551,"mutability":"constant","name":"MAJOR_TYPE_ARRAY","nameLocation":"1151:16:50","nodeType":"VariableDeclaration","scope":20052,"src":"1127:44:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18549,"name":"uint8","nodeType":"ElementaryTypeName","src":"1127:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"34","id":18550,"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":18554,"mutability":"constant","name":"MAJOR_TYPE_MAP","nameLocation":"1200:14:50","nodeType":"VariableDeclaration","scope":20052,"src":"1176:42:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18552,"name":"uint8","nodeType":"ElementaryTypeName","src":"1176:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"35","id":18553,"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":18557,"mutability":"constant","name":"MAJOR_TYPE_TAG","nameLocation":"1247:14:50","nodeType":"VariableDeclaration","scope":20052,"src":"1223:42:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18555,"name":"uint8","nodeType":"ElementaryTypeName","src":"1223:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"36","id":18556,"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":18560,"mutability":"constant","name":"MAJOR_TYPE_CONTENT_FREE","nameLocation":"1294:23:50","nodeType":"VariableDeclaration","scope":20052,"src":"1270:51:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18558,"name":"uint8","nodeType":"ElementaryTypeName","src":"1270:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"37","id":18559,"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":18567,"mutability":"constant","name":"UINT32_MAX","nameLocation":"1353:10:50","nodeType":"VariableDeclaration","scope":20052,"src":"1328:54:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":18561,"name":"uint32","nodeType":"ElementaryTypeName","src":"1328:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"value":{"expression":{"arguments":[{"id":18564,"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":18563,"name":"uint32","nodeType":"ElementaryTypeName","src":"1371:6:50","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":18562,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1366:4:50","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":18565,"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":18566,"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":18574,"mutability":"constant","name":"UINT64_MAX","nameLocation":"1412:10:50","nodeType":"VariableDeclaration","scope":20052,"src":"1387:54:50","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":18568,"name":"uint64","nodeType":"ElementaryTypeName","src":"1387:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"value":{"expression":{"arguments":[{"id":18571,"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":18570,"name":"uint64","nodeType":"ElementaryTypeName","src":"1430:6:50","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":18569,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"1425:4:50","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":18572,"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":18573,"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":18576,"name":"EmptyArray","nameLocation":"1456:10:50","nodeType":"ErrorDefinition","parameters":{"id":18575,"nodeType":"ParameterList","parameters":[],"src":"1466:2:50"},"src":"1450:19:50"},{"errorSelector":"6d785b13","id":18580,"name":"InvalidLengthEncoding","nameLocation":"1479:21:50","nodeType":"ErrorDefinition","parameters":{"id":18579,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18578,"mutability":"mutable","name":"length","nameLocation":"1506:6:50","nodeType":"VariableDeclaration","scope":18580,"src":"1501:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18577,"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":18586,"name":"UnexpectedMajorType","nameLocation":"1524:19:50","nodeType":"ErrorDefinition","parameters":{"id":18585,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18582,"mutability":"mutable","name":"read","nameLocation":"1549:4:50","nodeType":"VariableDeclaration","scope":18586,"src":"1544:9:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18581,"name":"uint","nodeType":"ElementaryTypeName","src":"1544:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":18584,"mutability":"mutable","name":"expected","nameLocation":"1560:8:50","nodeType":"VariableDeclaration","scope":18586,"src":"1555:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18583,"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":18590,"name":"UnsupportedPrimitive","nameLocation":"1580:20:50","nodeType":"ErrorDefinition","parameters":{"id":18589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18588,"mutability":"mutable","name":"primitive","nameLocation":"1606:9:50","nodeType":"VariableDeclaration","scope":18590,"src":"1601:14:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18587,"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":18594,"name":"UnsupportedMajorType","nameLocation":"1627:20:50","nodeType":"ErrorDefinition","parameters":{"id":18593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18592,"mutability":"mutable","name":"unexpected","nameLocation":"1653:10:50","nodeType":"VariableDeclaration","scope":18594,"src":"1648:15:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18591,"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":18614,"nodeType":"Block","src":"1758:121:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18604,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18601,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18597,"src":"1769:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18602,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1774:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"1769:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":18603,"name":"expected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18599,"src":"1787:8:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"1769:26:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18612,"nodeType":"IfStatement","src":"1765:101:50","trueBody":{"id":18611,"nodeType":"Block","src":"1797:69:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":18606,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18597,"src":"1833:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18607,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1838:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"1833:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":18608,"name":"expected","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18599,"src":"1849:8:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":18605,"name":"UnexpectedMajorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18586,"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":18609,"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":18610,"nodeType":"RevertStatement","src":"1806:52:50"}]}},{"id":18613,"nodeType":"PlaceholderStatement","src":"1872:1:50"}]},"id":18615,"name":"isMajorType","nameLocation":"1682:11:50","nodeType":"ModifierDefinition","parameters":{"id":18600,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18597,"mutability":"mutable","name":"cbor","nameLocation":"1725:4:50","nodeType":"VariableDeclaration","scope":18615,"src":"1702:27:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18596,"nodeType":"UserDefinedTypeName","pathNode":{"id":18595,"name":"WitnetCBOR.CBOR","nameLocations":["1702:10:50","1713:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"1702:15:50"},"referencedDeclaration":18536,"src":"1702:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"},{"constant":false,"id":18599,"mutability":"mutable","name":"expected","nameLocation":"1744:8:50","nodeType":"VariableDeclaration","scope":18615,"src":"1738:14:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18598,"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":18633,"nodeType":"Block","src":"1938:99:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18624,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":18620,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18618,"src":"1949:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18621,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"1956:4:50","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"1949:11:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18622,"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":18623,"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":18631,"nodeType":"IfStatement","src":"1945:79:50","trueBody":{"id":18630,"nodeType":"Block","src":"1974:50:50","statements":[{"errorCall":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":18625,"name":"WitnetBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18509,"src":"1990:12:50","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WitnetBuffer_$18509_$","typeString":"type(library WitnetBuffer)"}},"id":18627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2003:11:50","memberName":"EmptyBuffer","nodeType":"MemberAccess","referencedDeclaration":16624,"src":"1990:24:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$__$returns$_t_error_$","typeString":"function () pure returns (error)"}},"id":18628,"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":18629,"nodeType":"RevertStatement","src":"1983:33:50"}]}},{"id":18632,"nodeType":"PlaceholderStatement","src":"2030:1:50"}]},"id":18634,"name":"notEmpty","nameLocation":"1894:8:50","nodeType":"ModifierDefinition","parameters":{"id":18619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18618,"mutability":"mutable","name":"buffer","nameLocation":"1930:6:50","nodeType":"VariableDeclaration","scope":18634,"src":"1903:33:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18617,"nodeType":"UserDefinedTypeName","pathNode":{"id":18616,"name":"WitnetBuffer.Buffer","nameLocations":["1903:12:50","1916:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"1903:19:50"},"referencedDeclaration":16642,"src":"1903:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"1902:35:50"},"src":"1885:152:50","virtual":false,"visibility":"internal"},{"body":{"id":18651,"nodeType":"Block","src":"2116:65:50","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":18642,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18637,"src":"2130:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18643,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2135:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"2130:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18644,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2142:6:50","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"2130:18:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"expression":{"expression":{"expression":{"id":18645,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18637,"src":"2152:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18646,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2157:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"2152:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18647,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"2164:4:50","memberName":"data","nodeType":"MemberAccess","referencedDeclaration":16639,"src":"2152:16:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":18648,"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":18641,"id":18650,"nodeType":"Return","src":"2123:52:50"}]},"id":18652,"implemented":true,"kind":"function","modifiers":[],"name":"eof","nameLocation":"2052:3:50","nodeType":"FunctionDefinition","parameters":{"id":18638,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18637,"mutability":"mutable","name":"cbor","nameLocation":"2068:4:50","nodeType":"VariableDeclaration","scope":18652,"src":"2056:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18636,"nodeType":"UserDefinedTypeName","pathNode":{"id":18635,"name":"CBOR","nameLocations":["2056:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"2056:4:50"},"referencedDeclaration":18536,"src":"2056:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"2055:18:50"},"returnParameters":{"id":18641,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18640,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18652,"src":"2107:4:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18639,"name":"bool","nodeType":"ElementaryTypeName","src":"2107:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2106:6:50"},"scope":20052,"src":"2043:138:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18676,"nodeType":"Block","src":"2579:113:50","statements":[{"assignments":[18665],"declarations":[{"constant":false,"id":18665,"mutability":"mutable","name":"buffer","nameLocation":"2613:6:50","nodeType":"VariableDeclaration","scope":18676,"src":"2586:33:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18664,"nodeType":"UserDefinedTypeName","pathNode":{"id":18663,"name":"WitnetBuffer.Buffer","nameLocations":["2586:12:50","2599:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"2586:19:50"},"referencedDeclaration":16642,"src":"2586:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"id":18671,"initialValue":{"arguments":[{"id":18668,"name":"bytecode","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18655,"src":"2642:8:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":18669,"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":18666,"name":"WitnetBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18509,"src":"2622:12:50","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_WitnetBuffer_$18509_$","typeString":"type(library WitnetBuffer)"}},"id":18667,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"2635:6:50","memberName":"Buffer","nodeType":"MemberAccess","referencedDeclaration":16642,"src":"2622:19:50","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Buffer_$16642_storage_ptr_$","typeString":"type(struct WitnetBuffer.Buffer storage pointer)"}},"id":18670,"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_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"nodeType":"VariableDeclarationStatement","src":"2586:68:50"},{"expression":{"arguments":[{"id":18673,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18665,"src":"2679:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":18672,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18786,"src":"2668:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":18674,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18660,"id":18675,"nodeType":"Return","src":"2661:25:50"}]},"documentation":{"id":18653,"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":18677,"implemented":true,"kind":"function","modifiers":[],"name":"fromBytes","nameLocation":"2497:9:50","nodeType":"FunctionDefinition","parameters":{"id":18656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18655,"mutability":"mutable","name":"bytecode","nameLocation":"2520:8:50","nodeType":"VariableDeclaration","scope":18677,"src":"2507:21:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":18654,"name":"bytes","nodeType":"ElementaryTypeName","src":"2507:5:50","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"2506:23:50"},"returnParameters":{"id":18660,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18659,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18677,"src":"2563:11:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18658,"nodeType":"UserDefinedTypeName","pathNode":{"id":18657,"name":"CBOR","nameLocations":["2563:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"2563:4:50"},"referencedDeclaration":18536,"src":"2563:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"2562:13:50"},"scope":20052,"src":"2488:204:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18785,"nodeType":"Block","src":"3136:907:50","statements":[{"assignments":[18691],"declarations":[{"constant":false,"id":18691,"mutability":"mutable","name":"initialByte","nameLocation":"3149:11:50","nodeType":"VariableDeclaration","scope":18785,"src":"3143:17:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18690,"name":"uint8","nodeType":"ElementaryTypeName","src":"3143:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":18692,"nodeType":"VariableDeclarationStatement","src":"3143:17:50"},{"assignments":[18694],"declarations":[{"constant":false,"id":18694,"mutability":"mutable","name":"majorType","nameLocation":"3173:9:50","nodeType":"VariableDeclaration","scope":18785,"src":"3167:15:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18693,"name":"uint8","nodeType":"ElementaryTypeName","src":"3167:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":18696,"initialValue":{"hexValue":"323535","id":18695,"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":[18698],"declarations":[{"constant":false,"id":18698,"mutability":"mutable","name":"additionalInformation","nameLocation":"3201:21:50","nodeType":"VariableDeclaration","scope":18785,"src":"3195:27:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":18697,"name":"uint8","nodeType":"ElementaryTypeName","src":"3195:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":18699,"nodeType":"VariableDeclarationStatement","src":"3195:27:50"},{"assignments":[18701],"declarations":[{"constant":false,"id":18701,"mutability":"mutable","name":"tag","nameLocation":"3236:3:50","nodeType":"VariableDeclaration","scope":18785,"src":"3229:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":18700,"name":"uint64","nodeType":"ElementaryTypeName","src":"3229:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":18703,"initialValue":{"id":18702,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18574,"src":"3242:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"VariableDeclarationStatement","src":"3229:23:50"},{"assignments":[18705],"declarations":[{"constant":false,"id":18705,"mutability":"mutable","name":"len","nameLocation":"3267:3:50","nodeType":"VariableDeclaration","scope":18785,"src":"3259:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18704,"name":"uint256","nodeType":"ElementaryTypeName","src":"3259:7:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18706,"nodeType":"VariableDeclarationStatement","src":"3259:11:50"},{"assignments":[18708],"declarations":[{"constant":false,"id":18708,"mutability":"mutable","name":"isTagged","nameLocation":"3282:8:50","nodeType":"VariableDeclaration","scope":18785,"src":"3277:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":18707,"name":"bool","nodeType":"ElementaryTypeName","src":"3277:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":18710,"initialValue":{"hexValue":"74727565","id":18709,"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":18762,"nodeType":"Block","src":"3321:475:50","statements":[{"expression":{"id":18716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18712,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18691,"src":"3387:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":18713,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18681,"src":"3401:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18714,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3408:9:50","memberName":"readUint8","nodeType":"MemberAccess","referencedDeclaration":17579,"src":"3401:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint8_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":18715,"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":18717,"nodeType":"ExpressionStatement","src":"3387:32:50"},{"expression":{"id":18719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"3428:6:50","subExpression":{"id":18718,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18705,"src":"3428:3:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18720,"nodeType":"ExpressionStatement","src":"3428:6:50"},{"expression":{"id":18725,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18721,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18694,"src":"3443:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18724,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18722,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18691,"src":"3455:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"35","id":18723,"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":18726,"nodeType":"ExpressionStatement","src":"3443:28:50"},{"expression":{"id":18731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18727,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18698,"src":"3480:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18728,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18691,"src":"3504:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783166","id":18729,"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":18732,"nodeType":"ExpressionStatement","src":"3480:42:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18735,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18733,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18694,"src":"3569:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18734,"name":"MAJOR_TYPE_TAG","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18557,"src":"3582:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3569:27:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":18760,"nodeType":"Block","src":"3752:37:50","statements":[{"expression":{"id":18758,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18756,"name":"isTagged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"3763:8:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":18757,"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":18759,"nodeType":"ExpressionStatement","src":"3763:16:50"}]},"id":18761,"nodeType":"IfStatement","src":"3565:224:50","trueBody":{"id":18755,"nodeType":"Block","src":"3598:148:50","statements":[{"assignments":[18737],"declarations":[{"constant":false,"id":18737,"mutability":"mutable","name":"_cursor","nameLocation":"3614:7:50","nodeType":"VariableDeclaration","scope":18755,"src":"3609:12:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":18736,"name":"uint","nodeType":"ElementaryTypeName","src":"3609:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":18740,"initialValue":{"expression":{"id":18738,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18681,"src":"3624:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18739,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3631:6:50","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"3624:13:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"3609:28:50"},{"expression":{"id":18746,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18741,"name":"tag","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18701,"src":"3648:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":18743,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18681,"src":"3665:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"id":18744,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18698,"src":"3673:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":18742,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"3654:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":18745,"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":18747,"nodeType":"ExpressionStatement","src":"3648:47:50"},{"expression":{"id":18753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":18748,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18705,"src":"3706:3:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18749,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18681,"src":"3713:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18750,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"3720:6:50","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"3713:13:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":18751,"name":"_cursor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18737,"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":18754,"nodeType":"ExpressionStatement","src":"3706:30:50"}]}}]},"condition":{"id":18711,"name":"isTagged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18708,"src":"3311:8:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18763,"nodeType":"WhileStatement","src":"3304:492:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":18764,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18694,"src":"3806:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":18765,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18560,"src":"3818:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"3806:35:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":18772,"nodeType":"IfStatement","src":"3802:96:50","trueBody":{"id":18771,"nodeType":"Block","src":"3843:55:50","statements":[{"errorCall":{"arguments":[{"id":18768,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18694,"src":"3880:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":18767,"name":"UnsupportedMajorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18594,"src":"3859:20:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":18769,"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":18770,"nodeType":"RevertStatement","src":"3852:38:50"}]}},{"expression":{"arguments":[{"id":18774,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18681,"src":"3924:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"id":18775,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18691,"src":"3939:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":18776,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18694,"src":"3959:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":18777,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18698,"src":"3977:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"arguments":[{"id":18780,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18705,"src":"4014:3:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":18779,"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":18778,"name":"uint64","nodeType":"ElementaryTypeName","src":"4007:6:50","typeDescriptions":{}}},"id":18781,"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":18782,"name":"tag","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18701,"src":"4027:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_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":18773,"name":"CBOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18536,"src":"3911:4:50","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_CBOR_$18536_storage_ptr_$","typeString":"type(struct WitnetCBOR.CBOR storage pointer)"}},"id":18783,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18689,"id":18784,"nodeType":"Return","src":"3904:133:50"}]},"documentation":{"id":18678,"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":18786,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":18684,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18681,"src":"3098:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"id":18685,"kind":"modifierInvocation","modifierName":{"id":18683,"name":"notEmpty","nameLocations":["3089:8:50"],"nodeType":"IdentifierPath","referencedDeclaration":18634,"src":"3089:8:50"},"nodeType":"ModifierInvocation","src":"3089:16:50"}],"name":"fromBuffer","nameLocation":"3019:10:50","nodeType":"FunctionDefinition","parameters":{"id":18682,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18681,"mutability":"mutable","name":"buffer","nameLocation":"3057:6:50","nodeType":"VariableDeclaration","scope":18786,"src":"3030:33:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":18680,"nodeType":"UserDefinedTypeName","pathNode":{"id":18679,"name":"WitnetBuffer.Buffer","nameLocations":["3030:12:50","3043:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"3030:19:50"},"referencedDeclaration":16642,"src":"3030:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"}],"src":"3029:35:50"},"returnParameters":{"id":18689,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18688,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18786,"src":"3120:11:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18687,"nodeType":"UserDefinedTypeName","pathNode":{"id":18686,"name":"CBOR","nameLocations":["3120:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"3120:4:50"},"referencedDeclaration":18536,"src":"3120:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"3119:13:50"},"scope":20052,"src":"3010:1033:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18812,"nodeType":"Block","src":"4152:242:50","statements":[{"expression":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":18796,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18789,"src":"4188:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18797,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4193:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"4188:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18798,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4200:4:50","memberName":"fork","nodeType":"MemberAccess","referencedDeclaration":16726,"src":"4188:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_struct$_Buffer_$16642_memory_ptr_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetBuffer.Buffer memory)"}},"id":18799,"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_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":18800,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18789,"src":"4228:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18801,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4233:11:50","memberName":"initialByte","nodeType":"MemberAccess","referencedDeclaration":18527,"src":"4228:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"expression":{"id":18802,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18789,"src":"4264:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18803,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4269:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"4264:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"expression":{"id":18804,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18789,"src":"4310:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18805,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4315:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"4310:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"expression":{"id":18806,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18789,"src":"4350:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18807,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4355:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18533,"src":"4350:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},{"expression":{"id":18808,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18789,"src":"4372:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18809,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4377:3:50","memberName":"tag","nodeType":"MemberAccess","referencedDeclaration":18535,"src":"4372:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_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":18795,"name":"CBOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18536,"src":"4166:4:50","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_CBOR_$18536_storage_ptr_$","typeString":"type(struct WitnetCBOR.CBOR storage pointer)"}},"id":18810,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18794,"id":18811,"nodeType":"Return","src":"4159:229:50"}]},"id":18813,"implemented":true,"kind":"function","modifiers":[],"name":"fork","nameLocation":"4058:4:50","nodeType":"FunctionDefinition","parameters":{"id":18790,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18789,"mutability":"mutable","name":"self","nameLocation":"4086:4:50","nodeType":"VariableDeclaration","scope":18813,"src":"4063:27:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18788,"nodeType":"UserDefinedTypeName","pathNode":{"id":18787,"name":"WitnetCBOR.CBOR","nameLocations":["4063:10:50","4074:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"4063:15:50"},"referencedDeclaration":18536,"src":"4063:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4062:29:50"},"returnParameters":{"id":18794,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18793,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18813,"src":"4125:22:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18792,"nodeType":"UserDefinedTypeName","pathNode":{"id":18791,"name":"WitnetCBOR.CBOR","nameLocations":["4125:10:50","4136:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"4125:15:50"},"referencedDeclaration":18536,"src":"4125:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4124:24:50"},"scope":20052,"src":"4049:345:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18836,"nodeType":"Block","src":"4498:110:50","statements":[{"condition":{"id":18825,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"4509:11:50","subExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":18822,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18816,"src":"4510:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18823,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4515:3:50","memberName":"eof","nodeType":"MemberAccess","referencedDeclaration":18652,"src":"4510:8:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_bool_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (bool)"}},"id":18824,"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":18834,"nodeType":"Block","src":"4575:28:50","statements":[{"expression":{"id":18832,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18816,"src":"4591:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18821,"id":18833,"nodeType":"Return","src":"4584:11:50"}]},"id":18835,"nodeType":"IfStatement","src":"4505:98:50","trueBody":{"id":18831,"nodeType":"Block","src":"4522:47:50","statements":[{"expression":{"arguments":[{"expression":{"id":18827,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18816,"src":"4549:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18828,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4554:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"4549:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":18826,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18786,"src":"4538:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":18829,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18821,"id":18830,"nodeType":"Return","src":"4531:30:50"}]}}]},"id":18837,"implemented":true,"kind":"function","modifiers":[],"name":"settle","nameLocation":"4409:6:50","nodeType":"FunctionDefinition","parameters":{"id":18817,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18816,"mutability":"mutable","name":"self","nameLocation":"4428:4:50","nodeType":"VariableDeclaration","scope":18837,"src":"4416:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18815,"nodeType":"UserDefinedTypeName","pathNode":{"id":18814,"name":"CBOR","nameLocations":["4416:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"4416:4:50"},"referencedDeclaration":18536,"src":"4416:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4415:18:50"},"returnParameters":{"id":18821,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18820,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18837,"src":"4471:22:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18819,"nodeType":"UserDefinedTypeName","pathNode":{"id":18818,"name":"WitnetCBOR.CBOR","nameLocations":["4471:10:50","4482:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"4471:15:50"},"referencedDeclaration":18536,"src":"4471:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4470:24:50"},"scope":20052,"src":"4400:208:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18956,"nodeType":"Block","src":"4710:1039:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18849,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18846,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"4729:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18847,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4734:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"4729:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18848,"name":"MAJOR_TYPE_INT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18539,"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":18853,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18850,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"4774:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18851,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4779:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"4774:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18852,"name":"MAJOR_TYPE_NEGATIVE_INT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18542,"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":18868,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":18863,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18855,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"4841:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18856,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4846:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"4841:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18857,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18560,"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":18862,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18859,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"4900:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18860,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4905:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"4900:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"3235","id":18861,"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":18867,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18864,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"4949:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18865,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"4954:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"4949:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"hexValue":"3237","id":18866,"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":18869,"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":18890,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18885,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18882,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5076:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18883,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5081:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"5076:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18884,"name":"MAJOR_TYPE_STRING","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18548,"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":18889,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18886,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5126:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18887,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5131:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"5126:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18888,"name":"MAJOR_TYPE_BYTES","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18545,"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":18917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18909,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5301:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18910,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5306:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"5301:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18911,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18551,"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":18916,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18913,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5348:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18914,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5353:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"5348:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":18915,"name":"MAJOR_TYPE_MAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18554,"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":18944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18933,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18930,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5493:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18931,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5498:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"5493:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":18932,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18560,"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":18942,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18934,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5560:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18935,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5565:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"5560:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"3230","id":18936,"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":18941,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18938,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5609:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18939,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5614:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"5609:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"3231","id":18940,"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":18943,"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":18950,"nodeType":"IfStatement","src":"5480:246:50","trueBody":{"id":18949,"nodeType":"Block","src":"5660:66:50","statements":[{"expression":{"arguments":[{"hexValue":"5769746e657443424f522e736b69703a20756e737570706f72746564206d616a6f722074797065","id":18946,"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":18945,"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":18947,"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":18948,"nodeType":"ExpressionStatement","src":"5669:49:50"}]}},"id":18951,"nodeType":"IfStatement","src":"5289:437:50","trueBody":{"id":18929,"nodeType":"Block","src":"5388:86:50","statements":[{"expression":{"id":18927,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":18918,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5398:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18920,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5403:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18533,"src":"5398:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":18922,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5420:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18923,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5425:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"5420:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":18924,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5433:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18925,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5438:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"5433:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":18921,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"5409:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":18926,"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":18928,"nodeType":"ExpressionStatement","src":"5398:62:50"}]}},"id":18952,"nodeType":"IfStatement","src":"5062:664:50","trueBody":{"id":18908,"nodeType":"Block","src":"5168:115:50","statements":[{"assignments":[18892],"declarations":[{"constant":false,"id":18892,"mutability":"mutable","name":"len","nameLocation":"5184:3:50","nodeType":"VariableDeclaration","scope":18908,"src":"5177:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":18891,"name":"uint64","nodeType":"ElementaryTypeName","src":"5177:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":18899,"initialValue":{"arguments":[{"expression":{"id":18894,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5201:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18895,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5206:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"5201:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":18896,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5214:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18897,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5219:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"5214:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":18893,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"5190:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":18898,"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":18906,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"expression":{"id":18900,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5250:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18903,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5255:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"5250:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18904,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5262:6:50","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"5250:18:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":18905,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18892,"src":"5272:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"5250:25:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":18907,"nodeType":"ExpressionStatement","src":"5250:25:50"}]}},"id":18953,"nodeType":"IfStatement","src":"4717:1009:50","trueBody":{"id":18881,"nodeType":"Block","src":"5000:56:50","statements":[{"expression":{"id":18879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"expression":{"id":18871,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5009:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18874,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5014:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"5009:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":18875,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"5021:6:50","memberName":"cursor","nodeType":"MemberAccess","referencedDeclaration":16641,"src":"5009:18:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":18876,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5031:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18877,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5036:10:50","memberName":"peekLength","nodeType":"MemberAccess","referencedDeclaration":18997,"src":"5031:15:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":18878,"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":18880,"nodeType":"ExpressionStatement","src":"5009:39:50"}]}},{"expression":{"id":18954,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18840,"src":"5739:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"functionReturnParameters":18845,"id":18955,"nodeType":"Return","src":"5732:11:50"}]},"id":18957,"implemented":true,"kind":"function","modifiers":[],"name":"skip","nameLocation":"4623:4:50","nodeType":"FunctionDefinition","parameters":{"id":18841,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18840,"mutability":"mutable","name":"self","nameLocation":"4640:4:50","nodeType":"VariableDeclaration","scope":18957,"src":"4628:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18839,"nodeType":"UserDefinedTypeName","pathNode":{"id":18838,"name":"CBOR","nameLocations":["4628:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"4628:4:50"},"referencedDeclaration":18536,"src":"4628:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4627:18:50"},"returnParameters":{"id":18845,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18844,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18957,"src":"4683:22:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18843,"nodeType":"UserDefinedTypeName","pathNode":{"id":18842,"name":"WitnetCBOR.CBOR","nameLocations":["4683:10:50","4694:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"4683:15:50"},"referencedDeclaration":18536,"src":"4683:15:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"4682:24:50"},"scope":20052,"src":"4614:1135:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":18996,"nodeType":"Block","src":"5837:266:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":18968,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18965,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18960,"src":"5848:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18966,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5853:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"5848:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3234","id":18967,"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":18975,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18972,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18960,"src":"5916:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18973,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5921:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"5916:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3238","id":18974,"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":18993,"nodeType":"Block","src":"6025:73:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":18989,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18960,"src":"6063:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18990,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6068:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"6063:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":18988,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18580,"src":"6041:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":18991,"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":18992,"nodeType":"RevertStatement","src":"6034:56:50"}]},"id":18994,"nodeType":"IfStatement","src":"5912:186:50","trueBody":{"id":18987,"nodeType":"Block","src":"5949:70:50","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":18984,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"31","id":18978,"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":18982,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":18979,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18960,"src":"5978:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":18980,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"5983:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"5978:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"3234","id":18981,"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":18983,"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":18977,"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":18976,"name":"uint64","nodeType":"ElementaryTypeName","src":"5965:6:50","typeDescriptions":{}}},"id":18985,"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":18964,"id":18986,"nodeType":"Return","src":"5958:53:50"}]}},"id":18995,"nodeType":"IfStatement","src":"5844:254:50","trueBody":{"id":18971,"nodeType":"Block","src":"5881:25:50","statements":[{"expression":{"hexValue":"30","id":18969,"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":18964,"id":18970,"nodeType":"Return","src":"5890:8:50"}]}}]},"id":18997,"implemented":true,"kind":"function","modifiers":[],"name":"peekLength","nameLocation":"5764:10:50","nodeType":"FunctionDefinition","parameters":{"id":18961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18960,"mutability":"mutable","name":"self","nameLocation":"5787:4:50","nodeType":"VariableDeclaration","scope":18997,"src":"5775:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18959,"nodeType":"UserDefinedTypeName","pathNode":{"id":18958,"name":"CBOR","nameLocations":["5775:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"5775:4:50"},"referencedDeclaration":18536,"src":"5775:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"5774:18:50"},"returnParameters":{"id":18964,"nodeType":"ParameterList","parameters":[{"constant":false,"id":18963,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":18997,"src":"5826:6:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":18962,"name":"uint64","nodeType":"ElementaryTypeName","src":"5826:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"5825:8:50"},"scope":20052,"src":"5755:348:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19117,"nodeType":"Block","src":"6244:1096:50","statements":[{"assignments":[19012],"declarations":[{"constant":false,"id":19012,"mutability":"mutable","name":"len","nameLocation":"6343:3:50","nodeType":"VariableDeclaration","scope":19117,"src":"6336:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19011,"name":"uint64","nodeType":"ElementaryTypeName","src":"6336:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19019,"initialValue":{"arguments":[{"expression":{"id":19014,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"6360:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19015,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6365:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"6360:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19016,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"6373:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19017,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6378:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"6373:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19013,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"6349:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19018,"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":19029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19020,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19009,"src":"6407:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19025,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19012,"src":"6426:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":19026,"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":19024,"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_$18536_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct WitnetCBOR.CBOR memory[] memory)"},"typeName":{"baseType":{"id":19022,"nodeType":"UserDefinedTypeName","pathNode":{"id":19021,"name":"CBOR","nameLocations":["6419:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"6419:4:50"},"referencedDeclaration":18536,"src":"6419:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19023,"nodeType":"ArrayTypeName","src":"6419:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}}},"id":19028,"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_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"src":"6407:27:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19030,"nodeType":"ExpressionStatement","src":"6407:27:50"},{"body":{"id":19109,"nodeType":"Block","src":"6476:704:50","statements":[{"expression":{"id":19045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19041,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"6529:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19042,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"6536:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19043,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6541:6:50","memberName":"settle","nodeType":"MemberAccess","referencedDeclaration":18837,"src":"6536:11:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19044,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"6529:20:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19046,"nodeType":"ExpressionStatement","src":"6529:20:50"},{"expression":{"id":19053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19047,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19009,"src":"6623:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19049,"indexExpression":{"id":19048,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19032,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19050,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"6635:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19051,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6640:4:50","memberName":"fork","nodeType":"MemberAccess","referencedDeclaration":18813,"src":"6635:9:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19052,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"6623:23:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19054,"nodeType":"ExpressionStatement","src":"6623:23:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19055,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"6659:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19056,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6664:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"6659:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19057,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18551,"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":19081,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19078,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"6882:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19079,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6887:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"6882:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19080,"name":"MAJOR_TYPE_MAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18554,"src":"6900:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"6882:32:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19106,"nodeType":"Block","src":"7095:78:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19101,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"7152:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19103,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7157:4:50","memberName":"skip","nodeType":"MemberAccess","referencedDeclaration":18957,"src":"7152:9:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19104,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19105,"nodeType":"ExpressionStatement","src":"7152:11:50"}]},"id":19107,"nodeType":"IfStatement","src":"6878:295:50","trueBody":{"id":19100,"nodeType":"Block","src":"6916:173:50","statements":[{"assignments":[19086],"declarations":[{"constant":false,"id":19086,"mutability":"mutable","name":"_subitems","nameLocation":"6941:9:50","nodeType":"VariableDeclaration","scope":19100,"src":"6927:23:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":19084,"nodeType":"UserDefinedTypeName","pathNode":{"id":19083,"name":"CBOR","nameLocations":["6927:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"6927:4:50"},"referencedDeclaration":18536,"src":"6927:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19085,"nodeType":"ArrayTypeName","src":"6927:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"id":19090,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19087,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"6953:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19088,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6958:7:50","memberName":"readMap","nodeType":"MemberAccess","referencedDeclaration":19249,"src":"6953:12:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":19089,"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_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"6927:40:50"},{"expression":{"id":19098,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19091,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"7041:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":19092,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19086,"src":"7048:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19097,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19096,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19093,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19086,"src":"7058:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19094,"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":19095,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"7041:38:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19099,"nodeType":"ExpressionStatement","src":"7041:38:50"}]}},"id":19108,"nodeType":"IfStatement","src":"6655:518:50","trueBody":{"id":19077,"nodeType":"Block","src":"6695:177:50","statements":[{"assignments":[19063],"declarations":[{"constant":false,"id":19063,"mutability":"mutable","name":"_subitems","nameLocation":"6720:9:50","nodeType":"VariableDeclaration","scope":19077,"src":"6706:23:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":19061,"nodeType":"UserDefinedTypeName","pathNode":{"id":19060,"name":"CBOR","nameLocations":["6706:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"6706:4:50"},"referencedDeclaration":18536,"src":"6706:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19062,"nodeType":"ArrayTypeName","src":"6706:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"id":19067,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19064,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"6732:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19065,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"6737:9:50","memberName":"readArray","nodeType":"MemberAccess","referencedDeclaration":19118,"src":"6732:14:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":19066,"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_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"6706:42:50"},{"expression":{"id":19075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19068,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"6824:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":19069,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19063,"src":"6831:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19074,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19070,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19063,"src":"6841:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19071,"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":19072,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"6824:38:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19076,"nodeType":"ExpressionStatement","src":"6824:38:50"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19037,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19035,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19032,"src":"6459:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19036,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19012,"src":"6464:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"6459:8:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19110,"initializationExpression":{"assignments":[19032],"declarations":[{"constant":false,"id":19032,"mutability":"mutable","name":"ix","nameLocation":"6451:2:50","nodeType":"VariableDeclaration","scope":19110,"src":"6446:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19031,"name":"uint","nodeType":"ElementaryTypeName","src":"6446:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19034,"initialValue":{"hexValue":"30","id":19033,"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":19039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"6469:5:50","subExpression":{"id":19038,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19032,"src":"6469:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19040,"nodeType":"ExpressionStatement","src":"6469:5:50"},"nodeType":"ForStatement","src":"6441:739:50"},{"expression":{"id":19115,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19111,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19009,"src":"7317:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19113,"indexExpression":{"id":19112,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19012,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":19114,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"7330:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"7317:17:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19116,"nodeType":"ExpressionStatement","src":"7317:17:50"}]},"id":19118,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19003,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19000,"src":"6182:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19004,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18551,"src":"6188:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19005,"kind":"modifierInvocation","modifierName":{"id":19002,"name":"isMajorType","nameLocations":["6170:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"6170:11:50"},"nodeType":"ModifierInvocation","src":"6170:35:50"}],"name":"readArray","nameLocation":"6118:9:50","nodeType":"FunctionDefinition","parameters":{"id":19001,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19000,"mutability":"mutable","name":"self","nameLocation":"6140:4:50","nodeType":"VariableDeclaration","scope":19118,"src":"6128:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":18999,"nodeType":"UserDefinedTypeName","pathNode":{"id":18998,"name":"CBOR","nameLocations":["6128:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"6128:4:50"},"referencedDeclaration":18536,"src":"6128:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"6127:18:50"},"returnParameters":{"id":19010,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19009,"mutability":"mutable","name":"items","nameLocation":"6234:5:50","nodeType":"VariableDeclaration","scope":19118,"src":"6220:19:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":19007,"nodeType":"UserDefinedTypeName","pathNode":{"id":19006,"name":"CBOR","nameLocations":["6220:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"6220:4:50"},"referencedDeclaration":18536,"src":"6220:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19008,"nodeType":"ArrayTypeName","src":"6220:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"src":"6219:21:50"},"scope":20052,"src":"6109:1231:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19248,"nodeType":"Block","src":"7477:1178:50","statements":[{"assignments":[19133],"declarations":[{"constant":false,"id":19133,"mutability":"mutable","name":"len","nameLocation":"7592:3:50","nodeType":"VariableDeclaration","scope":19248,"src":"7585:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19132,"name":"uint64","nodeType":"ElementaryTypeName","src":"7585:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19142,"initialValue":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19141,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"expression":{"id":19135,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"7609:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19136,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7614:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"7609:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19137,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"7622:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19138,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7627:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"7622:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19134,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"7598:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19139,"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":19140,"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":19152,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19143,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19130,"src":"7660:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19150,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19148,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19133,"src":"7679:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":19149,"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":19147,"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_$18536_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct WitnetCBOR.CBOR memory[] memory)"},"typeName":{"baseType":{"id":19145,"nodeType":"UserDefinedTypeName","pathNode":{"id":19144,"name":"CBOR","nameLocations":["7672:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"7672:4:50"},"referencedDeclaration":18536,"src":"7672:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19146,"nodeType":"ArrayTypeName","src":"7672:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}}},"id":19151,"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_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"src":"7660:27:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19153,"nodeType":"ExpressionStatement","src":"7660:27:50"},{"body":{"id":19240,"nodeType":"Block","src":"7729:766:50","statements":[{"expression":{"id":19168,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19164,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"7782:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19165,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"7789:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19166,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7794:6:50","memberName":"settle","nodeType":"MemberAccess","referencedDeclaration":18837,"src":"7789:11:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19167,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"7782:20:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19169,"nodeType":"ExpressionStatement","src":"7782:20:50"},{"expression":{"id":19176,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19170,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19130,"src":"7876:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19172,"indexExpression":{"id":19171,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19155,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19173,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"7888:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19174,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7893:4:50","memberName":"fork","nodeType":"MemberAccess","referencedDeclaration":18813,"src":"7888:9:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19175,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"7876:23:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19177,"nodeType":"ExpressionStatement","src":"7876:23:50"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":19187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19180,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19178,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19155,"src":"7912:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"%","rightExpression":{"hexValue":"32","id":19179,"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":19181,"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":19186,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19183,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"7927:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19184,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"7932:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"7927:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":19185,"name":"MAJOR_TYPE_STRING","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18548,"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":19203,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19198,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19195,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"8056:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19196,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8061:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"8056:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19197,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18551,"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":19202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19199,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"8094:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19200,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8099:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"8094:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19201,"name":"MAJOR_TYPE_MAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18554,"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":19237,"nodeType":"Block","src":"8410:78:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19232,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"8467:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19234,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8472:4:50","memberName":"skip","nodeType":"MemberAccess","referencedDeclaration":18957,"src":"8467:9:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19235,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19236,"nodeType":"ExpressionStatement","src":"8467:11:50"}]},"id":19238,"nodeType":"IfStatement","src":"8052:436:50","trueBody":{"id":19231,"nodeType":"Block","src":"8128:276:50","statements":[{"assignments":[19208],"declarations":[{"constant":false,"id":19208,"mutability":"mutable","name":"_subitems","nameLocation":"8153:9:50","nodeType":"VariableDeclaration","scope":19231,"src":"8139:23:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":19206,"nodeType":"UserDefinedTypeName","pathNode":{"id":19205,"name":"CBOR","nameLocations":["8139:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"8139:4:50"},"referencedDeclaration":18536,"src":"8139:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19207,"nodeType":"ArrayTypeName","src":"8139:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"id":19221,"initialValue":{"components":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19212,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19209,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"8166:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19210,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8171:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"8166:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19211,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18551,"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":19216,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"8248:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19217,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8253:7:50","memberName":"readMap","nodeType":"MemberAccess","referencedDeclaration":19249,"src":"8248:12:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":19218,"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_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19219,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"8166:96:50","trueExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19213,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"8216:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19214,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8221:9:50","memberName":"readArray","nodeType":"MemberAccess","referencedDeclaration":19118,"src":"8216:14:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr_$attached_to$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (struct WitnetCBOR.CBOR memory[] memory)"}},"id":19215,"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_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}}],"id":19220,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"8165:108:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"8139:134:50"},{"expression":{"id":19229,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19222,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"8356:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"baseExpression":{"id":19223,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19208,"src":"8363:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19228,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19227,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19224,"name":"_subitems","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19208,"src":"8373:9:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19225,"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":19226,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"8356:38:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19230,"nodeType":"ExpressionStatement","src":"8356:38:50"}]}},"id":19239,"nodeType":"IfStatement","src":"7908:580:50","trueBody":{"id":19194,"nodeType":"Block","src":"7964:82:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19189,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"8002:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19190,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"8007:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"8002:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":19191,"name":"MAJOR_TYPE_STRING","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18548,"src":"8018:17:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19188,"name":"UnexpectedMajorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18586,"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":19192,"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":19193,"nodeType":"RevertStatement","src":"7975:61:50"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19158,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19155,"src":"7712:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19159,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19133,"src":"7717:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"7712:8:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19241,"initializationExpression":{"assignments":[19155],"declarations":[{"constant":false,"id":19155,"mutability":"mutable","name":"ix","nameLocation":"7704:2:50","nodeType":"VariableDeclaration","scope":19241,"src":"7699:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19154,"name":"uint","nodeType":"ElementaryTypeName","src":"7699:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19157,"initialValue":{"hexValue":"30","id":19156,"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":19162,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"7722:5:50","subExpression":{"id":19161,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19155,"src":"7722:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19163,"nodeType":"ExpressionStatement","src":"7722:5:50"},"nodeType":"ForStatement","src":"7694:801:50"},{"expression":{"id":19246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19242,"name":"items","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19130,"src":"8632:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory[] memory"}},"id":19244,"indexExpression":{"id":19243,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19133,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":19245,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"8645:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"src":"8632:17:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19247,"nodeType":"ExpressionStatement","src":"8632:17:50"}]},"id":19249,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19124,"name":"self","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19121,"src":"7417:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19125,"name":"MAJOR_TYPE_MAP","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18554,"src":"7423:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19126,"kind":"modifierInvocation","modifierName":{"id":19123,"name":"isMajorType","nameLocations":["7405:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"7405:11:50"},"nodeType":"ModifierInvocation","src":"7405:33:50"}],"name":"readMap","nameLocation":"7355:7:50","nodeType":"FunctionDefinition","parameters":{"id":19122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19121,"mutability":"mutable","name":"self","nameLocation":"7375:4:50","nodeType":"VariableDeclaration","scope":19249,"src":"7363:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19120,"nodeType":"UserDefinedTypeName","pathNode":{"id":19119,"name":"CBOR","nameLocations":["7363:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"7363:4:50"},"referencedDeclaration":18536,"src":"7363:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"7362:18:50"},"returnParameters":{"id":19131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19130,"mutability":"mutable","name":"items","nameLocation":"7467:5:50","nodeType":"VariableDeclaration","scope":19249,"src":"7453:19:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_memory_ptr_$dyn_memory_ptr","typeString":"struct WitnetCBOR.CBOR[]"},"typeName":{"baseType":{"id":19128,"nodeType":"UserDefinedTypeName","pathNode":{"id":19127,"name":"CBOR","nameLocations":["7453:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"7453:4:50"},"referencedDeclaration":18536,"src":"7453:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"id":19129,"nodeType":"ArrayTypeName","src":"7453:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_CBOR_$18536_storage_$dyn_storage_ptr","typeString":"struct WitnetCBOR.CBOR[]"}},"visibility":"internal"}],"src":"7452:21:50"},"scope":20052,"src":"7346:1309:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19314,"nodeType":"Block","src":"8983:547:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19260,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19255,"src":"8994:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"hexValue":"3234","id":19261,"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":19266,"nodeType":"IfStatement","src":"8990:77:50","trueBody":{"id":19265,"nodeType":"Block","src":"9022:45:50","statements":[{"expression":{"id":19263,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19255,"src":"9038:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":19259,"id":19264,"nodeType":"Return","src":"9031:28:50"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19269,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19267,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19255,"src":"9077:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3234","id":19268,"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":19275,"nodeType":"IfStatement","src":"9073:75:50","trueBody":{"id":19274,"nodeType":"Block","src":"9106:42:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19270,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19253,"src":"9122:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19271,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9129:9:50","memberName":"readUint8","nodeType":"MemberAccess","referencedDeclaration":17579,"src":"9122:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint8_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":19272,"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":19259,"id":19273,"nodeType":"Return","src":"9115:25:50"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19278,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19276,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19255,"src":"9158:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3235","id":19277,"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":19284,"nodeType":"IfStatement","src":"9154:76:50","trueBody":{"id":19283,"nodeType":"Block","src":"9187:43:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19279,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19253,"src":"9203:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19280,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9210:10:50","memberName":"readUint16","nodeType":"MemberAccess","referencedDeclaration":17615,"src":"9203:17:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint16_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint16)"}},"id":19281,"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":19259,"id":19282,"nodeType":"Return","src":"9196:26:50"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19287,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19285,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19255,"src":"9240:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3236","id":19286,"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":19293,"nodeType":"IfStatement","src":"9236:76:50","trueBody":{"id":19292,"nodeType":"Block","src":"9269:43:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19288,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19253,"src":"9285:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19289,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9292:10:50","memberName":"readUint32","nodeType":"MemberAccess","referencedDeclaration":17651,"src":"9285:17:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint32_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint32)"}},"id":19290,"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":19259,"id":19291,"nodeType":"Return","src":"9278:26:50"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19296,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19294,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19255,"src":"9322:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3237","id":19295,"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":19302,"nodeType":"IfStatement","src":"9318:76:50","trueBody":{"id":19301,"nodeType":"Block","src":"9351:43:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":19297,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19253,"src":"9367:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19298,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9374:10:50","memberName":"readUint64","nodeType":"MemberAccess","referencedDeclaration":17687,"src":"9367:17:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint64_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint64)"}},"id":19299,"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":19259,"id":19300,"nodeType":"Return","src":"9360:26:50"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19305,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19303,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19255,"src":"9404:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3331","id":19304,"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":19309,"nodeType":"IfStatement","src":"9400:67:50","trueBody":{"id":19308,"nodeType":"Block","src":"9433:34:50","statements":[{"expression":{"id":19306,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18574,"src":"9449:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":19259,"id":19307,"nodeType":"Return","src":"9442:17:50"}]}},{"errorCall":{"arguments":[{"id":19311,"name":"additionalInformation","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19255,"src":"9502:21:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19310,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18580,"src":"9480:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19312,"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":19313,"nodeType":"RevertStatement","src":"9473:51:50"}]},"documentation":{"id":19250,"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":19315,"implemented":true,"kind":"function","modifiers":[],"name":"readLength","nameLocation":"8842:10:50","nodeType":"FunctionDefinition","parameters":{"id":19256,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19253,"mutability":"mutable","name":"buffer","nameLocation":"8888:6:50","nodeType":"VariableDeclaration","scope":19315,"src":"8861:33:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":19252,"nodeType":"UserDefinedTypeName","pathNode":{"id":19251,"name":"WitnetBuffer.Buffer","nameLocations":["8861:12:50","8874:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"8861:19:50"},"referencedDeclaration":16642,"src":"8861:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":19255,"mutability":"mutable","name":"additionalInformation","nameLocation":"8909:21:50","nodeType":"VariableDeclaration","scope":19315,"src":"8903:27:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":19254,"name":"uint8","nodeType":"ElementaryTypeName","src":"8903:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"8852:85:50"},"returnParameters":{"id":19259,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19258,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19315,"src":"8972:6:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19257,"name":"uint64","nodeType":"ElementaryTypeName","src":"8972:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"8971:8:50"},"scope":20052,"src":"8833:697:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19350,"nodeType":"Block","src":"9841:229:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19328,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19319,"src":"9852:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19329,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9857:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"9852:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3230","id":19330,"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":19338,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19335,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19319,"src":"9925:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19336,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"9930:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"9925:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3231","id":19337,"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":19347,"nodeType":"Block","src":"9993:72:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19343,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19319,"src":"10030:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19344,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10035:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"10030:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19342,"name":"UnsupportedPrimitive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18590,"src":"10009:20:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19345,"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":19346,"nodeType":"RevertStatement","src":"10002:55:50"}]},"id":19348,"nodeType":"IfStatement","src":"9921:144:50","trueBody":{"id":19341,"nodeType":"Block","src":"9959:28:50","statements":[{"expression":{"hexValue":"74727565","id":19339,"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":19327,"id":19340,"nodeType":"Return","src":"9968:11:50"}]}},"id":19349,"nodeType":"IfStatement","src":"9848:217:50","trueBody":{"id":19334,"nodeType":"Block","src":"9886:29:50","statements":[{"expression":{"hexValue":"66616c7365","id":19332,"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":19327,"id":19333,"nodeType":"Return","src":"9895:12:50"}]}}]},"documentation":{"id":19316,"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":19351,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19322,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19319,"src":"9787:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19323,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18560,"src":"9793:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19324,"kind":"modifierInvocation","modifierName":{"id":19321,"name":"isMajorType","nameLocations":["9775:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"9775:11:50"},"nodeType":"ModifierInvocation","src":"9775:42:50"}],"name":"readBool","nameLocation":"9724:8:50","nodeType":"FunctionDefinition","parameters":{"id":19320,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19319,"mutability":"mutable","name":"cbor","nameLocation":"9745:4:50","nodeType":"VariableDeclaration","scope":19351,"src":"9733:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19318,"nodeType":"UserDefinedTypeName","pathNode":{"id":19317,"name":"CBOR","nameLocations":["9733:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"9733:4:50"},"referencedDeclaration":18536,"src":"9733:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"9732:18:50"},"returnParameters":{"id":19327,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19326,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19351,"src":"9832:4:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19325,"name":"bool","nodeType":"ElementaryTypeName","src":"9832:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"9831:6:50"},"scope":20052,"src":"9715:355:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19449,"nodeType":"Block","src":"10404:786:50","statements":[{"expression":{"id":19373,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19364,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"10411:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19366,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"10416:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18533,"src":"10411:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":19368,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"10441:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19369,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10446:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"10441:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19370,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"10461:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19371,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10466:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"10461:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19367,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"10422:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19372,"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":19374,"nodeType":"ExpressionStatement","src":"10411:83:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19375,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"10505:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19376,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10510:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18533,"src":"10505:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19377,"name":"UINT32_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18567,"src":"10517:10:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"10505:22:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19447,"nodeType":"Block","src":"11127:58:50","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":19442,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"11167:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19443,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11172:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18533,"src":"11167:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19441,"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":19440,"name":"uint32","nodeType":"ElementaryTypeName","src":"11160:6:50","typeDescriptions":{}}},"id":19444,"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":19437,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"11143:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19438,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11148:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"11143:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19439,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11155:4:50","memberName":"read","nodeType":"MemberAccess","referencedDeclaration":16966,"src":"11143:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256) pure returns (bytes memory)"}},"id":19445,"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":19363,"id":19446,"nodeType":"Return","src":"11136:41:50"}]},"id":19448,"nodeType":"IfStatement","src":"10501:684:50","trueBody":{"id":19436,"nodeType":"Block","src":"10529:592:50","statements":[{"assignments":[19380],"declarations":[{"constant":false,"id":19380,"mutability":"mutable","name":"length","nameLocation":"10633:6:50","nodeType":"VariableDeclaration","scope":19436,"src":"10626:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":19379,"name":"uint32","nodeType":"ElementaryTypeName","src":"10626:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"id":19390,"initialValue":{"arguments":[{"arguments":[{"expression":{"id":19384,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"10687:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19385,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10692:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"10687:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19386,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"10709:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19387,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10714:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"10709:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19383,"name":"_readIndefiniteStringLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20051,"src":"10649:27:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19388,"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":19382,"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":19381,"name":"uint32","nodeType":"ElementaryTypeName","src":"10642:6:50","typeDescriptions":{}}},"id":19389,"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":19393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19391,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19380,"src":"10746:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19392,"name":"UINT32_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18567,"src":"10755:10:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"10746:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19435,"nodeType":"IfStatement","src":"10742:372:50","trueBody":{"id":19434,"nodeType":"Block","src":"10767:347:50","statements":[{"expression":{"id":19403,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19394,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19362,"src":"10778:6:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":19400,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19380,"src":"10821:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"id":19397,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"10804:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19398,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10809:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"10804:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19399,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10816:4:50","memberName":"read","nodeType":"MemberAccess","referencedDeclaration":16966,"src":"10804:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256) pure returns (bytes memory)"}},"id":19401,"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":19395,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"10787:3:50","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":19396,"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":19402,"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":19404,"nodeType":"ExpressionStatement","src":"10778:51:50"},{"expression":{"id":19415,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19405,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19380,"src":"10840:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"id":19409,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"10896:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19410,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10901:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"10896:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19411,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"10920:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19412,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"10925:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"10920:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19408,"name":"_readIndefiniteStringLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20051,"src":"10856:27:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19413,"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":19407,"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":19406,"name":"uint32","nodeType":"ElementaryTypeName","src":"10849:6:50","typeDescriptions":{}}},"id":19414,"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":19416,"nodeType":"ExpressionStatement","src":"10840:106:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint32","typeString":"uint32"},"id":19419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19417,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19380,"src":"10961:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19418,"name":"UINT32_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18567,"src":"10970:10:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"10961:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19433,"nodeType":"IfStatement","src":"10957:148:50","trueBody":{"id":19432,"nodeType":"Block","src":"10982:123:50","statements":[{"expression":{"id":19430,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19420,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19362,"src":"10995:6:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":19423,"name":"output","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19362,"src":"11035:6:50","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"arguments":[{"id":19427,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19380,"src":"11073:6:50","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint32","typeString":"uint32"}],"expression":{"expression":{"id":19424,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"11056:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19425,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11061:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"11056:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19426,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11068:4:50","memberName":"read","nodeType":"MemberAccess","referencedDeclaration":16966,"src":"11056:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint256_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint256) pure returns (bytes memory)"}},"id":19428,"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":19421,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"11004:3:50","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":19422,"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":19429,"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":19431,"nodeType":"ExpressionStatement","src":"10995:98:50"}]}}]}}]}}]},"documentation":{"id":19352,"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":19450,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19358,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19355,"src":"10342:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19359,"name":"MAJOR_TYPE_BYTES","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18545,"src":"10348:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19360,"kind":"modifierInvocation","modifierName":{"id":19357,"name":"isMajorType","nameLocations":["10330:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"10330:11:50"},"nodeType":"ModifierInvocation","src":"10330:35:50"}],"name":"readBytes","nameLocation":"10278:9:50","nodeType":"FunctionDefinition","parameters":{"id":19356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19355,"mutability":"mutable","name":"cbor","nameLocation":"10300:4:50","nodeType":"VariableDeclaration","scope":19450,"src":"10288:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19354,"nodeType":"UserDefinedTypeName","pathNode":{"id":19353,"name":"CBOR","nameLocations":["10288:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"10288:4:50"},"referencedDeclaration":18536,"src":"10288:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"10287:18:50"},"returnParameters":{"id":19363,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19362,"mutability":"mutable","name":"output","nameLocation":"10393:6:50","nodeType":"VariableDeclaration","scope":19450,"src":"10380:19:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":19361,"name":"bytes","nodeType":"ElementaryTypeName","src":"10380:5:50","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"10379:21:50"},"scope":20052,"src":"10269:921:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19480,"nodeType":"Block","src":"11866:177:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19463,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19454,"src":"11877:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19464,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11882:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"11877:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3235","id":19465,"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":19478,"nodeType":"Block","src":"11966:72:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19474,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19454,"src":"12003:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19475,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12008:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"12003:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19473,"name":"UnsupportedPrimitive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18590,"src":"11982:20:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19476,"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":19477,"nodeType":"RevertStatement","src":"11975:55:50"}]},"id":19479,"nodeType":"IfStatement","src":"11873:165:50","trueBody":{"id":19472,"nodeType":"Block","src":"11911:49:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":19467,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19454,"src":"11927:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19468,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11932:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"11927:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19469,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"11939:11:50","memberName":"readFloat16","nodeType":"MemberAccess","referencedDeclaration":17117,"src":"11927:23:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_int32_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (int32)"}},"id":19470,"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":19462,"id":19471,"nodeType":"Return","src":"11920:32:50"}]}}]},"documentation":{"id":19451,"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":19481,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19457,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19454,"src":"11811:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19458,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18560,"src":"11817:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19459,"kind":"modifierInvocation","modifierName":{"id":19456,"name":"isMajorType","nameLocations":["11799:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"11799:11:50"},"nodeType":"ModifierInvocation","src":"11799:42:50"}],"name":"readFloat16","nameLocation":"11745:11:50","nodeType":"FunctionDefinition","parameters":{"id":19455,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19454,"mutability":"mutable","name":"cbor","nameLocation":"11769:4:50","nodeType":"VariableDeclaration","scope":19481,"src":"11757:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19453,"nodeType":"UserDefinedTypeName","pathNode":{"id":19452,"name":"CBOR","nameLocations":["11757:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"11757:4:50"},"referencedDeclaration":18536,"src":"11757:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"11756:18:50"},"returnParameters":{"id":19462,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19461,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19481,"src":"11856:5:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":19460,"name":"int32","nodeType":"ElementaryTypeName","src":"11856:5:50","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"11855:7:50"},"scope":20052,"src":"11736:307:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19511,"nodeType":"Block","src":"12710:177:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19497,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19494,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19485,"src":"12721:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19495,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12726:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"12721:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3236","id":19496,"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":19509,"nodeType":"Block","src":"12810:72:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19505,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19485,"src":"12847:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19506,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12852:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"12847:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19504,"name":"UnsupportedPrimitive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18590,"src":"12826:20:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19507,"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":19508,"nodeType":"RevertStatement","src":"12819:55:50"}]},"id":19510,"nodeType":"IfStatement","src":"12717:165:50","trueBody":{"id":19503,"nodeType":"Block","src":"12755:49:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":19498,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19485,"src":"12771:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19499,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12776:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"12771:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19500,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"12783:11:50","memberName":"readFloat32","nodeType":"MemberAccess","referencedDeclaration":17255,"src":"12771:23:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_int256_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (int256)"}},"id":19501,"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":19493,"id":19502,"nodeType":"Return","src":"12764:32:50"}]}}]},"documentation":{"id":19482,"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":19512,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19488,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19485,"src":"12657:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19489,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18560,"src":"12663:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19490,"kind":"modifierInvocation","modifierName":{"id":19487,"name":"isMajorType","nameLocations":["12645:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"12645:11:50"},"nodeType":"ModifierInvocation","src":"12645:42:50"}],"name":"readFloat32","nameLocation":"12591:11:50","nodeType":"FunctionDefinition","parameters":{"id":19486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19485,"mutability":"mutable","name":"cbor","nameLocation":"12615:4:50","nodeType":"VariableDeclaration","scope":19512,"src":"12603:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19484,"nodeType":"UserDefinedTypeName","pathNode":{"id":19483,"name":"CBOR","nameLocations":["12603:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"12603:4:50"},"referencedDeclaration":18536,"src":"12603:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"12602:18:50"},"returnParameters":{"id":19493,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19492,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19512,"src":"12702:3:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":19491,"name":"int","nodeType":"ElementaryTypeName","src":"12702:3:50","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"12701:5:50"},"scope":20052,"src":"12582:305:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19542,"nodeType":"Block","src":"13557:177:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19528,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19525,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19516,"src":"13568:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19526,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13573:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"13568:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"3237","id":19527,"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":19540,"nodeType":"Block","src":"13657:72:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19536,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19516,"src":"13694:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19537,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13699:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"13694:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19535,"name":"UnsupportedPrimitive","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18590,"src":"13673:20:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19538,"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":19539,"nodeType":"RevertStatement","src":"13666:55:50"}]},"id":19541,"nodeType":"IfStatement","src":"13564:165:50","trueBody":{"id":19534,"nodeType":"Block","src":"13602:49:50","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":19529,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19516,"src":"13618:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19530,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13623:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"13618:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19531,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"13630:11:50","memberName":"readFloat64","nodeType":"MemberAccess","referencedDeclaration":17393,"src":"13618:23:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_int256_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (int256)"}},"id":19532,"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":19524,"id":19533,"nodeType":"Return","src":"13611:32:50"}]}}]},"documentation":{"id":19513,"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":19543,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19519,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19516,"src":"13504:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19520,"name":"MAJOR_TYPE_CONTENT_FREE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18560,"src":"13510:23:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19521,"kind":"modifierInvocation","modifierName":{"id":19518,"name":"isMajorType","nameLocations":["13492:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"13492:11:50"},"nodeType":"ModifierInvocation","src":"13492:42:50"}],"name":"readFloat64","nameLocation":"13438:11:50","nodeType":"FunctionDefinition","parameters":{"id":19517,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19516,"mutability":"mutable","name":"cbor","nameLocation":"13462:4:50","nodeType":"VariableDeclaration","scope":19543,"src":"13450:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19515,"nodeType":"UserDefinedTypeName","pathNode":{"id":19514,"name":"CBOR","nameLocations":["13450:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"13450:4:50"},"referencedDeclaration":18536,"src":"13450:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"13449:18:50"},"returnParameters":{"id":19524,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19523,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19543,"src":"13549:3:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":19522,"name":"int","nodeType":"ElementaryTypeName","src":"13549:3:50","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"13548:5:50"},"scope":20052,"src":"13429:305:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19613,"nodeType":"Block","src":"14093:408:50","statements":[{"assignments":[19558],"declarations":[{"constant":false,"id":19558,"mutability":"mutable","name":"length","nameLocation":"14107:6:50","nodeType":"VariableDeclaration","scope":19613,"src":"14100:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19557,"name":"uint64","nodeType":"ElementaryTypeName","src":"14100:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19565,"initialValue":{"arguments":[{"expression":{"id":19560,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19547,"src":"14127:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19561,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14132:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"14127:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19562,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19547,"src":"14140:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19563,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14145:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"14140:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19559,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"14116:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19564,"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":19568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19566,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19558,"src":"14178:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19567,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18574,"src":"14187:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14178:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19611,"nodeType":"Block","src":"14443:53:50","statements":[{"errorCall":{"arguments":[{"id":19608,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19558,"src":"14481:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19607,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18580,"src":"14459:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19609,"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":19610,"nodeType":"RevertStatement","src":"14452:36:50"}]},"id":19612,"nodeType":"IfStatement","src":"14174:322:50","trueBody":{"id":19606,"nodeType":"Block","src":"14199:238:50","statements":[{"expression":{"id":19575,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19569,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19555,"src":"14208:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_memory_ptr","typeString":"int32[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":19573,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19558,"src":"14229:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19572,"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":19570,"name":"int32","nodeType":"ElementaryTypeName","src":"14221:5:50","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":19571,"nodeType":"ArrayTypeName","src":"14221:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_storage_ptr","typeString":"int32[]"}}},"id":19574,"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":19576,"nodeType":"ExpressionStatement","src":"14208:28:50"},{"body":{"id":19604,"nodeType":"Block","src":"14278:152:50","statements":[{"assignments":[19586],"declarations":[{"constant":false,"id":19586,"mutability":"mutable","name":"item","nameLocation":"14301:4:50","nodeType":"VariableDeclaration","scope":19604,"src":"14289:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19585,"nodeType":"UserDefinedTypeName","pathNode":{"id":19584,"name":"CBOR","nameLocations":["14289:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"14289:4:50"},"referencedDeclaration":18536,"src":"14289:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"id":19591,"initialValue":{"arguments":[{"expression":{"id":19588,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19547,"src":"14319:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19589,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14324:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"14319:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":19587,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18786,"src":"14308:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19590,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"VariableDeclarationStatement","src":"14289:42:50"},{"expression":{"id":19598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19592,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19555,"src":"14342:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_memory_ptr","typeString":"int32[] memory"}},"id":19594,"indexExpression":{"id":19593,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19578,"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":19596,"name":"item","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19586,"src":"14366:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":19595,"name":"readFloat16","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19481,"src":"14354:11:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_int32_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int32)"}},"id":19597,"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":19599,"nodeType":"ExpressionStatement","src":"14342:29:50"},{"id":19603,"nodeType":"UncheckedBlock","src":"14382:39:50","statements":[{"expression":{"id":19601,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"14405:4:50","subExpression":{"id":19600,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19578,"src":"14405:1:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":19602,"nodeType":"ExpressionStatement","src":"14405:4:50"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19581,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19578,"src":"14264:1:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19582,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19558,"src":"14268:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"14264:10:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19605,"initializationExpression":{"assignments":[19578],"declarations":[{"constant":false,"id":19578,"mutability":"mutable","name":"i","nameLocation":"14257:1:50","nodeType":"VariableDeclaration","scope":19605,"src":"14250:8:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19577,"name":"uint64","nodeType":"ElementaryTypeName","src":"14250:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19580,"initialValue":{"hexValue":"30","id":19579,"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":19544,"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":19614,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19550,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19547,"src":"14029:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19551,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18551,"src":"14035:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19552,"kind":"modifierInvocation","modifierName":{"id":19549,"name":"isMajorType","nameLocations":["14017:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"14017:11:50"},"nodeType":"ModifierInvocation","src":"14017:35:50"}],"name":"readFloat16Array","nameLocation":"13958:16:50","nodeType":"FunctionDefinition","parameters":{"id":19548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19547,"mutability":"mutable","name":"cbor","nameLocation":"13987:4:50","nodeType":"VariableDeclaration","scope":19614,"src":"13975:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19546,"nodeType":"UserDefinedTypeName","pathNode":{"id":19545,"name":"CBOR","nameLocations":["13975:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"13975:4:50"},"referencedDeclaration":18536,"src":"13975:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"13974:18:50"},"returnParameters":{"id":19556,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19555,"mutability":"mutable","name":"values","nameLocation":"14082:6:50","nodeType":"VariableDeclaration","scope":19614,"src":"14067:21:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_memory_ptr","typeString":"int32[]"},"typeName":{"baseType":{"id":19553,"name":"int32","nodeType":"ElementaryTypeName","src":"14067:5:50","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":19554,"nodeType":"ArrayTypeName","src":"14067:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int32_$dyn_storage_ptr","typeString":"int32[]"}},"visibility":"internal"}],"src":"14066:23:50"},"scope":20052,"src":"13949:552:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19672,"nodeType":"Block","src":"14771:525:50","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":19626,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19623,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19618,"src":"14782:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19624,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14787:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"14782:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"31","id":19625,"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":19654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19651,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19618,"src":"14973:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19652,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14978:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"14973:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":19653,"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":19669,"nodeType":"Block","src":"15229:62:50","statements":[{"errorCall":{"arguments":[{"expression":{"id":19664,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19618,"src":"15265:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19665,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15270:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"15265:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"hexValue":"31","id":19666,"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":19663,"name":"UnexpectedMajorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18586,"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":19667,"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":19668,"nodeType":"RevertStatement","src":"15238:45:50"}]},"id":19670,"nodeType":"IfStatement","src":"14969:322:50","trueBody":{"id":19662,"nodeType":"Block","src":"14994:224:50","statements":[{"expression":{"arguments":[{"arguments":[{"id":19658,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19618,"src":"15204:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":19657,"name":"readUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19921,"src":"15195:8:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_uint64_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":19659,"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":19656,"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":19655,"name":"int64","nodeType":"ElementaryTypeName","src":"15189:5:50","typeDescriptions":{}}},"id":19660,"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":19622,"id":19661,"nodeType":"Return","src":"15182:28:50"}]}},"id":19671,"nodeType":"IfStatement","src":"14778:513:50","trueBody":{"id":19650,"nodeType":"Block","src":"14803:160:50","statements":[{"assignments":[19628],"declarations":[{"constant":false,"id":19628,"mutability":"mutable","name":"_value","nameLocation":"14819:6:50","nodeType":"VariableDeclaration","scope":19650,"src":"14812:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19627,"name":"uint64","nodeType":"ElementaryTypeName","src":"14812:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19635,"initialValue":{"arguments":[{"expression":{"id":19630,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19618,"src":"14849:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19631,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14854:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"14849:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19632,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19618,"src":"14871:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19633,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"14876:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"14871:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19629,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"14828:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19634,"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":19648,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":19639,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"-","prefix":true,"src":"14928:2:50","subExpression":{"hexValue":"31","id":19638,"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":19637,"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":19636,"name":"int64","nodeType":"ElementaryTypeName","src":"14922:5:50","typeDescriptions":{}}},"id":19640,"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":19645,"name":"_value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19628,"src":"14947:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19644,"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":19643,"name":"uint64","nodeType":"ElementaryTypeName","src":"14940:6:50","typeDescriptions":{}}},"id":19646,"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":19642,"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":19641,"name":"int64","nodeType":"ElementaryTypeName","src":"14934:5:50","typeDescriptions":{}}},"id":19647,"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":19622,"id":19649,"nodeType":"Return","src":"14915:40:50"}]}}]},"documentation":{"id":19615,"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":19673,"implemented":true,"kind":"function","modifiers":[],"name":"readInt","nameLocation":"14702:7:50","nodeType":"FunctionDefinition","parameters":{"id":19619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19618,"mutability":"mutable","name":"cbor","nameLocation":"14722:4:50","nodeType":"VariableDeclaration","scope":19673,"src":"14710:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19617,"nodeType":"UserDefinedTypeName","pathNode":{"id":19616,"name":"CBOR","nameLocations":["14710:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"14710:4:50"},"referencedDeclaration":18536,"src":"14710:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"14709:18:50"},"returnParameters":{"id":19622,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19621,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19673,"src":"14761:5:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":19620,"name":"int64","nodeType":"ElementaryTypeName","src":"14761:5:50","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"14760:7:50"},"scope":20052,"src":"14693:603:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19743,"nodeType":"Block","src":"15628:400:50","statements":[{"assignments":[19688],"declarations":[{"constant":false,"id":19688,"mutability":"mutable","name":"length","nameLocation":"15642:6:50","nodeType":"VariableDeclaration","scope":19743,"src":"15635:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19687,"name":"uint64","nodeType":"ElementaryTypeName","src":"15635:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19695,"initialValue":{"arguments":[{"expression":{"id":19690,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19677,"src":"15662:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19691,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15667:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"15662:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19692,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19677,"src":"15675:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19693,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15680:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"15675:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19689,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"15651:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19694,"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":19698,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19696,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19688,"src":"15713:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19697,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18574,"src":"15722:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"15713:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19741,"nodeType":"Block","src":"15970:53:50","statements":[{"errorCall":{"arguments":[{"id":19738,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19688,"src":"16008:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19737,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18580,"src":"15986:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19739,"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":19740,"nodeType":"RevertStatement","src":"15979:36:50"}]},"id":19742,"nodeType":"IfStatement","src":"15709:314:50","trueBody":{"id":19736,"nodeType":"Block","src":"15734:230:50","statements":[{"expression":{"id":19705,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19699,"name":"array","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19685,"src":"15743:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_memory_ptr","typeString":"int64[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":19703,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19688,"src":"15763:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19702,"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":19700,"name":"int64","nodeType":"ElementaryTypeName","src":"15755:5:50","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":19701,"nodeType":"ArrayTypeName","src":"15755:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_storage_ptr","typeString":"int64[]"}}},"id":19704,"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":19706,"nodeType":"ExpressionStatement","src":"15743:27:50"},{"body":{"id":19734,"nodeType":"Block","src":"15810:147:50","statements":[{"assignments":[19716],"declarations":[{"constant":false,"id":19716,"mutability":"mutable","name":"item","nameLocation":"15833:4:50","nodeType":"VariableDeclaration","scope":19734,"src":"15821:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19715,"nodeType":"UserDefinedTypeName","pathNode":{"id":19714,"name":"CBOR","nameLocations":["15821:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"15821:4:50"},"referencedDeclaration":18536,"src":"15821:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"id":19721,"initialValue":{"arguments":[{"expression":{"id":19718,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19677,"src":"15851:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19719,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"15856:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"15851:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":19717,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18786,"src":"15840:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19720,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"VariableDeclarationStatement","src":"15821:42:50"},{"expression":{"id":19728,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19722,"name":"array","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19685,"src":"15874:5:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_memory_ptr","typeString":"int64[] memory"}},"id":19724,"indexExpression":{"id":19723,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19708,"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":19726,"name":"item","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19716,"src":"15893:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":19725,"name":"readInt","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19673,"src":"15885:7:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_int64_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (int64)"}},"id":19727,"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":19729,"nodeType":"ExpressionStatement","src":"15874:24:50"},{"id":19733,"nodeType":"UncheckedBlock","src":"15909:39:50","statements":[{"expression":{"id":19731,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"15932:4:50","subExpression":{"id":19730,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19708,"src":"15932:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19732,"nodeType":"ExpressionStatement","src":"15932:4:50"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19711,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19708,"src":"15796:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19712,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19688,"src":"15800:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"15796:10:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19735,"initializationExpression":{"assignments":[19708],"declarations":[{"constant":false,"id":19708,"mutability":"mutable","name":"i","nameLocation":"15789:1:50","nodeType":"VariableDeclaration","scope":19735,"src":"15784:6:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19707,"name":"uint","nodeType":"ElementaryTypeName","src":"15784:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19710,"initialValue":{"hexValue":"30","id":19709,"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":19674,"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":19744,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19680,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19677,"src":"15565:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19681,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18551,"src":"15571:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19682,"kind":"modifierInvocation","modifierName":{"id":19679,"name":"isMajorType","nameLocations":["15553:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"15553:11:50"},"nodeType":"ModifierInvocation","src":"15553:35:50"}],"name":"readIntArray","nameLocation":"15498:12:50","nodeType":"FunctionDefinition","parameters":{"id":19678,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19677,"mutability":"mutable","name":"cbor","nameLocation":"15523:4:50","nodeType":"VariableDeclaration","scope":19744,"src":"15511:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19676,"nodeType":"UserDefinedTypeName","pathNode":{"id":19675,"name":"CBOR","nameLocations":["15511:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"15511:4:50"},"referencedDeclaration":18536,"src":"15511:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"15510:18:50"},"returnParameters":{"id":19686,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19685,"mutability":"mutable","name":"array","nameLocation":"15618:5:50","nodeType":"VariableDeclaration","scope":19744,"src":"15603:20:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_memory_ptr","typeString":"int64[]"},"typeName":{"baseType":{"id":19683,"name":"int64","nodeType":"ElementaryTypeName","src":"15603:5:50","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":19684,"nodeType":"ArrayTypeName","src":"15603:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_int64_$dyn_storage_ptr","typeString":"int64[]"}},"visibility":"internal"}],"src":"15602:22:50"},"scope":20052,"src":"15489:539:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19828,"nodeType":"Block","src":"16360:566:50","statements":[{"expression":{"id":19766,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":19757,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19748,"src":"16367:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19759,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"16372:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18533,"src":"16367:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":19761,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19748,"src":"16389:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19762,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16394:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"16389:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19763,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19748,"src":"16402:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19764,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16407:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"16402:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19760,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"16378:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19765,"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":19767,"nodeType":"ExpressionStatement","src":"16367:62:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19771,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":19768,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19748,"src":"16440:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19769,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16445:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18533,"src":"16440:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":19770,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18574,"src":"16452:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"16440:22:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19826,"nodeType":"Block","src":"16859:62:50","statements":[{"expression":{"arguments":[{"arguments":[{"expression":{"id":19821,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19748,"src":"16903:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19822,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16908:3:50","memberName":"len","nodeType":"MemberAccess","referencedDeclaration":18533,"src":"16903:8:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"expression":{"expression":{"id":19818,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19748,"src":"16882:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19819,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16887:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"16882:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19820,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16894:8:50","memberName":"readText","nodeType":"MemberAccess","referencedDeclaration":17546,"src":"16882:20:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint64_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint64) pure returns (bytes memory)"}},"id":19823,"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":19817,"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":19816,"name":"string","nodeType":"ElementaryTypeName","src":"16875:6:50","typeDescriptions":{}}},"id":19824,"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":19756,"id":19825,"nodeType":"Return","src":"16868:45:50"}]},"id":19827,"nodeType":"IfStatement","src":"16436:485:50","trueBody":{"id":19815,"nodeType":"Block","src":"16464:389:50","statements":[{"assignments":[19773],"declarations":[{"constant":false,"id":19773,"mutability":"mutable","name":"_done","nameLocation":"16478:5:50","nodeType":"VariableDeclaration","scope":19815,"src":"16473:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":19772,"name":"bool","nodeType":"ElementaryTypeName","src":"16473:4:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"id":19774,"nodeType":"VariableDeclarationStatement","src":"16473:10:50"},{"body":{"id":19813,"nodeType":"Block","src":"16507:339:50","statements":[{"assignments":[19778],"declarations":[{"constant":false,"id":19778,"mutability":"mutable","name":"length","nameLocation":"16525:6:50","nodeType":"VariableDeclaration","scope":19813,"src":"16518:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19777,"name":"uint64","nodeType":"ElementaryTypeName","src":"16518:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19785,"initialValue":{"arguments":[{"expression":{"id":19780,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19748,"src":"16574:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19781,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16579:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"16574:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19782,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19748,"src":"16598:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19783,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16603:9:50","memberName":"majorType","nodeType":"MemberAccess","referencedDeclaration":18529,"src":"16598:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19779,"name":"_readIndefiniteStringLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20051,"src":"16534:27:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19784,"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":19788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19786,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19778,"src":"16638:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19787,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18574,"src":"16647:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"16638:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19811,"nodeType":"Block","src":"16800:37:50","statements":[{"expression":{"id":19809,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19807,"name":"_done","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19773,"src":"16813:5:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":19808,"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":19810,"nodeType":"ExpressionStatement","src":"16813:12:50"}]},"id":19812,"nodeType":"IfStatement","src":"16634:203:50","trueBody":{"id":19806,"nodeType":"Block","src":"16659:135:50","statements":[{"expression":{"id":19804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19789,"name":"text","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19755,"src":"16672:4:50","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":19794,"name":"text","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19755,"src":"16717:4:50","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}},{"arguments":[{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":19800,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19798,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19778,"src":"16757:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"34","id":19799,"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":19795,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19748,"src":"16736:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19796,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16741:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"16736:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":19797,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"16748:8:50","memberName":"readText","nodeType":"MemberAccess","referencedDeclaration":17546,"src":"16736:20:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint64_$returns$_t_bytes_memory_ptr_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint64) pure returns (bytes memory)"}},"id":19801,"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":19792,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"16686:3:50","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":19793,"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":19802,"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":19791,"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":19790,"name":"string","nodeType":"ElementaryTypeName","src":"16679:6:50","typeDescriptions":{}}},"id":19803,"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":19805,"nodeType":"ExpressionStatement","src":"16672:110:50"}]}}]},"condition":{"id":19776,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"16499:6:50","subExpression":{"id":19775,"name":"_done","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19773,"src":"16500:5:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19814,"nodeType":"WhileStatement","src":"16492:354:50"}]}}]},"documentation":{"id":19745,"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":19829,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19751,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19748,"src":"16298:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19752,"name":"MAJOR_TYPE_STRING","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18548,"src":"16304:17:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19753,"kind":"modifierInvocation","modifierName":{"id":19750,"name":"isMajorType","nameLocations":["16286:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"16286:11:50"},"nodeType":"ModifierInvocation","src":"16286:36:50"}],"name":"readString","nameLocation":"16233:10:50","nodeType":"FunctionDefinition","parameters":{"id":19749,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19748,"mutability":"mutable","name":"cbor","nameLocation":"16256:4:50","nodeType":"VariableDeclaration","scope":19829,"src":"16244:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19747,"nodeType":"UserDefinedTypeName","pathNode":{"id":19746,"name":"CBOR","nameLocations":["16244:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"16244:4:50"},"referencedDeclaration":18536,"src":"16244:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"16243:18:50"},"returnParameters":{"id":19756,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19755,"mutability":"mutable","name":"text","nameLocation":"16351:4:50","nodeType":"VariableDeclaration","scope":19829,"src":"16337:18:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":19754,"name":"string","nodeType":"ElementaryTypeName","src":"16337:6:50","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"16336:20:50"},"scope":20052,"src":"16224:702:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19899,"nodeType":"Block","src":"17275:406:50","statements":[{"assignments":[19844],"declarations":[{"constant":false,"id":19844,"mutability":"mutable","name":"length","nameLocation":"17287:6:50","nodeType":"VariableDeclaration","scope":19899,"src":"17282:11:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19843,"name":"uint","nodeType":"ElementaryTypeName","src":"17282:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19851,"initialValue":{"arguments":[{"expression":{"id":19846,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19833,"src":"17307:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19847,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17312:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"17307:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19848,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19833,"src":"17320:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19849,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17325:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"17320:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19845,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"17296:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19850,"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":19854,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19852,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19844,"src":"17358:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19853,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18574,"src":"17367:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"17358:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19897,"nodeType":"Block","src":"17623:53:50","statements":[{"errorCall":{"arguments":[{"id":19894,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19844,"src":"17661:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19893,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18580,"src":"17639:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19895,"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":19896,"nodeType":"RevertStatement","src":"17632:36:50"}]},"id":19898,"nodeType":"IfStatement","src":"17354:322:50","trueBody":{"id":19892,"nodeType":"Block","src":"17379:238:50","statements":[{"expression":{"id":19861,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19855,"name":"strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19841,"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":19859,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19844,"src":"17411:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":19858,"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":19856,"name":"string","nodeType":"ElementaryTypeName","src":"17402:6:50","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":19857,"nodeType":"ArrayTypeName","src":"17402:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_string_storage_$dyn_storage_ptr","typeString":"string[]"}}},"id":19860,"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":19862,"nodeType":"ExpressionStatement","src":"17388:30:50"},{"body":{"id":19890,"nodeType":"Block","src":"17458:152:50","statements":[{"assignments":[19872],"declarations":[{"constant":false,"id":19872,"mutability":"mutable","name":"item","nameLocation":"17481:4:50","nodeType":"VariableDeclaration","scope":19890,"src":"17469:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19871,"nodeType":"UserDefinedTypeName","pathNode":{"id":19870,"name":"CBOR","nameLocations":["17469:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"17469:4:50"},"referencedDeclaration":18536,"src":"17469:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"id":19877,"initialValue":{"arguments":[{"expression":{"id":19874,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19833,"src":"17499:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19875,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"17504:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"17499:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":19873,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18786,"src":"17488:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19876,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"VariableDeclarationStatement","src":"17469:42:50"},{"expression":{"id":19884,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19878,"name":"strings","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19841,"src":"17522:7:50","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string memory[] memory"}},"id":19880,"indexExpression":{"id":19879,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19864,"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":19882,"name":"item","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19872,"src":"17546:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":19881,"name":"readString","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19829,"src":"17535:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_string_memory_ptr_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (string memory)"}},"id":19883,"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":19885,"nodeType":"ExpressionStatement","src":"17522:29:50"},{"id":19889,"nodeType":"UncheckedBlock","src":"17562:39:50","statements":[{"expression":{"id":19887,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"17585:4:50","subExpression":{"id":19886,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19864,"src":"17585:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19888,"nodeType":"ExpressionStatement","src":"17585:4:50"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19867,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19864,"src":"17444:1:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19868,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19844,"src":"17448:6:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"17444:10:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19891,"initializationExpression":{"assignments":[19864],"declarations":[{"constant":false,"id":19864,"mutability":"mutable","name":"i","nameLocation":"17437:1:50","nodeType":"VariableDeclaration","scope":19891,"src":"17432:6:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19863,"name":"uint","nodeType":"ElementaryTypeName","src":"17432:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19866,"initialValue":{"hexValue":"30","id":19865,"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":19830,"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":19900,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19836,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19833,"src":"17209:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19837,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18551,"src":"17215:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19838,"kind":"modifierInvocation","modifierName":{"id":19835,"name":"isMajorType","nameLocations":["17197:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"17197:11:50"},"nodeType":"ModifierInvocation","src":"17197:35:50"}],"name":"readStringArray","nameLocation":"17139:15:50","nodeType":"FunctionDefinition","parameters":{"id":19834,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19833,"mutability":"mutable","name":"cbor","nameLocation":"17167:4:50","nodeType":"VariableDeclaration","scope":19900,"src":"17155:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19832,"nodeType":"UserDefinedTypeName","pathNode":{"id":19831,"name":"CBOR","nameLocations":["17155:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"17155:4:50"},"referencedDeclaration":18536,"src":"17155:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"17154:18:50"},"returnParameters":{"id":19842,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19841,"mutability":"mutable","name":"strings","nameLocation":"17263:7:50","nodeType":"VariableDeclaration","scope":19900,"src":"17247:23:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_string_memory_ptr_$dyn_memory_ptr","typeString":"string[]"},"typeName":{"baseType":{"id":19839,"name":"string","nodeType":"ElementaryTypeName","src":"17247:6:50","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"id":19840,"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":20052,"src":"17130:551:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19920,"nodeType":"Block","src":"17992:92:50","statements":[{"expression":{"arguments":[{"expression":{"id":19914,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19904,"src":"18025:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19915,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18030:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"18025:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19916,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19904,"src":"18045:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19917,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18050:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"18045:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19913,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"18006:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19918,"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":19912,"id":19919,"nodeType":"Return","src":"17999:79:50"}]},"documentation":{"id":19901,"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":19921,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19907,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19904,"src":"17945:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19908,"name":"MAJOR_TYPE_INT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18539,"src":"17951:14:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19909,"kind":"modifierInvocation","modifierName":{"id":19906,"name":"isMajorType","nameLocations":["17933:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"17933:11:50"},"nodeType":"ModifierInvocation","src":"17933:33:50"}],"name":"readUint","nameLocation":"17882:8:50","nodeType":"FunctionDefinition","parameters":{"id":19905,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19904,"mutability":"mutable","name":"cbor","nameLocation":"17903:4:50","nodeType":"VariableDeclaration","scope":19921,"src":"17891:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19903,"nodeType":"UserDefinedTypeName","pathNode":{"id":19902,"name":"CBOR","nameLocations":["17891:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"17891:4:50"},"referencedDeclaration":18536,"src":"17891:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"17890:18:50"},"returnParameters":{"id":19912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19911,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":19921,"src":"17981:6:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19910,"name":"uint64","nodeType":"ElementaryTypeName","src":"17981:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"17980:8:50"},"scope":20052,"src":"17873:211:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":19991,"nodeType":"Block","src":"18429:408:50","statements":[{"assignments":[19936],"declarations":[{"constant":false,"id":19936,"mutability":"mutable","name":"length","nameLocation":"18443:6:50","nodeType":"VariableDeclaration","scope":19991,"src":"18436:13:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":19935,"name":"uint64","nodeType":"ElementaryTypeName","src":"18436:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"id":19943,"initialValue":{"arguments":[{"expression":{"id":19938,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19925,"src":"18463:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19939,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18468:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"18463:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"expression":{"id":19940,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19925,"src":"18476:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19941,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18481:21:50","memberName":"additionalInformation","nodeType":"MemberAccess","referencedDeclaration":18531,"src":"18476:26:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":19937,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"18452:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":19942,"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":19946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19944,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19936,"src":"18514:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19945,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18574,"src":"18523:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"18514:19:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":19989,"nodeType":"Block","src":"18779:53:50","statements":[{"errorCall":{"arguments":[{"id":19986,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19936,"src":"18817:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19985,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18580,"src":"18795:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":19987,"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":19988,"nodeType":"RevertStatement","src":"18788:36:50"}]},"id":19990,"nodeType":"IfStatement","src":"18510:322:50","trueBody":{"id":19984,"nodeType":"Block","src":"18535:238:50","statements":[{"expression":{"id":19953,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":19947,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19933,"src":"18544:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":19951,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19936,"src":"18566:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":19950,"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":19948,"name":"uint64","nodeType":"ElementaryTypeName","src":"18557:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":19949,"nodeType":"ArrayTypeName","src":"18557:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_storage_ptr","typeString":"uint64[]"}}},"id":19952,"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":19954,"nodeType":"ExpressionStatement","src":"18544:29:50"},{"body":{"id":19982,"nodeType":"Block","src":"18615:151:50","statements":[{"assignments":[19964],"declarations":[{"constant":false,"id":19964,"mutability":"mutable","name":"item","nameLocation":"18638:4:50","nodeType":"VariableDeclaration","scope":19982,"src":"18626:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19963,"nodeType":"UserDefinedTypeName","pathNode":{"id":19962,"name":"CBOR","nameLocations":["18626:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"18626:4:50"},"referencedDeclaration":18536,"src":"18626:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"id":19969,"initialValue":{"arguments":[{"expression":{"id":19966,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19925,"src":"18656:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"id":19967,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"18661:6:50","memberName":"buffer","nodeType":"MemberAccess","referencedDeclaration":18525,"src":"18656:11:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}],"id":19965,"name":"fromBuffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18786,"src":"18645:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_struct$_CBOR_$18536_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (struct WitnetCBOR.CBOR memory)"}},"id":19968,"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_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},"nodeType":"VariableDeclarationStatement","src":"18626:42:50"},{"expression":{"id":19976,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":19970,"name":"values","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19933,"src":"18679:6:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[] memory"}},"id":19972,"indexExpression":{"id":19971,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19956,"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":19974,"name":"item","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19964,"src":"18701:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}],"id":19973,"name":"readUint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19921,"src":"18692:8:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_CBOR_$18536_memory_ptr_$returns$_t_uint64_$","typeString":"function (struct WitnetCBOR.CBOR memory) pure returns (uint64)"}},"id":19975,"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":19977,"nodeType":"ExpressionStatement","src":"18679:27:50"},{"id":19981,"nodeType":"UncheckedBlock","src":"18717:40:50","statements":[{"expression":{"id":19979,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"18740:5:50","subExpression":{"id":19978,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19956,"src":"18740:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":19980,"nodeType":"ExpressionStatement","src":"18740:5:50"}]}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":19961,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":19959,"name":"ix","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19956,"src":"18600:2:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":19960,"name":"length","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19936,"src":"18605:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"18600:11:50","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":19983,"initializationExpression":{"assignments":[19956],"declarations":[{"constant":false,"id":19956,"mutability":"mutable","name":"ix","nameLocation":"18592:2:50","nodeType":"VariableDeclaration","scope":19983,"src":"18587:7:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":19955,"name":"uint","nodeType":"ElementaryTypeName","src":"18587:4:50","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":19958,"initialValue":{"hexValue":"30","id":19957,"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":19922,"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":19992,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":19928,"name":"cbor","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19925,"src":"18364:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR memory"}},{"id":19929,"name":"MAJOR_TYPE_ARRAY","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18551,"src":"18370:16:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"id":19930,"kind":"modifierInvocation","modifierName":{"id":19927,"name":"isMajorType","nameLocations":["18352:11:50"],"nodeType":"IdentifierPath","referencedDeclaration":18615,"src":"18352:11:50"},"nodeType":"ModifierInvocation","src":"18352:35:50"}],"name":"readUintArray","nameLocation":"18296:13:50","nodeType":"FunctionDefinition","parameters":{"id":19926,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19925,"mutability":"mutable","name":"cbor","nameLocation":"18322:4:50","nodeType":"VariableDeclaration","scope":19992,"src":"18310:16:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_memory_ptr","typeString":"struct WitnetCBOR.CBOR"},"typeName":{"id":19924,"nodeType":"UserDefinedTypeName","pathNode":{"id":19923,"name":"CBOR","nameLocations":["18310:4:50"],"nodeType":"IdentifierPath","referencedDeclaration":18536,"src":"18310:4:50"},"referencedDeclaration":18536,"src":"18310:4:50","typeDescriptions":{"typeIdentifier":"t_struct$_CBOR_$18536_storage_ptr","typeString":"struct WitnetCBOR.CBOR"}},"visibility":"internal"}],"src":"18309:18:50"},"returnParameters":{"id":19934,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19933,"mutability":"mutable","name":"values","nameLocation":"18418:6:50","nodeType":"VariableDeclaration","scope":19992,"src":"18402:22:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_memory_ptr","typeString":"uint64[]"},"typeName":{"baseType":{"id":19931,"name":"uint64","nodeType":"ElementaryTypeName","src":"18402:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"id":19932,"nodeType":"ArrayTypeName","src":"18402:8:50","typeDescriptions":{"typeIdentifier":"t_array$_t_uint64_$dyn_storage_ptr","typeString":"uint64[]"}},"visibility":"internal"}],"src":"18401:24:50"},"scope":20052,"src":"18287:550:50","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":20050,"nodeType":"Block","src":"19174:384:50","statements":[{"assignments":[20004],"declarations":[{"constant":false,"id":20004,"mutability":"mutable","name":"initialByte","nameLocation":"19187:11:50","nodeType":"VariableDeclaration","scope":20050,"src":"19181:17:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":20003,"name":"uint8","nodeType":"ElementaryTypeName","src":"19181:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"id":20008,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":20005,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19996,"src":"19201:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},"id":20006,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"19208:9:50","memberName":"readUint8","nodeType":"MemberAccess","referencedDeclaration":17579,"src":"19201:16:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$returns$_t_uint8_$attached_to$_t_struct$_Buffer_$16642_memory_ptr_$","typeString":"function (struct WitnetBuffer.Buffer memory) pure returns (uint8)"}},"id":20007,"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":20011,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20009,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20004,"src":"19230:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30786666","id":20010,"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":20015,"nodeType":"IfStatement","src":"19226:59:50","trueBody":{"id":20014,"nodeType":"Block","src":"19251:34:50","statements":[{"expression":{"id":20012,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18574,"src":"19267:10:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":20002,"id":20013,"nodeType":"Return","src":"19260:17:50"}]}},{"expression":{"id":20023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":20016,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20001,"src":"19291:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":20018,"name":"buffer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19996,"src":"19316:6:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"}},{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":20021,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20019,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20004,"src":"19331:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"&","rightExpression":{"hexValue":"30783166","id":20020,"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_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer memory"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":20017,"name":"readLength","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19315,"src":"19297:10:50","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_struct$_Buffer_$16642_memory_ptr_$_t_uint8_$returns$_t_uint64_$","typeString":"function (struct WitnetBuffer.Buffer memory,uint8) pure returns (uint64)"}},"id":20022,"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":20024,"nodeType":"ExpressionStatement","src":"19291:65:50"},{"condition":{"commonType":{"typeIdentifier":"t_uint64","typeString":"uint64"},"id":20027,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20025,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20001,"src":"19367:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":20026,"name":"UINT64_MAX","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18574,"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":20038,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20033,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19998,"src":"19446:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":20036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20034,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20004,"src":"19460:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"35","id":20035,"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":20037,"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":20048,"nodeType":"IfStatement","src":"19442:111:50","trueBody":{"id":20047,"nodeType":"Block","src":"19479:74:50","statements":[{"errorCall":{"arguments":[{"components":[{"commonType":{"typeIdentifier":"t_uint8","typeString":"uint8"},"id":20042,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":20040,"name":"initialByte","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20004,"src":"19516:11:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"BinaryOperation","operator":">>","rightExpression":{"hexValue":"35","id":20041,"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":20043,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"19515:18:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":20044,"name":"majorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":19998,"src":"19535:9:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"},{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":20039,"name":"UnexpectedMajorType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18586,"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":20045,"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":20046,"nodeType":"RevertStatement","src":"19488:57:50"}]}},"id":20049,"nodeType":"IfStatement","src":"19363:190:50","trueBody":{"id":20032,"nodeType":"Block","src":"19386:50:50","statements":[{"errorCall":{"arguments":[{"id":20029,"name":"len","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20001,"src":"19424:3:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint64","typeString":"uint64"}],"id":20028,"name":"InvalidLengthEncoding","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":18580,"src":"19402:21:50","typeDescriptions":{"typeIdentifier":"t_function_error_pure$_t_uint256_$returns$_t_error_$","typeString":"function (uint256) pure returns (error)"}},"id":20030,"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":20031,"nodeType":"RevertStatement","src":"19395:33:50"}]}}]},"documentation":{"id":19993,"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":20051,"implemented":true,"kind":"function","modifiers":[],"name":"_readIndefiniteStringLength","nameLocation":"19026:27:50","nodeType":"FunctionDefinition","parameters":{"id":19999,"nodeType":"ParameterList","parameters":[{"constant":false,"id":19996,"mutability":"mutable","name":"buffer","nameLocation":"19089:6:50","nodeType":"VariableDeclaration","scope":20051,"src":"19062:33:50","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_memory_ptr","typeString":"struct WitnetBuffer.Buffer"},"typeName":{"id":19995,"nodeType":"UserDefinedTypeName","pathNode":{"id":19994,"name":"WitnetBuffer.Buffer","nameLocations":["19062:12:50","19075:6:50"],"nodeType":"IdentifierPath","referencedDeclaration":16642,"src":"19062:19:50"},"referencedDeclaration":16642,"src":"19062:19:50","typeDescriptions":{"typeIdentifier":"t_struct$_Buffer_$16642_storage_ptr","typeString":"struct WitnetBuffer.Buffer"}},"visibility":"internal"},{"constant":false,"id":19998,"mutability":"mutable","name":"majorType","nameLocation":"19110:9:50","nodeType":"VariableDeclaration","scope":20051,"src":"19104:15:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":19997,"name":"uint8","nodeType":"ElementaryTypeName","src":"19104:5:50","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"19053:73:50"},"returnParameters":{"id":20002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":20001,"mutability":"mutable","name":"len","nameLocation":"19166:3:50","nodeType":"VariableDeclaration","scope":20051,"src":"19159:10:50","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":20000,"name":"uint64","nodeType":"ElementaryTypeName","src":"19159:6:50","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"19158:12:50"},"scope":20052,"src":"19017:541:50","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":20053,"src":"536:19028:50","usedErrors":[18576,18580,18586,18590,18594],"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\":\"shanghai\",\"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\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"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\":\"See {IERC20-allowance}.\"},\"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\":\"See {IERC20-balanceOf}.\"},\"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\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `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\":\"shanghai\",\"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\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x41f6b3b9e030561e7896dbef372b499cc8d418a80c3884a4d65a68f2fdc7493a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://80b0992a11b2fd1f75ced2971696d07bbd1d19ce6761dd50d8b6d48aa435f42a\",\"dweb:/ipfs/QmZDe5xd2gXHjVEjv9t8C1KQ68K5T8qFwdinwQgmP3rF3x\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]}},\"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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]}},\"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\":\"See {IERC20-allowance}.\"},\"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\":\"See {IERC20-balanceOf}.\"},\"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\":\"See {IERC20-totalSupply}.\"},\"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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x41f6b3b9e030561e7896dbef372b499cc8d418a80c3884a4d65a68f2fdc7493a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://80b0992a11b2fd1f75ced2971696d07bbd1d19ce6761dd50d8b6d48aa435f42a\",\"dweb:/ipfs/QmZDe5xd2gXHjVEjv9t8C1KQ68K5T8qFwdinwQgmP3rF3x\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]}},\"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\":\"See {IERC20-allowance}.\"},\"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\":\"See {IERC20-balanceOf}.\"},\"constructor\":{\"details\":\"Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `\\\"1\\\"`. It's a good idea to use the same `name` that is defined as the 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\":\"See {IERC20-totalSupply}.\"},\"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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x41f6b3b9e030561e7896dbef372b499cc8d418a80c3884a4d65a68f2fdc7493a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://80b0992a11b2fd1f75ced2971696d07bbd1d19ce6761dd50d8b6d48aa435f42a\",\"dweb:/ipfs/QmZDe5xd2gXHjVEjv9t8C1KQ68K5T8qFwdinwQgmP3rF3x\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":{\"keccak256\":\"0xaa7f0646f49ebe2606eeca169f85c56451bbaeeeb06265fa076a03369a25d1d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ee931d4e832385765967efe6366dcc6d00d6a2d794f9c66ee38283c03882de9c\",\"dweb:/ipfs/QmR6SkuJGYxpQeLz38rBdghqaWqEPfzUsL9kBoXgEXKtbD\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x27dbc90e5136ffe46c04f7596fc2dbcc3acebd8d504da3d93fdb8496e6de04f6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea8b92e4245d75a5579c10f22f118f7b4ba07c57341f181f0b2a85ff8663de3\",\"dweb:/ipfs/Qme3Ss5ByjmkxxkMdLpyu7fQ1PCtjNFH1wEFszt2BZePiG\"]},\"@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\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]}},\"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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x27dbc90e5136ffe46c04f7596fc2dbcc3acebd8d504da3d93fdb8496e6de04f6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea8b92e4245d75a5579c10f22f118f7b4ba07c57341f181f0b2a85ff8663de3\",\"dweb:/ipfs/Qme3Ss5ByjmkxxkMdLpyu7fQ1PCtjNFH1wEFszt2BZePiG\"]}},\"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\":\"shanghai\",\"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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212205a892f6fd32d9283b19403d2aefd201a87b35b3703b609878ce3d8c90565725564736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GAS DUP10 0x2F PUSH16 0xD32D9283B19403D2AEFD201A87B35B37 SUB 0xB6 MULMOD DUP8 DUP13 0xE3 0xD8 0xC9 SDIV PUSH6 0x725564736F6C PUSH4 0x4300081C STOP CALLER ","sourceMap":"657:1315:14:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;657:1315:14;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212205a892f6fd32d9283b19403d2aefd201a87b35b3703b609878ce3d8c90565725564736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GAS DUP10 0x2F PUSH16 0xD32D9283B19403D2AEFD201A87B35B37 SUB 0xB6 MULMOD DUP8 DUP13 0xE3 0xD8 0xC9 SDIV PUSH6 0x725564736F6C PUSH4 0x4300081C 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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e5acea2667eae7b987896fe1a62e770ff3dfff3825c625caaf3304ec7bdda9b964736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE5 0xAC 0xEA 0x26 PUSH8 0xEAE7B987896FE1A6 0x2E PUSH24 0xFF3DFFF3825C625CAAF3304EC7BDDA9B964736F6C634300 ADDMOD SHR STOP CALLER ","sourceMap":"1255:3046:15:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1255:3046:15;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e5acea2667eae7b987896fe1a62e770ff3dfff3825c625caaf3304ec7bdda9b964736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE5 0xAC 0xEA 0x26 PUSH8 0xEAE7B987896FE1A6 0x2E PUSH24 0xFF3DFFF3825C625CAAF3304EC7BDDA9B964736F6C634300 ADDMOD SHR STOP CALLER ","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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220f1558a491572426c1fb7022ac8f2cb49a72f3c2d8b7389ba36f62f8442e18dd764736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALL SSTORE DUP11 BLOBHASH ISZERO PUSH19 0x426C1FB7022AC8F2CB49A72F3C2D8B7389BA36 0xF6 0x2F DUP5 TIMESTAMP 0xE1 DUP14 0xD7 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"1407:2774:16:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1407:2774:16;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220f1558a491572426c1fb7022ac8f2cb49a72f3c2d8b7389ba36f62f8442e18dd764736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALL SSTORE DUP11 BLOBHASH ISZERO PUSH19 0x426C1FB7022AC8F2CB49A72F3C2D8B7389BA36 0xF6 0x2F DUP5 TIMESTAMP 0xE1 DUP14 0xD7 PUSH5 0x736F6C6343 STOP ADDMOD SHR 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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220cedc28e7b2e469d9b4889c6605627276769d70b5571b01de071012060f4529dd64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCE 0xDC 0x28 0xE7 0xB2 0xE4 PUSH10 0xD9B4889C660562727676 SWAP14 PUSH17 0xB5571B01DE071012060F4529DD64736F6C PUSH4 0x4300081C STOP CALLER ","sourceMap":"297:18980:17:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;297:18980:17;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220cedc28e7b2e469d9b4889c6605627276769d70b5571b01de071012060f4529dd64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xCE 0xDC 0x28 0xE7 0xB2 0xE4 PUSH10 0xD9B4889C660562727676 SWAP14 PUSH17 0xB5571B01DE071012060F4529DD64736F6C PUSH4 0x4300081C STOP CALLER ","sourceMap":"297:18980: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\":\"shanghai\",\"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\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212200fdaa1a451cc6a07bb5d64c3bcd769809f520dc40fa55a525b6017b6d448690364736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF 0xDA LOG1 LOG4 MLOAD 0xCC PUSH11 0x7BB5D64C3BCD769809F52 0xD 0xC4 0xF 0xA5 GAS MSTORE JUMPDEST PUSH1 0x17 0xB6 0xD4 BASEFEE PUSH10 0x364736F6C634300081C STOP CALLER ","sourceMap":"344:7470:18:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;344:7470:18;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212200fdaa1a451cc6a07bb5d64c3bcd769809f520dc40fa55a525b6017b6d448690364736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF 0xDA LOG1 LOG4 MLOAD 0xCC PUSH11 0x7BB5D64C3BCD769809F52 0xD 0xC4 0xF 0xA5 GAS MSTORE JUMPDEST PUSH1 0x17 0xB6 0xD4 BASEFEE PUSH10 0x364736F6C634300081C 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\":\"shanghai\",\"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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC5267.sol\":{\"keccak256\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@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\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212207edcda3d086f967ab797beb7c61647dd5058c20ce86d85763e61de18f1cba58164736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH31 0xDCDA3D086F967AB797BEB7C61647DD5058C20CE86D85763E61DE18F1CBA581 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"521:3729:20:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;521:3729:20;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212207edcda3d086f967ab797beb7c61647dd5058c20ce86d85763e61de18f1cba58164736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH31 0xDCDA3D086F967AB797BEB7C61647DD5058C20CE86D85763E61DE18F1CBA581 PUSH5 0x736F6C6343 STOP 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\":\"shanghai\",\"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\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@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\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]}},\"version\":1}"}},"@openzeppelin/contracts/utils/math/Math.sol":{"Math":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122052169cf401befefb5413a438353667f183adf59d45b89747be0b4b670d3bb18264736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE AND SWAP13 DELEGATECALL ADD 0xBE INVALID 0xFB SLOAD SGT LOG4 CODESIZE CALLDATALOAD CALLDATASIZE PUSH8 0xF183ADF59D45B897 SELFBALANCE 0xBE SIGNEXTEND 0x4B PUSH8 0xD3BB18264736F6C PUSH4 0x4300081C STOP CALLER ","sourceMap":"281:31863:23:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;281:31863:23;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea264697066735822122052169cf401befefb5413a438353667f183adf59d45b89747be0b4b670d3bb18264736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MSTORE AND SWAP13 DELEGATECALL ADD 0xBE INVALID 0xFB SLOAD SGT LOG4 CODESIZE CALLDATALOAD CALLDATASIZE PUSH8 0xF183ADF59D45B897 SELFBALANCE 0xBE SIGNEXTEND 0x4B PUSH8 0xD3BB18264736F6C PUSH4 0x4300081C STOP CALLER ","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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e182772266119fbe0ac8ec955537ef1fb357ce3867985ebc7fb136092525d57a64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE1 DUP3 PUSH24 0x2266119FBE0AC8EC955537EF1FB357CE3867985EBC7FB136 MULMOD 0x25 0x25 0xD5 PUSH27 0x64736F6C634300081C003300000000000000000000000000000000 ","sourceMap":"769:34173:24:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;769:34173:24;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220e182772266119fbe0ac8ec955537ef1fb357ce3867985ebc7fb136092525d57a64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE1 DUP3 PUSH24 0x2266119FBE0AC8EC955537EF1FB357CE3867985EBC7FB136 MULMOD 0x25 0x25 0xD5 PUSH27 0x64736F6C634300081C003300000000000000000000000000000000 ","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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220a02e4564db16ab635284b2d219e0c5be94fcf5d8c9b807ea77655448fa1fdb7864736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG0 0x2E GASLIMIT PUSH5 0xDB16AB6352 DUP5 0xB2 0xD2 NOT 0xE0 0xC5 0xBE SWAP5 0xFC CREATE2 0xD8 0xC9 0xB8 SMOD 0xEA PUSH24 0x655448FA1FDB7864736F6C634300081C0033000000000000 ","sourceMap":"258:2354:25:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;258:2354:25;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220a02e4564db16ab635284b2d219e0c5be94fcf5d8c9b807ea77655448fa1fdb7864736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG0 0x2E GASLIMIT PUSH5 0xDB16AB6352 DUP5 0xB2 0xD2 NOT 0xE0 0xC5 0xBE SWAP5 0xFC CREATE2 0xD8 0xC9 0xB8 SMOD 0xEA PUSH24 0x655448FA1FDB7864736F6C634300081C0033000000000000 ","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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220da8ba98c960b64350f2322c0cba18a2cf93ef137bfba5ec29cba925dbb5c719f64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDA DUP12 0xA9 DUP13 SWAP7 SIGNEXTEND PUSH5 0x350F2322C0 0xCB LOG1 DUP11 0x2C 0xF9 RETURNDATACOPY CALL CALLDATACOPY 0xBF 0xBA MCOPY 0xC2 SWAP13 0xBA SWAP3 TSTORE 0xBB TLOAD PUSH18 0x9F64736F6C634300081C0033000000000000 ","sourceMap":"353:5837:26:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;353:5837:26;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220da8ba98c960b64350f2322c0cba18a2cf93ef137bfba5ec29cba925dbb5c719f64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDA DUP12 0xA9 DUP13 SWAP7 SIGNEXTEND PUSH5 0x350F2322C0 0xCB LOG1 DUP11 0x2C 0xF9 RETURNDATACOPY CALL CALLDATACOPY 0xBF 0xBA MCOPY 0xC2 SWAP13 0xBA SWAP3 TSTORE 0xBB TLOAD PUSH18 0x9F64736F6C634300081C0033000000000000 ","sourceMap":"353: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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/Create3.sol\":{\"keccak256\":\"0x7241780fc1f0eef432018fa46eb516c3da4462a0503536bfc8fff66379b59c8d\",\"license\":\"AGPL-3.0-only\",\"urls\":[\"bzz-raw://a878972b2f7efa068c389f1ddf540a0c0664a1da3c6aac2b8ccda8fa189e846d\",\"dweb:/ipfs/Qmcs1WmNDyZbipAUtTjZCTyLn4AETdbSpTMdUS85AZMGwu\"]}},\"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":"witUnwrapper","type":"string"}],"name":"NewUnwrapper","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":[{"components":[{"internalType":"uint16","name":"minWitnesses","type":"uint16"},{"internalType":"uint16","name":"baseFeeOverhead100","type":"uint16"},{"internalType":"uint64","name":"unitaryRewardNanowits","type":"uint64"}],"internalType":"struct IWrappedWIT.WitOracleSettings","name":"","type":"tuple"}],"name":"settleWitOracleSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"","type":"string[]"}],"name":"settleWitRpcProviders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"settleWitUnwrapper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalUnwraps","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":"witCustodian","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":"witOracleProofOfReserveRadonBytecode","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"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":"struct IWrappedWIT.WitOracleSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witUnwrapper","outputs":[{"internalType":"string","name":"","type":"string"}],"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","settleWitOracleSettings((uint16,uint16,uint64))":"b9dcadf2","settleWitRpcProviders(string[])":"96fe8eb1","settleWitUnwrapper(string)":"f577caee","totalReserve()":"4c68df67","totalUnwraps()":"520a5495","transferCuratorship(address)":"a41942a4","unwrap(uint64,string)":"8a510f27","witCustodian()":"7090c8d6","witOracleEstimateWrappingFee(uint256)":"ddb2bf5c","witOracleProofOfReserveRadonBytecode()":"acb734bb","witOracleQuerySettings()":"873234cf","witUnwrapper()":"4ba0d150","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\":\"witUnwrapper\",\"type\":\"string\"}],\"name\":\"NewUnwrapper\",\"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\":[{\"components\":[{\"internalType\":\"uint16\",\"name\":\"minWitnesses\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"baseFeeOverhead100\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"unitaryRewardNanowits\",\"type\":\"uint64\"}],\"internalType\":\"struct IWrappedWIT.WitOracleSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"name\":\"settleWitOracleSettings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string[]\",\"name\":\"\",\"type\":\"string[]\"}],\"name\":\"settleWitRpcProviders\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"name\":\"settleWitUnwrapper\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalReserve\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"totalUnwraps\",\"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\":\"witCustodian\",\"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\":\"witOracleProofOfReserveRadonBytecode\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"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\":\"struct IWrappedWIT.WitOracleSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witUnwrapper\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"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 -----------------------------------------------------------------------------------------\"},\"settleWitOracleSettings((uint16,uint16,uint64))\":{\"notice\":\"--- Authoritative methods -------------------------------------------------------------------------------------\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/IWrappedWIT.sol\":\"IWrappedWIT\"},\"evmVersion\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/IWrappedWIT.sol\":{\"keccak256\":\"0x9b1118896b06db88c42326400552acb7a8d104c1cc0ad164ed45bfa28c10f323\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5093d5fd8dfb80093f52a0ca106657f29ccdaf9fe701b644f0e4513abc73a480\",\"dweb:/ipfs/QmSXubKdqqtcLPQ1geFgXtifxrwkAseMQTiULF4BBeadGH\"]},\"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":"witUnwrapper","type":"string"}],"name":"NewUnwrapper","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":"address","name":"_evmCurator","type":"address"},{"internalType":"string","name":"_witUnwrapperBech32","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":[{"components":[{"internalType":"uint16","name":"minWitnesses","type":"uint16"},{"internalType":"uint16","name":"baseFeeOverhead100","type":"uint16"},{"internalType":"uint64","name":"unitaryRewardNanowits","type":"uint64"}],"internalType":"struct IWrappedWIT.WitOracleSettings","name":"_settings","type":"tuple"}],"name":"settleWitOracleSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_witRpcProviders","type":"string[]"}],"name":"settleWitRpcProviders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_witUnwrapperBech32","type":"string"}],"name":"settleWitUnwrapper","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":"totalReserve","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":[{"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":"witCustodian","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":[{"internalType":"uint256","name":"evmGasPrice","type":"uint256"}],"name":"witOracleEstimateWrappingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witOracleProofOfReserveRadonBytecode","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"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":"struct IWrappedWIT.WitOracleSettings","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"witUnwrapper","outputs":[{"internalType":"string","name":"","type":"string"}],"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},"@_8264":{"entryPoint":null,"id":8264,"parameterSlots":2,"returnSlots":0},"@_862":{"entryPoint":null,"id":862,"parameterSlots":2,"returnSlots":0},"@_buildDomainSeparator_4004":{"entryPoint":null,"id":4004,"parameterSlots":0,"returnSlots":1},"@_convertBits_12051":{"entryPoint":3267,"id":12051,"parameterSlots":4,"returnSlots":1},"@_requireHrpMatch_11048":{"entryPoint":2759,"id":11048,"parameterSlots":2,"returnSlots":0},"@convertBits_11894":{"entryPoint":2856,"id":11894,"parameterSlots":4,"returnSlots":1},"@decode_11421":{"entryPoint":1839,"id":11421,"parameterSlots":2,"returnSlots":2},"@fromBech32_10889":{"entryPoint":1711,"id":10889,"parameterSlots":2,"returnSlots":1},"@fromBech32_13761":{"entryPoint":1461,"id":13761,"parameterSlots":2,"returnSlots":1},"@getAddressFromBytes_11070":{"entryPoint":2879,"id":11070,"parameterSlots":1,"returnSlots":1},"@getStringSlot_2087":{"entryPoint":null,"id":2087,"parameterSlots":1,"returnSlots":1},"@hrpExpand_11488":{"entryPoint":3735,"id":11488,"parameterSlots":1,"returnSlots":1},"@polymod_11584":{"entryPoint":3991,"id":11584,"parameterSlots":1,"returnSlots":1},"@toShortStringWithFallback_1927":{"entryPoint":1411,"id":1927,"parameterSlots":2,"returnSlots":1},"@toShortString_1829":{"entryPoint":1650,"id":1829,"parameterSlots":1,"returnSlots":1},"@verifyChecksum_11815":{"entryPoint":2969,"id":11815,"parameterSlots":3,"returnSlots":1},"abi_decode_tuple_t_address_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IWitOracleRadonRequestFactory_$10563t_string_memory_ptr_fromMemory":{"entryPoint":4357,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_contract$_IWitOracleRadonRequestModal_$10613_fromMemory":{"entryPoint":5362,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":4904,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_struct_RadonReducer":{"entryPoint":4947,"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":5507,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":5449,"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":5396,"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_$10519_memory_ptr_t_struct$_RadonReducer_$13631_memory_ptr__to_t_struct$_DataSourceRequest_$10519_memory_ptr_t_struct$_RadonReducer_$13631_memory_ptr__fromStack_reversed":{"entryPoint":5114,"id":null,"parameterSlots":3,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":5476,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":4602,"id":null,"parameterSlots":3,"returnSlots":0},"convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32":{"entryPoint":5414,"id":null,"parameterSlots":1,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":4678,"id":null,"parameterSlots":2,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":4323,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":4552,"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":4884,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":4864,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":4303,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_IWitOracleRadonRequestFactory":{"entryPoint":4280,"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_$10563t_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_$10519_memory_ptr_t_struct$_RadonReducer_$13631_memory_ptr__to_t_struct$_DataSourceRequest_$10519_memory_ptr_t_struct$_RadonReducer_$13631_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_$10613_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_$10563t_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_$10519_memory_ptr_t_struct$_RadonReducer_$13631_memory_ptr__to_t_struct$_DataSourceRequest_$10519_memory_ptr_t_struct$_RadonReducer_$13631_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_$10613_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":8369},{"length":20,"start":8872},{"length":20,"start":11600}]}},"object":"610200604052348015610010575f5ffd5b5060405161633538038061633583398101604081905261002f91611105565b6040518060400160405280600b81526020016a15dc985c1c19590bd5d25560aa1b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600b81526020016a15dc985c1c19590815d25560aa1b8152506040518060400160405280600381526020016215d25560ea1b81525081600390816100bd9190611246565b5060046100ca8282611246565b506100da91508390506005610583565b610120526100e9816006610583565b61014052815160208084019190912060e052815190820120610100524660a05261017560e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b60805250503060c0525061018c81466001146105b5565b6001600160601b0319166101c052805160208201206101e0526040805160018082528183019092525f91816020015b6101c3611091565b8152602001906001900390816101bb57905050905060405180604001604052806040518060400160405280600c81526020016b436f6e74656e742d5479706560a01b81525081526020016040518060400160405280601e81526020017f6170706c69636174696f6e2f6a736f6e3b636861727365743d5554462d380000815250815250815f8151811061025857610258611300565b6020026020010181905250826001600160a01b031663c96e201f60405180608001604052806003600481111561029057610290611314565b81526020016040518060800160405280604a81526020016162eb604a913981526020018481526020016040518060400160405280600f81526020016e83187782186666726573756c74186960881b81525081525060405180604001604052806002600b81111561030257610302611314565b81526020015f60405190808252806020026020018201604052801561034d57816020015b604080518082019091525f8152606060208201528152602001906001900390816103265790505b508152506040518363ffffffff1660e01b815260040161036e9291906113fa565b6020604051808303815f875af115801561038a573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103ae91906114f2565b6001600160a01b039081166101805260408051608081019091529084169063c96e201f9080600381526020016040518060a00160405280606b8152602001616180606b913981526020018481526020016040518060400160405280600f81526020016e83187782186666726573756c74186960881b81525081525060405180604001604052806002600b81111561044757610447611314565b81526020015f60405190808252806020026020018201604052801561049257816020015b604080518082019091525f81526060602082015281526020019060019003908161046b5790505b508152506040518363ffffffff1660e01b81526004016104b39291906113fa565b6020604051808303815f875af11580156104cf573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104f391906114f2565b6001600160a01b03166101a0816001600160a01b031681525050826001600160a01b0316631014d3756040518163ffffffff1660e01b8152600401602060405180830381865afa158015610549573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061056d91906114f2565b6001600160a01b031661016052506115b1915050565b5f60208351101561059e5761059783610672565b90506105af565b816105a98482611246565b5060ff90505b92915050565b5f816105c257602b6105c5565b602a5b60ff1683511461061c5760405162461bcd60e51b815260206004820152601660248201527f4265636833323a20696e76616c6964206c656e6774680000000000000000000060448201526064015b60405180910390fd5b610668838361064757604051806040016040528060048152602001631d1dda5d60e21b8152506106af565b604051806040016040528060038152602001621dda5d60ea1b8152506106af565b60601b9392505050565b5f5f829050601f8151111561069c578260405163305a27a960e01b81526004016106139190611514565b80516106a782611526565b179392505050565b5f5f5f6106dd856040516020016106c69190611549565b60408051601f19818403018152919052600161072f565b9150915061070b846040516020016106f59190611549565b60408051601f1981840301815291905283610ac7565b5f61071a826005600884610b28565b905061072581610b3f565b9695505050505050565b6060805f605a855111156107855760405162461bcd60e51b815260206004820152601d60248201527f4265636833323a20696e76616c696420737472696e67206c656e6774680000006044820152606401610613565b5f5b8551811015610887575f8682815181106107a3576107a3611300565b016020015160f81c9050602181108015906107c25750607e8160ff1611155b6108035760405162461bcd60e51b81526020600482015260126024820152712132b1b419991d103bb937b7339031b430b960711b6044820152606401610613565b60301960ff82160161087e578215801561081e575060018210155b801561082e575086518260070111155b61087a5760405162461bcd60e51b815260206004820152601660248201527f4265636833323a2077726f6e6720706f73206f662031000000000000000000006044820152606401610613565b8192505b50600101610787565b50806001600160401b038111156108a0576108a06110cf565b6040519080825280601f01601f1916602001820160405280156108ca576020820181803683370190505b5092505f5b81811015610924578581815181106108e9576108e9611300565b602001015160f81c60f81b84828151811061090657610906611300565b60200101906001600160f81b03191690815f1a9053506001016108cf565b50600181865103036001600160401b03811115610943576109436110cf565b60405190808252806020026020018201604052801561096c578160200160208202803683370190505b5091505f5b8251811015610a5d575f60405180610120016040528061010081526020016161eb610100913987848401600101815181106109ae576109ae611300565b0160200151815160f89190911c9081106109ca576109ca611300565b01602001516001600160f81b03199081169150819003610a2c5760405162461bcd60e51b815260206004820152601c60248201527f4265636833323a2062797465206e6f7420696e20616c706861626574000000006044820152606401610613565b8060f81c848381518110610a4257610a42611300565b60ff9092166020928302919091019091015250600101610971565b50610a69838386610b99565b610ab55760405162461bcd60e51b815260206004820152601660248201527f4265636833323a2077726f6e6720636865636b73756d000000000000000000006044820152606401610613565b50805160051901815290939092509050565b8080519060200120828051906020012014610b245760405162461bcd60e51b815260206004820152601460248201527f4265636833323a20687270206d69736d617463680000000000000000000000006044820152606401610613565b5050565b6060610b3685858585610cc3565b95945050505050565b5f8151601414610b915760405162461bcd60e51b815260206004820152601b60248201527f4265636833323a20696e76616c69642064617461206c656e67746800000000006044820152606401610613565b506014015190565b5f80610ba485610e97565b90505f84518251016001600160401b03811115610bc357610bc36110cf565b604051908082528060200260200182016040528015610bec578160200160208202803683370190505b5090505f5b8251811015610c4657828181518110610c0c57610c0c611300565b602002602001015160ff16828281518110610c2957610c29611300565b63ffffffff90921660209283029190910190910152600101610bf1565b505f5b8551811015610ca157858181518110610c6457610c64611300565b602002602001015160ff16828451830181518110610c8457610c84611300565b63ffffffff90921660209283029190910190910152600101610c49565b5063ffffffff8416610cb282610f97565b63ffffffff16149695505050505050565b60605f8080610cd5600180881b611564565b90505f5b8851811015610dd0575f898281518110610cf557610cf5611300565b6020908102919091010151905060ff8082168a1c1615610d7d5760405162461bcd60e51b815260206004820152603660248201527f4265636833323a2076616c7565206d757374206265206e6f6e2d6e656761746960448201527f766520616e642066697420696e2066726f6d62697473000000000000000000006064820152608401610613565b93881b60ff85161793928801925b878410610dc7576040519388900393610db190879087871c861660f81b90602001611583565b6040516020818303038152906040529550610d8b565b50600101610cd9565b508415610e18578115610e13578381610de98489611564565b85901b1660f81b604051602001610e01929190611583565b60405160208183030381529060405293505b610e8c565b86821080610e32575080610e2c8388611564565b84901b16155b610e8c5760405162461bcd60e51b815260206004820152602560248201527f4265636833323a20696e76616c69642070616464696e67206f722076616c75656044820152642073697a6560d81b6064820152608401610613565b505050949350505050565b606081518251016001016001600160401b03811115610eb857610eb86110cf565b604051908082528060200260200182016040528015610ee1578160200160208202803683370190505b5090505f5b8251811015610f91576005838281518110610f0357610f03611300565b602001015160f81c60f81b60f81c60ff16901c828281518110610f2857610f28611300565b602002602001019060ff16908160ff1681525050828181518110610f4e57610f4e611300565b602001015160f81c60f81b60f81c601f16828451830160010181518110610f7757610f77611300565b60ff90921660209283029190910190910152600101610ee6565b50919050565b6040805160a081018252633b6a57b281526326508e6d6020820152631ea119fa91810191909152633d4233dd6060820152632a1462b360808201525f90600190825b84518163ffffffff161015611088575f60198463ffffffff16901c9050858263ffffffff168151811061100e5761100e611300565b60200260200101516005856301ffffff1663ffffffff16901b1893505f5f90505b60058163ffffffff16101561107e57600163ffffffff8381169083161c8116900361107657838163ffffffff166005811061106c5761106c611300565b6020020151851894505b60010161102f565b5050600101610fd9565b50909392505050565b60405180604001604052806002905b60608152602001906001900390816110a05790505090565b6001600160a01b03811681146110cc575f5ffd5b50565b634e487b7160e01b5f52604160045260245ffd5b5f5b838110156110fd5781810151838201526020016110e5565b50505f910152565b5f5f60408385031215611116575f5ffd5b8251611121816110b8565b60208401519092506001600160401b0381111561113c575f5ffd5b8301601f8101851361114c575f5ffd5b80516001600160401b03811115611165576111656110cf565b604051601f8201601f19908116603f011681016001600160401b0381118282101715611193576111936110cf565b6040528181528282016020018710156111aa575f5ffd5b6111bb8260208301602086016110e3565b8093505050509250929050565b600181811c908216806111dc57607f821691505b602082108103610f9157634e487b7160e01b5f52602260045260245ffd5b601f82111561124157805f5260205f20601f840160051c8101602085101561121f5750805b601f840160051c820191505b8181101561123e575f815560010161122b565b50505b505050565b81516001600160401b0381111561125f5761125f6110cf565b6112738161126d84546111c8565b846111fa565b6020601f8211600181146112a5575f831561128e5750848201515b5f19600385901b1c1916600184901b17845561123e565b5f84815260208120601f198516915b828110156112d457878501518255602094850194600190920191016112b4565b50848210156112f157868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52602160045260245ffd5b5f815180845261133f8160208601602086016110e3565b601f01601f19169290920160200192915050565b5f604083018251600c811061136a5761136a611314565b84526020838101516040828701528051928390526060600584901b870181019391909201918601905f5b818110156113ee57878503605f1901835283518051600a81106113b9576113b9611314565b8087525060208101519050604060208701526113d86040870182611328565b9550506020938401939290920191600101611394565b50929695505050505050565b604081525f83516005811061141157611411611314565b604083015260208401516080606084015261142f60c0840182611328565b6040860151848203603f19016080860152805180835291925060209081019181840191600582901b8501015f5b828110156114bc57858203601f19018452845182604081015f5b60028110156114a457858203835261148f828551611328565b60209485019493909301929150600101611476565b5060209788019796909601959350505060010161145c565b506060890151878203603f190160a089015294506114da8186611328565b9450505050508281036020840152610b368185611353565b5f60208284031215611502575f5ffd5b815161150d816110b8565b9392505050565b602081525f61150d6020830184611328565b80516020808301519190811015610f91575f1960209190910360031b1b16919050565b5f825161155a8184602087016110e3565b9190910192915050565b818103818111156105af57634e487b7160e01b5f52601160045260245ffd5b5f83516115948184602088016110e3565b6001600160f81b0319939093169190920190815260010192915050565b60805160a05160c05160e05161010051610120516101405161016051610180516101a0516101c0516101e051614aff6116815f395f81816117a901526122fe01525f8181610dc20152610fdc01525f818161076c0152610a0001525f818161036e015261213401525f81816102dd015281816103fa015281816109d801528181610b9a015281816112cc0152818161137b0152818161166a015261186001525f611fd401525f611fa701525f611e8501525f611e5d01525f611db801525f611de201525f611e0c0152614aff5ff3fe608060405260043610610228575f3560e01c806370a0823111610129578063a9059cbb116100a8578063dd62ed3e1161006d578063dd62ed3e146106ba578063ddb2bf5c146106fe578063f399e22e1461071d578063f577caee1461073c578063f69a00b61461075b575f5ffd5b8063a9059cbb1461062a578063acb734bb14610649578063b9dcadf21461065d578063d505accf1461067c578063d6f29e811461069b575f5ffd5b80638a510f27116100ee5780638a510f271461058d57806395d89b41146105ac57806396fe8eb1146105c0578063a41942a4146105df578063a53cb851146105fe575f5ffd5b806370a08231146104ac57806377cc7a3a146104e05780637ecebe00146104ff57806384b0196e1461051e578063873234cf14610545575f5ffd5b80632b8c49e3116101b55780634c68df671161017a5780634c68df671461043e578063520a5495146104525780635f029ebe146104665780636d0d6a7e146104795780637090c8d614610498575f5ffd5b80632b8c49e314610390578063313ce567146103af5780633644e515146103ca57806347a10e56146103de5780634ba0d1501461042a575f5ffd5b80631014d375116101fb5780631014d375146102cc57806318160ddd146102ff57806318bf50771461031d57806323b872dd1461033e57806327ae68831461035d575f5ffd5b806301367f731461022c57806301ffc9a71461025d57806306fdde031461028c578063095ea7b3146102ad575b5f5ffd5b348015610237575f5ffd5b5061024061078e565b6040516001600160a01b0390911681526020015b60405180910390f35b348015610268575f5ffd5b5061027c610277366004613902565b6107a6565b6040519015158152602001610254565b348015610297575f5ffd5b506102a06107dc565b6040516102549190613976565b3480156102b8575f5ffd5b5061027c6102c736600461399c565b61086c565b3480156102d7575f5ffd5b506102407f000000000000000000000000000000000000000000000000000000000000000081565b34801561030a575f5ffd5b506002545b604051908152602001610254565b348015610328575f5ffd5b5061033c61033736600461399c565b610883565b005b348015610349575f5ffd5b5061027c6103583660046139c6565b6108db565b348015610368575f5ffd5b506102407f000000000000000000000000000000000000000000000000000000000000000081565b34801561039b575f5ffd5b5061033c6103aa36600461399c565b6108fe565b3480156103ba575f5ffd5b5060405160098152602001610254565b3480156103d5575f5ffd5b5061030f61094e565b3480156103e9575f5ffd5b5061027c6103f8366004613a04565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b348015610435575f5ffd5b506102a061095c565b348015610449575f5ffd5b5061030f610984565b34801561045d575f5ffd5b5061030f61099f565b61030f610474366004613a1f565b6109c1565b348015610484575f5ffd5b5061033c610493366004613a7a565b610ad9565b3480156104a3575f5ffd5b506102a0610db2565b3480156104b7575f5ffd5b5061030f6104c6366004613a04565b6001600160a01b03165f9081526020819052604090205490565b3480156104eb575f5ffd5b5061030f6104fa366004613a1f565b610deb565b34801561050a575f5ffd5b5061030f610519366004613a04565b610e07565b348015610529575f5ffd5b50610532610e24565b6040516102549796959493929190613ae5565b348015610550575f5ffd5b50610559610e66565b60408051825161ffff908116825260208085015190911690820152918101516001600160401b031690820152606001610254565b348015610598575f5ffd5b5061030f6105a7366004613b9a565b610ec9565b3480156105b7575f5ffd5b506102a0611123565b3480156105cb575f5ffd5b5061033c6105da366004613c80565b611132565b3480156105ea575f5ffd5b5061033c6105f9366004613a04565b6111b6565b348015610609575f5ffd5b5061061d610618366004613a1f565b611276565b6040516102549190613da8565b348015610635575f5ffd5b5061027c61064436600461399c565b61136a565b348015610654575f5ffd5b506102a0611377565b348015610668575f5ffd5b5061033c610677366004613dc2565b611472565b348015610687575f5ffd5b5061033c610696366004613de9565b61152f565b3480156106a6575f5ffd5b5061033c6106b5366004613e55565b611665565b3480156106c5575f5ffd5b5061030f6106d4366004613e83565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610709575f5ffd5b5061030f610718366004613a1f565b61185a565b348015610728575f5ffd5b5061033c610737366004613eba565b611885565b348015610747575f5ffd5b5061033c610756366004613ed7565b611b96565b348015610766575f5ffd5b506102407f000000000000000000000000000000000000000000000000000000000000000081565b5f610797611c11565b546001600160a01b0316919050565b5f6001600160e01b03198216630cccc66560e21b14806107d657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107eb90613f15565b80601f016020809104026020016040519081016040528092919081815260200182805461081790613f15565b80156108625780601f1061083957610100808354040283529160200191610862565b820191905f5260205f20905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b5f33610879818585611c35565b5060019392505050565b61088c33611c42565b6108968282611c71565b60405181815233906001600160a01b038416907fde22baff038e3a3e08407cbdf617deed74e869a7ba517df611e33131c6e6ea04906020015b60405180910390a35050565b5f336108e8858285611ca5565b6108f3858585611d1b565b506001949350505050565b61090733611c42565b6109118282611d78565b60405181815233906001600160a01b038416907fb90795a66650155983e242cac3e1ac1a4dc26f8ed2987f3ce416a34e00111fd4906020016108cf565b5f610957611dac565b905090565b60606109576001461461096d611c11565b6002015460601b6001600160601b03191690611ed8565b5f61098d611c11565b600101546001600160401b0316919050565b5f6109a8611c11565b60010154600160401b90046001600160401b0316919050565b604051633752120b60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301527f0000000000000000000000000000000000000000000000000000000000000000166024820152604481018290525f9073__$928ef700fe09700756683be525388ce8a3$__90633752120b90606401602060405180830381865af4158015610a68573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8c9190613f47565b90505f198103610ad45760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b60448201526064015b60405180910390fd5b919050565b610b36610ae4611c11565b6003015461ffff16610afc6080860160608701613f6d565b61ffff16101560405180604001604052806016815260200175696e73756666696369656e74207769746e657373657360501b815250611f29565b610b81610b51610b44611c11565b6005015460208601351490565b604051806040016040528060128152602001710d2dcecc2d8d2c840e4c2c8dedc40d0c2e6d60731b815250611f29565b604051633686b53f60e11b81525f906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636d0d6a7e90610bd390879087908790600401613ff1565b5f604051808303815f875af1158015610bee573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c1591908101906141fd565b6040516367c4440f60e01b815290915073__$928ef700fe09700756683be525388ce8a3$__906367c4440f90610c4f9084906004016142ae565b602060405180830381865af4925050508015610c88575060408051601f3d908101601f19168201909252610c859181019061439a565b60015b610cfb57610c946143b5565b806308c379a003610cc25750610ca86143cd565b80610cb35750610cc4565b610cbc81611f33565b50610dac565b505b3d808015610ced576040519150601f19603f3d011682016040523d82523d5f602084013e610cf2565b606091505b50610cbc611f6a565b60608083015160408085015181516001600160401b0380871682529093166020840152908201527f8a01b18bdca3d556adc5e6a85f562b83d2c1933f166e93421ff507cfccb09a07910160405180910390a180610d56611c11565b600101805467ffffffffffffffff19166001600160401b03929092169190911790556060820151610d85611c11565b80546001600160401b0392909216600160c01b026001600160c01b03909216919091179055505b50505050565b60606109576001600160601b03197f00000000000000000000000000000000000000000000000000000000000000001646600114611ed8565b5f610df4611c11565b5f92835260060160205250604090205490565b6001600160a01b0381165f908152600760205260408120546107d6565b5f6060805f5f5f6060610e35611fa0565b610e3d611fcd565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b604080516060810182525f8082526020820181905291810191909152610e8a611c11565b604080516060810182526003929092015461ffff808216845262010000820416602084015264010000000090046001600160401b031690820152919050565b5f6001600160401b038416610edd336104c6565b1015610f205760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b6044820152606401610acb565b5f610f29611c11565b600101546001600160401b0390811691508516811015610f8b5760405162461bcd60e51b815260206004820152601760248201527f63616e6e6f7420756e777261702074686174206d7563680000000000000000006044820152606401610acb565b5f610fcf85858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050466001149150611ffa9050565b90506001600160601b03197f00000000000000000000000000000000000000000000000000000000000000008116908216036110415760405162461bcd60e51b81526020600482015260116024820152701a5b9d985b1a59081c9958da5c1a595b9d607a1b6044820152606401610acb565b61104b8683614463565b611053611c11565b600101805467ffffffffffffffff19166001600160401b0392831617905561107e9033908816611d78565b611086611c11565b60010180546008906110a790600160401b90046001600160401b0316614482565b91906101000a8154816001600160401b0302191690836001600160401b0316021790556001600160401b031692507f0ac1547df8510f30b54430e0e4e1e93ce326490aec9cebf0f78b8faa55dc1ded6110fd3390565b868689876040516111129594939291906144ac565b60405180910390a150509392505050565b6060600480546107eb90613f15565b61113a611c11565b546001600160a01b0316336001600160a01b03161461116b576040516282b42960e81b815260040160405180910390fd5b5f81511161117b5761117b6144ed565b80611184611c11565b600401908051906020019061119a92919061384c565b506111b3816111ae6001461461096d611c11565b6120ab565b50565b6111be611c11565b546001600160a01b0316336001600160a01b0316146111ef576040516282b42960e81b815260040160405180910390fd5b6001600160a01b038116611205576112056144ed565b806001600160a01b0316611217611c11565b546040516001600160a01b03909116907fc63757acc12b39558fe5b88c5393e4b0353ffddaae3a2d07e121a8fc62d39c37905f90a380611255611c11565b80546001600160a01b0319166001600160a01b039290921691909117905550565b5f5f611280611c11565b5f848152600691909101602052604081205491508190036112a357505f92915050565b5f1981036112b45750600392915050565b6001604051631bc1eaf360e21b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636f07abcc90602401602060405180830381865afa158015611319573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061133d9190614501565b600681111561134e5761134e613d94565b1461135a57600261135d565b60015b9392505050565b50919050565b5f33610879818585611d1b565b60607f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316637b1039996040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113d5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113f9919061451f565b6001600160a01b0316638a22776461140f611c11565b600501546040518263ffffffff1660e01b815260040161143191815260200190565b5f60405180830381865afa15801561144b573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610957919081019061453a565b61147a611c11565b546001600160a01b0316336001600160a01b0316146114ab576040516282b42960e81b815260040160405180910390fd5b60036114ba6020830183613f6d565b61ffff16101580156114e0575060326114d96040830160208401613f6d565b61ffff1611155b80156115085750630bebc2006114fc6060830160408401614573565b6001600160401b031610155b611514576115146144ed565b8061151d611c11565b60030161152a828261458e565b505050565b834211156115535760405163313c898160e11b815260048101859052602401610acb565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861159e8c6001600160a01b03165f90815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f6115f8826121bc565b90505f611607828787876121e8565b9050896001600160a01b0316816001600160a01b03161461164e576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610acb565b6116598a8a8a611c35565b50505050505050505050565b6116c07f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146040518060400160405280600e81526020016d696e76616c6964206f7261636c6560901b815250611f29565b604051635d933eb760e01b815273__$928ef700fe09700756683be525388ce8a3$__90635d933eb7906116fb90869086908690600401614613565b5f60405180830381865af492505050801561173757506040513d5f823e601f3d908101601f19168201604052611734919081019061462c565b60015b6117a4576117436143b5565b806308c379a00361176b57506117576143cd565b80611762575061176d565b610dac81611f33565b505b3d808015611796576040519150601f19603f3d011682016040523d82523d5f602084013e61179b565b606091505b50610dac611f6a565b6118007f00000000000000000000000000000000000000000000000000000000000000008580519060200120146040518060400160405280601181526020017034b73b30b634b21031bab9ba37b234b0b760791b815250611f29565b61181382826001600160401b0316611c71565b7fbae099c209765c02c309f0fac06aec3ac516a3cc60d09f1a3da4b52d673d28a38383838860405161184894939291906146c0565b60405180910390a15050505050505050565b5f6107d67f000000000000000000000000000000000000000000000000000000000000000083612214565b5f61188e6122d4565b805490915060ff600160401b82041615906001600160401b03165f811580156118b45750825b90505f826001600160401b031660011480156118cf5750303b155b9050811580156118dd575080155b156118fb5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561192557845460ff60401b1916600160401b1785555b8761192e611c11565b80546001600160a01b0319166001600160a01b03928316179055604051908916905f907fc63757acc12b39558fe5b88c5393e4b0353ffddaae3a2d07e121a8fc62d39c37908290a3604051806060016040528060014614611990576003611993565b600c5b61ffff1681526020016119a860056032614714565b61ffff168152630bebc2006020909101526119c1611c11565b8151600391909101805460208401516040909401516001600160401b0316640100000000026bffffffffffffffff000000001961ffff958616620100000263ffffffff19909316959094169490941717919091169190911790555f6001604051908082528060200260200182016040528015611a5157816020015b6060815260200190600190039081611a3c5790505b50905060014614611a97576040518060400160405280601d81526020017f68747470733a2f2f7270632d746573746e65742e7769746e65742e696f000000815250611ace565b6040518060400160405280601881526020017f68747470733a2f2f7270632d30312e7769746e65742e696f00000000000000008152505b815f81518110611ae057611ae0614737565b602002602001018190525080611af4611c11565b6004019080519060200190611b0a92919061384c565b50611b4988888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506122fc92505050565b508315611b8c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611848565b5050505050505050565b611b9e611c11565b546001600160a01b0316336001600160a01b031614611bcf576040516282b42960e81b815260040160405180910390fd5b611c0d82828080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506122fc92505050565b5050565b7f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58f990565b61152a83838360016124b1565b6001600160a01b0381166028602160991b01146111b3576040516282b42960e81b815260040160405180910390fd5b6001600160a01b038216611c9a5760405163ec442f0560e01b81525f6004820152602401610acb565b611c0d5f8383612583565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610dac5781811015611d0d57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610acb565b610dac84848484035f6124b1565b6001600160a01b038316611d4457604051634b637e8f60e11b81525f6004820152602401610acb565b6001600160a01b038216611d6d5760405163ec442f0560e01b81525f6004820152602401610acb565b61152a838383612583565b6001600160a01b038216611da157604051634b637e8f60e11b81525f6004820152602401610acb565b611c0d825f83612583565b5f306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015611e0457507f000000000000000000000000000000000000000000000000000000000000000046145b15611e2e57507f000000000000000000000000000000000000000000000000000000000000000090565b610957604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b90565b606061135d8360601c83611f0857604051806040016040528060048152602001631d1dda5d60e21b8152506126a9565b604051806040016040528060038152602001621dda5d60ea1b8152506126a9565b81611c0d57611c0d815b80604051602001611f44919061474b565b60408051601f198184030181529082905262461bcd60e51b8252610acb91600401613976565b611f9e604051806040016040528060138152602001723ab73430b7323632b21032bc31b2b83a34b7b760691b815250611f33565b565b60606109577f000000000000000000000000000000000000000000000000000000000000000060056126dd565b60606109577f000000000000000000000000000000000000000000000000000000000000000060066126dd565b5f8161200757602b61200a565b602a5b60ff168351146120555760405162461bcd60e51b8152602060048201526016602482015275084cac6d066647440d2dcecc2d8d2c840d8cadccee8d60531b6044820152606401610acb565b6120a1838361208057604051806040016040528060048152602001631d1dda5d60e21b815250612786565b604051806040016040528060038152602001621dda5d60ea1b815250612786565b60601b9392505050565b604080516002808252606082019092525f91816020015b60608152602001906001900390816120c25790505090506120e1610db2565b815f815181106120f3576120f3614737565b6020026020010181905250818160018151811061211257612112614737565b6020908102919091010152604051633c389c6f60e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f0e271bc9061216b90849087906004016147cc565b6020604051808303815f875af1158015612187573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121ab9190613f47565b6121b3611c11565b60050155505050565b5f6107d66121c8611dac565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f6121f888888888612804565b92509250925061220882826128cc565b50909695505050505050565b6040516305e742ef60e01b8152600481018290526202d2a860248201525f906064906001600160a01b038516906305e742ef90604401602060405180830381865afa158015612265573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122899190613f47565b7f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58fc546122c09062010000900461ffff1660646147f0565b6122ca9190614803565b61135d919061481a565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a006107d6565b7f000000000000000000000000000000000000000000000000000000000000000081805190602001200361236b5760405162461bcd60e51b81526020600482015260166024820152753ab730b1b1b2b83a30b13632903ab73bb930b83832b960511b6044820152606401610acb565b7fc373fbd4edf171c216b9195c4184b9da9a43e8baf2d461ad9256fe43922f6a968160405161239a9190613976565b60405180910390a16123af8160014614611ffa565b6123b7611c11565b60020180546001600160a01b03191660609290921c9190911790556111b36123dd611c11565b600401805480602002602001604051908101604052809291908181526020015f905b828210156124a7578382905f5260205f2001805461241c90613f15565b80601f016020809104026020016040519081016040528092919081815260200182805461244890613f15565b80156124935780601f1061246a57610100808354040283529160200191612493565b820191905f5260205f20905b81548152906001019060200180831161247657829003601f168201915b5050505050815260200190600101906123ff565b50505050826120ab565b6001600160a01b0384166124da5760405163e602df0560e01b81525f6004820152602401610acb565b6001600160a01b03831661250357604051634a1406b160e11b81525f6004820152602401610acb565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610dac57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161257591815260200190565b60405180910390a350505050565b6001600160a01b0383166125ad578060025f8282546125a291906147f0565b9091555061261d9050565b6001600160a01b0383165f90815260208190526040902054818110156125ff5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610acb565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661263957600280548290039055612657565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161269c91815260200190565b60405180910390a3505050565b604051606083811b6001600160601b03191660208301529061135d9060340160405160208183030381529060405283612984565b606060ff83146126f7576126f0836129d0565b90506107d6565b81805461270390613f15565b80601f016020809104026020016040519081016040528092919081815260200182805461272f90613f15565b801561277a5780601f106127515761010080835404028352916020019161277a565b820191905f5260205f20905b81548152906001019060200180831161275d57829003601f168201915b505050505090506107d6565b5f5f5f6127b38560405160200161279d919061482d565b6040516020818303038152906040526001612a0d565b915091506127e0846040516020016127cb919061482d565b60405160208183030381529060405283612d97565b5f6127ef82600560085f612deb565b90506127fa81612df9565b9695505050505050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084111561283d57505f915060039050826128c2565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa15801561288e573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b0381166128b957505f9250600191508290506128c2565b92505f91508190505b9450945094915050565b5f8260038111156128df576128df613d94565b036128e8575050565b60018260038111156128fc576128fc613d94565b0361291a5760405163f645eedf60e01b815260040160405180910390fd5b600282600381111561292e5761292e613d94565b0361294f5760405163fce698f760e01b815260048101829052602401610acb565b600382600381111561296357612963613d94565b03611c0d576040516335e2f38360e21b815260048101829052602401610acb565b60605f82604051602001612998919061482d565b60405160208183030381529060405290505f6129b985600860056001612e53565b90506129c782826001612f19565b95945050505050565b60605f6129dc8361319b565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b6060805f605a85511115612a635760405162461bcd60e51b815260206004820152601d60248201527f4265636833323a20696e76616c696420737472696e67206c656e6774680000006044820152606401610acb565b5f5b8551811015612b5e575f868281518110612a8157612a81614737565b016020015160f81c905060218110801590612aa05750607e8160ff1611155b612ae15760405162461bcd60e51b81526020600482015260126024820152712132b1b419991d103bb937b7339031b430b960711b6044820152606401610acb565b60301960ff821601612b555782158015612afc575060018210155b8015612b0c575086518260070111155b612b515760405162461bcd60e51b81526020600482015260166024820152754265636833323a2077726f6e6720706f73206f66203160501b6044820152606401610acb565b8192505b50600101612a65565b50806001600160401b03811115612b7757612b77613bb7565b6040519080825280601f01601f191660200182016040528015612ba1576020820181803683370190505b5092505f5b81811015612bfb57858181518110612bc057612bc0614737565b602001015160f81c60f81b848281518110612bdd57612bdd614737565b60200101906001600160f81b03191690815f1a905350600101612ba6565b50600181865103036001600160401b03811115612c1a57612c1a613bb7565b604051908082528060200260200182016040528015612c43578160200160208202803683370190505b5091505f5b8251811015612d34575f60405180610120016040528061010081526020016149aa61010091398784840160010181518110612c8557612c85614737565b0160200151815160f89190911c908110612ca157612ca1614737565b01602001516001600160f81b03199081169150819003612d035760405162461bcd60e51b815260206004820152601c60248201527f4265636833323a2062797465206e6f7420696e20616c706861626574000000006044820152606401610acb565b8060f81c848381518110612d1957612d19614737565b60ff9092166020928302919091019091015250600101612c48565b50612d408383866131c2565b612d855760405162461bcd60e51b81526020600482015260166024820152754265636833323a2077726f6e6720636865636b73756d60501b6044820152606401610acb565b50805160051901815290939092509050565b8080519060200120828051906020012014611c0d5760405162461bcd60e51b8152602060048201526014602482015273084cac6d066647440d0e4e040dad2e6dac2e8c6d60631b6044820152606401610acb565b60606129c7858585856132ec565b5f8151601414612e4b5760405162461bcd60e51b815260206004820152601b60248201527f4265636833323a20696e76616c69642064617461206c656e67746800000000006044820152606401610acb565b506014015190565b60605f85516001600160401b03811115612e6f57612e6f613bb7565b604051908082528060200260200182016040528015612e98578160200160208202803683370190505b5090505f5b81518163ffffffff161015612f0c57868163ffffffff1681518110612ec457612ec4614737565b602001015160f81c60f81b60f81c828263ffffffff1681518110612eea57612eea614737565b60ff90921660209283029190910190910152612f0581614848565b9050612e9d565b506127fa818686866132ec565b60605f612f278585856134b9565b90505f81518551875101016001016001600160401b03811115612f4c57612f4c613bb7565b6040519080825280601f01601f191660200182016040528015612f76576020820181803683370190505b5090505f5b8651811015612fd157868181518110612f9657612f96614737565b602001015160f81c60f81b828281518110612fb357612fb3614737565b60200101906001600160f81b03191690815f1a905350600101612f7b565b50603160f81b81875181518110612fea57612fea614737565b60200101906001600160f81b03191690815f1a90535085516001015f5b86518110156130cb575f87828151811061302357613023614737565b01602090810151604080518082019091528281525f516020614aaa5f395f51905f529083015260f81c91508110156130c2576040518060400160405280602081526020015f516020614aaa5f395f51905f528152508160ff168151811061308c5761308c614737565b602001015160f81c60f81b84848401815181106130ab576130ab614737565b60200101906001600160f81b03191690815f1a9053505b50600101613007565b508551015f5b8351811015612208575f8482815181106130ed576130ed614737565b602002602001015190506040518060400160405280602081526020015f516020614aaa5f395f51905f52815250518160ff161015613192576040518060400160405280602081526020015f516020614aaa5f395f51905f528152508160ff168151811061315c5761315c614737565b602001015160f81c60f81b848484018151811061317b5761317b614737565b60200101906001600160f81b03191690815f1a9053505b506001016130d1565b5f60ff8216601f8111156107d657604051632cd44ac360e21b815260040160405180910390fd5b5f5f6131cd85613658565b90505f84518251016001600160401b038111156131ec576131ec613bb7565b604051908082528060200260200182016040528015613215578160200160208202803683370190505b5090505f5b825181101561326f5782818151811061323557613235614737565b602002602001015160ff1682828151811061325257613252614737565b63ffffffff9092166020928302919091019091015260010161321a565b505f5b85518110156132ca5785818151811061328d5761328d614737565b602002602001015160ff168284518301815181106132ad576132ad614737565b63ffffffff90921660209283029190910190910152600101613272565b508363ffffffff166132db82613752565b63ffffffff16149695505050505050565b60605f80806132fe600180881b614863565b90505f5b88518110156133f2575f89828151811061331e5761331e614737565b6020908102919091010151905060ff8082168a1c161561339f5760405162461bcd60e51b815260206004820152603660248201527f4265636833323a2076616c7565206d757374206265206e6f6e2d6e6567617469604482015275766520616e642066697420696e2066726f6d6269747360501b6064820152608401610acb565b93881b60ff85161793928801925b8784106133e95760405193889003936133d390879087871c861660f81b90602001614876565b60405160208183030381529060405295506133ad565b50600101613302565b50841561343a57811561343557838161340b8489614863565b85901b1660f81b604051602001613423929190614876565b60405160208183030381529060405293505b6134ae565b8682108061345457508061344e8388614863565b84901b16155b6134ae5760405162461bcd60e51b815260206004820152602560248201527f4265636833323a20696e76616c69642070616464696e67206f722076616c75656044820152642073697a6560d81b6064820152608401610acb565b505050949350505050565b60605f6134c585613658565b90505f84518251016006016001600160401b038111156134e7576134e7613bb7565b604051908082528060200260200182016040528015613510578160200160208202803683370190505b5090505f5b85518351018110156135d35782518110156135785782818151811061353c5761353c614737565b602002602001015160ff1682828151811061355957613559614737565b602002602001019063ffffffff16908163ffffffff16815250506135cb565b85835182038151811061358d5761358d614737565b602001015160f81c60f81b60f81c60ff168282815181106135b0576135b0614737565b602002602001019063ffffffff16908163ffffffff16815250505b600101613515565b5060408051600680825260e08201909252906020820160c0803683370190505092505f8461360083613752565b1890505f5b600681101561364d57806005036005028263ffffffff16901c601f1685828151811061363357613633614737565b60ff90921660209283029190910190910152600101613605565b505050509392505050565b606081518251016001016001600160401b0381111561367957613679613bb7565b6040519080825280602002602001820160405280156136a2578160200160208202803683370190505b5090505f5b82518110156113645760058382815181106136c4576136c4614737565b602001015160f81c60f81b60f81c60ff16901c8282815181106136e9576136e9614737565b602002602001019060ff16908160ff168152505082818151811061370f5761370f614737565b602001015160f81c60f81b60f81c601f1682845183016001018151811061373857613738614737565b60ff909216602092830291909101909101526001016136a7565b6040805160a081018252633b6a57b281526326508e6d6020820152631ea119fa91810191909152633d4233dd6060820152632a1462b360808201525f90600190825b84518163ffffffff161015613843575f60198463ffffffff16901c9050858263ffffffff16815181106137c9576137c9614737565b60200260200101516005856301ffffff1663ffffffff16901b1893505f5f90505b60058163ffffffff16101561383957600163ffffffff8381169083161c8116900361383157838163ffffffff166005811061382757613827614737565b6020020151851894505b6001016137ea565b5050600101613794565b50909392505050565b828054828255905f5260205f20908101928215613890579160200282015b82811115613890578251829061388090826148ef565b509160200191906001019061386a565b5061389c9291506138a0565b5090565b8082111561389c575f6138b382826138bc565b506001016138a0565b5080546138c890613f15565b5f825580601f106138d7575050565b601f0160209004905f5260205f20908101906111b391905b8082111561389c575f81556001016138ef565b5f60208284031215613912575f5ffd5b81356001600160e01b03198116811461135d575f5ffd5b5f5b8381101561394357818101518382015260200161392b565b50505f910152565b5f8151808452613962816020860160208601613929565b601f01601f19169290920160200192915050565b602081525f61135d602083018461394b565b6001600160a01b03811681146111b3575f5ffd5b5f5f604083850312156139ad575f5ffd5b82356139b881613988565b946020939093013593505050565b5f5f5f606084860312156139d8575f5ffd5b83356139e381613988565b925060208401356139f381613988565b929592945050506040919091013590565b5f60208284031215613a14575f5ffd5b813561135d81613988565b5f60208284031215613a2f575f5ffd5b5035919050565b5f5f83601f840112613a46575f5ffd5b5081356001600160401b03811115613a5c575f5ffd5b602083019150836020828501011115613a73575f5ffd5b9250929050565b5f5f5f60408486031215613a8c575f5ffd5b83356001600160401b03811115613aa1575f5ffd5b840160e08187031215613ab2575f5ffd5b925060208401356001600160401b03811115613acc575f5ffd5b613ad886828701613a36565b9497909650939450505050565b60ff60f81b8816815260e060208201525f613b0360e083018961394b565b8281036040840152613b15818961394b565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015613b6a578351835260209384019390920191600101613b4c565b50909b9a5050505050505050505050565b6001600160401b03811681146111b3575f5ffd5b8035610ad481613b7b565b5f5f5f60408486031215613bac575f5ffd5b8335613ab281613b7b565b634e487b7160e01b5f52604160045260245ffd5b60c081018181106001600160401b0382111715613bea57613bea613bb7565b60405250565b604081018181106001600160401b0382111715613bea57613bea613bb7565b60a081018181106001600160401b0382111715613bea57613bea613bb7565b601f8201601f191681016001600160401b0381118282101715613c5357613c53613bb7565b6040525050565b5f6001600160401b03821115613c7257613c72613bb7565b50601f01601f191660200190565b5f60208284031215613c90575f5ffd5b81356001600160401b03811115613ca5575f5ffd5b8201601f81018413613cb5575f5ffd5b80356001600160401b03811115613cce57613cce613bb7565b8060051b604051613ce26020830182613c2e565b918252602081840181019290810187841115613cfc575f5ffd5b6020850192505b83831015613d895782356001600160401b03811115613d20575f5ffd5b8501603f81018913613d30575f5ffd5b6020810135613d3e81613c5a565b604051613d4b8282613c2e565b8281526040848401018c1015613d5f575f5ffd5b826040850160208301375f6020848301015280855250505050602081019050602083019250613d03565b509695505050505050565b634e487b7160e01b5f52602160045260245ffd5b6020810160048310613dbc57613dbc613d94565b91905290565b5f6060828403128015613dd3575f5ffd5b509092915050565b60ff811681146111b3575f5ffd5b5f5f5f5f5f5f5f60e0888a031215613dff575f5ffd5b8735613e0a81613988565b96506020880135613e1a81613988565b955060408801359450606088013593506080880135613e3881613ddb565b9699959850939692959460a0840135945060c09093013592915050565b5f5f5f60408486031215613e67575f5ffd5b8335925060208401356001600160401b03811115613acc575f5ffd5b5f5f60408385031215613e94575f5ffd5b8235613e9f81613988565b91506020830135613eaf81613988565b809150509250929050565b5f5f5f60408486031215613ecc575f5ffd5b8335613ab281613988565b5f5f60208385031215613ee8575f5ffd5b82356001600160401b03811115613efd575f5ffd5b613f0985828601613a36565b90969095509350505050565b600181811c90821680613f2957607f821691505b60208210810361136457634e487b7160e01b5f52602260045260245ffd5b5f60208284031215613f57575f5ffd5b5051919050565b61ffff811681146111b3575f5ffd5b5f60208284031215613f7d575f5ffd5b813561135d81613f5e565b5f5f8335601e19843603018112613f9d575f5ffd5b83016020810192503590506001600160401b03811115613fbb575f5ffd5b803603821315613a73575f5ffd5b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b6040808252843582820152602085013560608301525f9085013561401481613f5e565b61ffff166080830152606085013561402b81613f5e565b61ffff1660a0830152608085013561404281613b7b565b6001600160401b031660c083015261405c60a08601613b8f565b6001600160401b031660e083015261407760c0860186613f88565b60e061010085015261408e61012085018284613fc9565b91505082810360208401526127fa818587613fc9565b805160148110610ad4575f5ffd5b8051610ad481613b7b565b5f82601f8301126140cc575f5ffd5b8151602083015f6140dc83613c5a565b6040516140e98282613c2e565b8092508481528785850111156140fd575f5ffd5b61410b856020830186613929565b979650505050505050565b8051610ad481613ddb565b5f60c08284031215614131575f5ffd5b60405161413d81613bcb565b80915082516001600160401b03811115614155575f5ffd5b830160408186031215614166575f5ffd5b60405161417281613bf0565b81516001600160401b03811115614187575f5ffd5b614193878285016140bd565b8252506020918201518282015282526141ad908401614116565b60208201526141be60408401614116565b60408201526141cf60608401614116565b60608201526141e0608084016140b2565b60808201526141f160a084016140b2565b60a08201525092915050565b5f6020828403121561420d575f5ffd5b81516001600160401b03811115614222575f5ffd5b820160a08185031215614233575f5ffd5b60405161423f81613c0f565b8151610100811061424e575f5ffd5b815261425c602083016140a4565b602082015260408281015190820152614277606083016140b2565b606082015260808201516001600160401b03811115614294575f5ffd5b6142a086828501614121565b608083015250949350505050565b602081525f825161010081106142c6576142c6613d94565b806020840152506020830151601481106142e2576142e2613d94565b80604084015250604083015160608301526001600160401b036060840151166080830152608083015160a080840152805160c080850152805160406101808601526143316101c086018261394b565b6020928301516101a08701529183015160ff1660e08601525060408201519061436061010086018360ff169052565b606083015160ff1661012086015260808301516001600160401b0380821661014088015260a09094015193841661016087015291506129c7565b5f602082840312156143aa575f5ffd5b815161135d81613b7b565b5f60033d1115611ed55760045f5f3e505f5160e01c90565b5f60443d10156143da5790565b6040513d600319016004823e80513d60248201116001600160401b038211171561440357505090565b80820180516001600160401b0381111561441e575050505090565b3d8401600319018282016020011115614438575050505090565b61444760208285010185613c2e565b509392505050565b634e487b7160e01b5f52601160045260245ffd5b6001600160401b0382811682821603908111156107d6576107d661444f565b5f6001600160401b0382166001600160401b0381036144a3576144a361444f565b60010192915050565b6001600160a01b03861681526080602082018190525f906144d09083018688613fc9565b6001600160401b0394909416604083015250606001529392505050565b634e487b7160e01b5f52600160045260245ffd5b5f60208284031215614511575f5ffd5b81516007811061135d575f5ffd5b5f6020828403121561452f575f5ffd5b815161135d81613988565b5f6020828403121561454a575f5ffd5b81516001600160401b0381111561455f575f5ffd5b61456b848285016140bd565b949350505050565b5f60208284031215614583575f5ffd5b813561135d81613b7b565b813561459981613f5e565b61ffff8116905081548161ffff19821617835560208401356145ba81613f5e565b63ffff00008160101b169050808363ffffffff1984161717845560408501356145e281613b7b565b6bffffffffffffffff000000008160201b16846bffffffffffffffffffffffff198516178317178555505050505050565b838152604060208201525f6129c7604083018486613fc9565b5f5f5f5f5f60a08688031215614640575f5ffd5b855160208701519095506001600160401b0381111561465d575f5ffd5b614669888289016140bd565b94505060408601516001600160401b03811115614684575f5ffd5b614690888289016140bd565b93505060608601516146a181613988565b60808701519092506146b281613b7b565b809150509295509295909350565b608081525f6146d2608083018761394b565b6001600160a01b03959095166020830152506001600160401b03929092166040830152606090910152919050565b634e487b7160e01b5f52601260045260245ffd5b5f61ffff83168061472757614727614700565b8061ffff84160491505092915050565b634e487b7160e01b5f52603260045260245ffd5b6b02bb930b83832b22ba4aa1d160a51b81525f825161477181600c850160208701613929565b91909101600c0192915050565b5f82825180855260208501945060208160051b830101602085015f5b8381101561220857601f198584030188526147b683835161394b565b602098890198909350919091019060010161479a565b604081525f6147de604083018561477e565b82810360208401526129c7818561477e565b808201808211156107d6576107d661444f565b80820281158282048414176107d6576107d661444f565b5f8261482857614828614700565b500490565b5f825161483e818460208701613929565b9190910192915050565b5f63ffffffff821663ffffffff81036144a3576144a361444f565b818103818111156107d6576107d661444f565b5f8351614887818460208801613929565b6001600160f81b0319939093169190920190815260010192915050565b601f82111561152a57805f5260205f20601f840160051c810160208510156148c95750805b601f840160051c820191505b818110156148e8575f81556001016148d5565b5050505050565b81516001600160401b0381111561490857614908613bb7565b61491c816149168454613f15565b846148a4565b6020601f82116001811461494e575f83156149375750848201515b5f19600385901b1c1916600184901b1784556148e8565b5f84815260208120601f198516915b8281101561497d578785015182556020948501946001909201910161495d565b508482101561499a57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056feffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff71707a7279397838676632747664773073336a6e35346b686365366d7561376ca2646970667358221220512b720b044a9fee312dfe96db1e24acd2b04b6d7e12d7a603f9e380745df0fe64736f6c634300081c00337b226a736f6e727063223a22322e30222c226d6574686f64223a2267657456616c75655472616e73666572222c22706172616d73223a7b2268617368223a225c315c222c226d6f6465223a22657468657265616c222c22666f726365223a747275657d2c226964223a317dffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7b226a736f6e727063223a22322e30222c226d6574686f64223a2267657442616c616e636532222c22706172616d73223a7b22706b68223a225c315c3b5c325c227d2c226964223a317d","opcodes":"PUSH2 0x200 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x6335 CODESIZE SUB DUP1 PUSH2 0x6335 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0x1105 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 0xBD SWAP2 SWAP1 PUSH2 0x1246 JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0xCA DUP3 DUP3 PUSH2 0x1246 JUMP JUMPDEST POP PUSH2 0xDA SWAP2 POP DUP4 SWAP1 POP PUSH1 0x5 PUSH2 0x583 JUMP JUMPDEST PUSH2 0x120 MSTORE PUSH2 0xE9 DUP2 PUSH1 0x6 PUSH2 0x583 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 0x175 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 PUSH0 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 0x18C DUP2 CHAINID PUSH1 0x1 EQ PUSH2 0x5B5 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 PUSH0 SWAP2 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1C3 PUSH2 0x1091 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1BB 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 PUSH0 DUP2 MLOAD DUP2 LT PUSH2 0x258 JUMPI PUSH2 0x258 PUSH2 0x1300 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 0x290 JUMPI PUSH2 0x290 PUSH2 0x1314 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 0x62EB 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 0x302 JUMPI PUSH2 0x302 PUSH2 0x1314 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x34D JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x326 JUMPI SWAP1 POP JUMPDEST POP DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x36E SWAP3 SWAP2 SWAP1 PUSH2 0x13FA JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x38A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x3AE SWAP2 SWAP1 PUSH2 0x14F2 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 0x6180 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 0x447 JUMPI PUSH2 0x447 PUSH2 0x1314 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x492 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH0 DUP2 MSTORE PUSH1 0x60 PUSH1 0x20 DUP3 ADD MSTORE DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x46B JUMPI SWAP1 POP JUMPDEST POP DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4B3 SWAP3 SWAP2 SWAP1 PUSH2 0x13FA JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x4CF JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x4F3 SWAP2 SWAP1 PUSH2 0x14F2 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 0x549 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x56D SWAP2 SWAP1 PUSH2 0x14F2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x160 MSTORE POP PUSH2 0x15B1 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP4 MLOAD LT ISZERO PUSH2 0x59E JUMPI PUSH2 0x597 DUP4 PUSH2 0x672 JUMP JUMPDEST SWAP1 POP PUSH2 0x5AF JUMP JUMPDEST DUP2 PUSH2 0x5A9 DUP5 DUP3 PUSH2 0x1246 JUMP JUMPDEST POP PUSH1 0xFF SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x5C2 JUMPI PUSH1 0x2B PUSH2 0x5C5 JUMP JUMPDEST PUSH1 0x2A JUMPDEST PUSH1 0xFF AND DUP4 MLOAD EQ PUSH2 0x61C 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 0x668 DUP4 DUP4 PUSH2 0x647 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 0x6AF 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 0x6AF JUMP JUMPDEST PUSH1 0x60 SHL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP3 SWAP1 POP PUSH1 0x1F DUP2 MLOAD GT ISZERO PUSH2 0x69C JUMPI DUP3 PUSH1 0x40 MLOAD PUSH4 0x305A27A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x613 SWAP2 SWAP1 PUSH2 0x1514 JUMP JUMPDEST DUP1 MLOAD PUSH2 0x6A7 DUP3 PUSH2 0x1526 JUMP JUMPDEST OR SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x6DD DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x6C6 SWAP2 SWAP1 PUSH2 0x1549 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE PUSH1 0x1 PUSH2 0x72F JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x70B DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x6F5 SWAP2 SWAP1 PUSH2 0x1549 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP2 SWAP1 MSTORE DUP4 PUSH2 0xAC7 JUMP JUMPDEST PUSH0 PUSH2 0x71A DUP3 PUSH1 0x5 PUSH1 0x8 DUP5 PUSH2 0xB28 JUMP JUMPDEST SWAP1 POP PUSH2 0x725 DUP2 PUSH2 0xB3F JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP1 PUSH0 PUSH1 0x5A DUP6 MLOAD GT ISZERO PUSH2 0x785 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 0x613 JUMP JUMPDEST PUSH0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x887 JUMPI PUSH0 DUP7 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x7A3 JUMPI PUSH2 0x7A3 PUSH2 0x1300 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0xF8 SHR SWAP1 POP PUSH1 0x21 DUP2 LT DUP1 ISZERO SWAP1 PUSH2 0x7C2 JUMPI POP PUSH1 0x7E DUP2 PUSH1 0xFF AND GT ISZERO JUMPDEST PUSH2 0x803 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 0x613 JUMP JUMPDEST PUSH1 0x30 NOT PUSH1 0xFF DUP3 AND ADD PUSH2 0x87E JUMPI DUP3 ISZERO DUP1 ISZERO PUSH2 0x81E JUMPI POP PUSH1 0x1 DUP3 LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x82E JUMPI POP DUP7 MLOAD DUP3 PUSH1 0x7 ADD GT ISZERO JUMPDEST PUSH2 0x87A 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 0x613 JUMP JUMPDEST DUP2 SWAP3 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x787 JUMP JUMPDEST POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x8A0 JUMPI PUSH2 0x8A0 PUSH2 0x10CF 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 0x8CA JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP3 POP PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x924 JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x8E9 JUMPI PUSH2 0x8E9 PUSH2 0x1300 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x906 JUMPI PUSH2 0x906 PUSH2 0x1300 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP PUSH1 0x1 ADD PUSH2 0x8CF JUMP JUMPDEST POP PUSH1 0x1 DUP2 DUP7 MLOAD SUB SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x943 JUMPI PUSH2 0x943 PUSH2 0x10CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x96C JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0xA5D JUMPI PUSH0 PUSH1 0x40 MLOAD DUP1 PUSH2 0x120 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x100 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x61EB PUSH2 0x100 SWAP2 CODECOPY DUP8 DUP5 DUP5 ADD PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0x9AE JUMPI PUSH2 0x9AE PUSH2 0x1300 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD DUP2 MLOAD PUSH1 0xF8 SWAP2 SWAP1 SWAP2 SHR SWAP1 DUP2 LT PUSH2 0x9CA JUMPI PUSH2 0x9CA PUSH2 0x1300 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 0xA2C 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 0x613 JUMP JUMPDEST DUP1 PUSH1 0xF8 SHR DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0xA42 JUMPI PUSH2 0xA42 PUSH2 0x1300 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 0x971 JUMP JUMPDEST POP PUSH2 0xA69 DUP4 DUP4 DUP7 PUSH2 0xB99 JUMP JUMPDEST PUSH2 0xAB5 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 0x613 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 0xB24 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 0x613 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xB36 DUP6 DUP6 DUP6 DUP6 PUSH2 0xCC3 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD PUSH1 0x14 EQ PUSH2 0xB91 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 0x613 JUMP JUMPDEST POP PUSH1 0x14 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0xBA4 DUP6 PUSH2 0xE97 JUMP JUMPDEST SWAP1 POP PUSH0 DUP5 MLOAD DUP3 MLOAD ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xBC3 JUMPI PUSH2 0xBC3 PUSH2 0x10CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xBEC JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0xC46 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xC0C JUMPI PUSH2 0xC0C PUSH2 0x1300 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xC29 JUMPI PUSH2 0xC29 PUSH2 0x1300 JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0xBF1 JUMP JUMPDEST POP PUSH0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0xCA1 JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0xC64 JUMPI PUSH2 0xC64 PUSH2 0x1300 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP5 MLOAD DUP4 ADD DUP2 MLOAD DUP2 LT PUSH2 0xC84 JUMPI PUSH2 0xC84 PUSH2 0x1300 JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0xC49 JUMP JUMPDEST POP PUSH4 0xFFFFFFFF DUP5 AND PUSH2 0xCB2 DUP3 PUSH2 0xF97 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND EQ SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP1 PUSH2 0xCD5 PUSH1 0x1 DUP1 DUP9 SHL PUSH2 0x1564 JUMP JUMPDEST SWAP1 POP PUSH0 JUMPDEST DUP9 MLOAD DUP2 LT ISZERO PUSH2 0xDD0 JUMPI PUSH0 DUP10 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xCF5 JUMPI PUSH2 0xCF5 PUSH2 0x1300 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 0xD7D 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 0x613 JUMP JUMPDEST SWAP4 DUP9 SHL PUSH1 0xFF DUP6 AND OR SWAP4 SWAP3 DUP9 ADD SWAP3 JUMPDEST DUP8 DUP5 LT PUSH2 0xDC7 JUMPI PUSH1 0x40 MLOAD SWAP4 DUP9 SWAP1 SUB SWAP4 PUSH2 0xDB1 SWAP1 DUP8 SWAP1 DUP8 DUP8 SHR DUP7 AND PUSH1 0xF8 SHL SWAP1 PUSH1 0x20 ADD PUSH2 0x1583 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP6 POP PUSH2 0xD8B JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0xCD9 JUMP JUMPDEST POP DUP5 ISZERO PUSH2 0xE18 JUMPI DUP2 ISZERO PUSH2 0xE13 JUMPI DUP4 DUP2 PUSH2 0xDE9 DUP5 DUP10 PUSH2 0x1564 JUMP JUMPDEST DUP6 SWAP1 SHL AND PUSH1 0xF8 SHL PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xE01 SWAP3 SWAP2 SWAP1 PUSH2 0x1583 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP JUMPDEST PUSH2 0xE8C JUMP JUMPDEST DUP7 DUP3 LT DUP1 PUSH2 0xE32 JUMPI POP DUP1 PUSH2 0xE2C DUP4 DUP9 PUSH2 0x1564 JUMP JUMPDEST DUP5 SWAP1 SHL AND ISZERO JUMPDEST PUSH2 0xE8C 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 0x613 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 0xEB8 JUMPI PUSH2 0xEB8 PUSH2 0x10CF JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xEE1 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0xF91 JUMPI PUSH1 0x5 DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xF03 JUMPI PUSH2 0xF03 PUSH2 0x1300 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 0xF28 JUMPI PUSH2 0xF28 PUSH2 0x1300 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 0xF4E JUMPI PUSH2 0xF4E PUSH2 0x1300 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 0xF77 JUMPI PUSH2 0xF77 PUSH2 0x1300 JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0xEE6 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 PUSH0 SWAP1 PUSH1 0x1 SWAP1 DUP3 JUMPDEST DUP5 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x1088 JUMPI PUSH0 PUSH1 0x19 DUP5 PUSH4 0xFFFFFFFF AND SWAP1 SHR SWAP1 POP DUP6 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x100E JUMPI PUSH2 0x100E PUSH2 0x1300 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x5 DUP6 PUSH4 0x1FFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 SHL XOR SWAP4 POP PUSH0 PUSH0 SWAP1 POP JUMPDEST PUSH1 0x5 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x107E JUMPI PUSH1 0x1 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND SHR DUP2 AND SWAP1 SUB PUSH2 0x1076 JUMPI DUP4 DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0x5 DUP2 LT PUSH2 0x106C JUMPI PUSH2 0x106C PUSH2 0x1300 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD DUP6 XOR SWAP5 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x102F JUMP JUMPDEST POP POP PUSH1 0x1 ADD PUSH2 0xFD9 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 0x10A0 JUMPI SWAP1 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x10CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10FD JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x10E5 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1116 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 MLOAD PUSH2 0x1121 DUP2 PUSH2 0x10B8 JUMP JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x113C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x1F DUP2 ADD DUP6 SGT PUSH2 0x114C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1165 JUMPI PUSH2 0x1165 PUSH2 0x10CF 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 0x1193 JUMPI PUSH2 0x1193 PUSH2 0x10CF JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP3 DUP3 ADD PUSH1 0x20 ADD DUP8 LT ISZERO PUSH2 0x11AA JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x11BB DUP3 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x10E3 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 0x11DC JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xF91 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x1241 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x121F JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x123E JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x122B JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x125F JUMPI PUSH2 0x125F PUSH2 0x10CF JUMP JUMPDEST PUSH2 0x1273 DUP2 PUSH2 0x126D DUP5 SLOAD PUSH2 0x11C8 JUMP JUMPDEST DUP5 PUSH2 0x11FA JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x12A5 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x128E JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x123E JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x12D4 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x12B4 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x12F1 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 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 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x133F DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x10E3 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP4 ADD DUP3 MLOAD PUSH1 0xC DUP2 LT PUSH2 0x136A JUMPI PUSH2 0x136A PUSH2 0x1314 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 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x13EE JUMPI DUP8 DUP6 SUB PUSH1 0x5F NOT ADD DUP4 MSTORE DUP4 MLOAD DUP1 MLOAD PUSH1 0xA DUP2 LT PUSH2 0x13B9 JUMPI PUSH2 0x13B9 PUSH2 0x1314 JUMP JUMPDEST DUP1 DUP8 MSTORE POP PUSH1 0x20 DUP2 ADD MLOAD SWAP1 POP PUSH1 0x40 PUSH1 0x20 DUP8 ADD MSTORE PUSH2 0x13D8 PUSH1 0x40 DUP8 ADD DUP3 PUSH2 0x1328 JUMP JUMPDEST SWAP6 POP POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP3 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x1394 JUMP JUMPDEST POP SWAP3 SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 DUP4 MLOAD PUSH1 0x5 DUP2 LT PUSH2 0x1411 JUMPI PUSH2 0x1411 PUSH2 0x1314 JUMP JUMPDEST PUSH1 0x40 DUP4 ADD MSTORE PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x80 PUSH1 0x60 DUP5 ADD MSTORE PUSH2 0x142F PUSH1 0xC0 DUP5 ADD DUP3 PUSH2 0x1328 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 PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x14BC JUMPI DUP6 DUP3 SUB PUSH1 0x1F NOT ADD DUP5 MSTORE DUP5 MLOAD DUP3 PUSH1 0x40 DUP2 ADD PUSH0 JUMPDEST PUSH1 0x2 DUP2 LT ISZERO PUSH2 0x14A4 JUMPI DUP6 DUP3 SUB DUP4 MSTORE PUSH2 0x148F DUP3 DUP6 MLOAD PUSH2 0x1328 JUMP JUMPDEST PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 SWAP4 SWAP1 SWAP4 ADD SWAP3 SWAP2 POP PUSH1 0x1 ADD PUSH2 0x1476 JUMP JUMPDEST POP PUSH1 0x20 SWAP8 DUP9 ADD SWAP8 SWAP7 SWAP1 SWAP7 ADD SWAP6 SWAP4 POP POP POP PUSH1 0x1 ADD PUSH2 0x145C JUMP JUMPDEST POP PUSH1 0x60 DUP10 ADD MLOAD DUP8 DUP3 SUB PUSH1 0x3F NOT ADD PUSH1 0xA0 DUP10 ADD MSTORE SWAP5 POP PUSH2 0x14DA DUP2 DUP7 PUSH2 0x1328 JUMP JUMPDEST SWAP5 POP POP POP POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0xB36 DUP2 DUP6 PUSH2 0x1353 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1502 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x150D DUP2 PUSH2 0x10B8 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 PUSH2 0x150D PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1328 JUMP JUMPDEST DUP1 MLOAD PUSH1 0x20 DUP1 DUP4 ADD MLOAD SWAP2 SWAP1 DUP2 LT ISZERO PUSH2 0xF91 JUMPI PUSH0 NOT PUSH1 0x20 SWAP2 SWAP1 SWAP2 SUB PUSH1 0x3 SHL SHL AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH2 0x155A DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x10E3 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x5AF JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP4 MLOAD PUSH2 0x1594 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x10E3 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 0x4AFF PUSH2 0x1681 PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x17A9 ADD MSTORE PUSH2 0x22FE ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0xDC2 ADD MSTORE PUSH2 0xFDC ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x76C ADD MSTORE PUSH2 0xA00 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x36E ADD MSTORE PUSH2 0x2134 ADD MSTORE PUSH0 DUP2 DUP2 PUSH2 0x2DD ADD MSTORE DUP2 DUP2 PUSH2 0x3FA ADD MSTORE DUP2 DUP2 PUSH2 0x9D8 ADD MSTORE DUP2 DUP2 PUSH2 0xB9A ADD MSTORE DUP2 DUP2 PUSH2 0x12CC ADD MSTORE DUP2 DUP2 PUSH2 0x137B ADD MSTORE DUP2 DUP2 PUSH2 0x166A ADD MSTORE PUSH2 0x1860 ADD MSTORE PUSH0 PUSH2 0x1FD4 ADD MSTORE PUSH0 PUSH2 0x1FA7 ADD MSTORE PUSH0 PUSH2 0x1E85 ADD MSTORE PUSH0 PUSH2 0x1E5D ADD MSTORE PUSH0 PUSH2 0x1DB8 ADD MSTORE PUSH0 PUSH2 0x1DE2 ADD MSTORE PUSH0 PUSH2 0x1E0C ADD MSTORE PUSH2 0x4AFF PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x228 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x129 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0xA8 JUMPI DUP1 PUSH4 0xDD62ED3E GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x6BA JUMPI DUP1 PUSH4 0xDDB2BF5C EQ PUSH2 0x6FE JUMPI DUP1 PUSH4 0xF399E22E EQ PUSH2 0x71D JUMPI DUP1 PUSH4 0xF577CAEE EQ PUSH2 0x73C JUMPI DUP1 PUSH4 0xF69A00B6 EQ PUSH2 0x75B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x62A JUMPI DUP1 PUSH4 0xACB734BB EQ PUSH2 0x649 JUMPI DUP1 PUSH4 0xB9DCADF2 EQ PUSH2 0x65D JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x67C JUMPI DUP1 PUSH4 0xD6F29E81 EQ PUSH2 0x69B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8A510F27 GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x8A510F27 EQ PUSH2 0x58D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x5AC JUMPI DUP1 PUSH4 0x96FE8EB1 EQ PUSH2 0x5C0 JUMPI DUP1 PUSH4 0xA41942A4 EQ PUSH2 0x5DF JUMPI DUP1 PUSH4 0xA53CB851 EQ PUSH2 0x5FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x4AC JUMPI DUP1 PUSH4 0x77CC7A3A EQ PUSH2 0x4E0 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x4FF JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x51E JUMPI DUP1 PUSH4 0x873234CF EQ PUSH2 0x545 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2B8C49E3 GT PUSH2 0x1B5 JUMPI DUP1 PUSH4 0x4C68DF67 GT PUSH2 0x17A JUMPI DUP1 PUSH4 0x4C68DF67 EQ PUSH2 0x43E JUMPI DUP1 PUSH4 0x520A5495 EQ PUSH2 0x452 JUMPI DUP1 PUSH4 0x5F029EBE EQ PUSH2 0x466 JUMPI DUP1 PUSH4 0x6D0D6A7E EQ PUSH2 0x479 JUMPI DUP1 PUSH4 0x7090C8D6 EQ PUSH2 0x498 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2B8C49E3 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x3AF JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x3CA JUMPI DUP1 PUSH4 0x47A10E56 EQ PUSH2 0x3DE JUMPI DUP1 PUSH4 0x4BA0D150 EQ PUSH2 0x42A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1014D375 GT PUSH2 0x1FB JUMPI DUP1 PUSH4 0x1014D375 EQ PUSH2 0x2CC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x2FF JUMPI DUP1 PUSH4 0x18BF5077 EQ PUSH2 0x31D JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x33E JUMPI DUP1 PUSH4 0x27AE6883 EQ PUSH2 0x35D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1367F73 EQ PUSH2 0x22C JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x25D JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x28C JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2AD JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x237 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x240 PUSH2 0x78E 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 0x268 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27C PUSH2 0x277 CALLDATASIZE PUSH1 0x4 PUSH2 0x3902 JUMP JUMPDEST PUSH2 0x7A6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x254 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x297 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x7DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x3976 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27C PUSH2 0x2C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x399C JUMP JUMPDEST PUSH2 0x86C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x240 PUSH32 0x0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x254 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x328 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x337 CALLDATASIZE PUSH1 0x4 PUSH2 0x399C JUMP JUMPDEST PUSH2 0x883 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x349 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27C PUSH2 0x358 CALLDATASIZE PUSH1 0x4 PUSH2 0x39C6 JUMP JUMPDEST PUSH2 0x8DB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x368 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x240 PUSH32 0x0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x3AA CALLDATASIZE PUSH1 0x4 PUSH2 0x399C JUMP JUMPDEST PUSH2 0x8FE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x254 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x94E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27C PUSH2 0x3F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A04 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 0x435 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x95C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x449 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x984 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x45D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x99F JUMP JUMPDEST PUSH2 0x30F PUSH2 0x474 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A1F JUMP JUMPDEST PUSH2 0x9C1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x484 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x493 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A7A JUMP JUMPDEST PUSH2 0xAD9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0xDB2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x4C6 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A04 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x4FA CALLDATASIZE PUSH1 0x4 PUSH2 0x3A1F JUMP JUMPDEST PUSH2 0xDEB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x519 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A04 JUMP JUMPDEST PUSH2 0xE07 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x529 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x532 PUSH2 0xE24 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3AE5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x550 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x559 PUSH2 0xE66 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH2 0xFFFF SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD SWAP1 SWAP2 AND SWAP1 DUP3 ADD MSTORE SWAP2 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x254 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x598 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x5A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x3B9A JUMP JUMPDEST PUSH2 0xEC9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x1123 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5CB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x5DA CALLDATASIZE PUSH1 0x4 PUSH2 0x3C80 JUMP JUMPDEST PUSH2 0x1132 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x5F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A04 JUMP JUMPDEST PUSH2 0x11B6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x609 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x61D PUSH2 0x618 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A1F JUMP JUMPDEST PUSH2 0x1276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x3DA8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x635 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27C PUSH2 0x644 CALLDATASIZE PUSH1 0x4 PUSH2 0x399C JUMP JUMPDEST PUSH2 0x136A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x654 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x1377 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x668 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x677 CALLDATASIZE PUSH1 0x4 PUSH2 0x3DC2 JUMP JUMPDEST PUSH2 0x1472 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x687 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x696 CALLDATASIZE PUSH1 0x4 PUSH2 0x3DE9 JUMP JUMPDEST PUSH2 0x152F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x6B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E55 JUMP JUMPDEST PUSH2 0x1665 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x6D4 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E83 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 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 0x709 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x718 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A1F JUMP JUMPDEST PUSH2 0x185A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x728 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x737 CALLDATASIZE PUSH1 0x4 PUSH2 0x3EBA JUMP JUMPDEST PUSH2 0x1885 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x747 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x756 CALLDATASIZE PUSH1 0x4 PUSH2 0x3ED7 JUMP JUMPDEST PUSH2 0x1B96 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x766 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x240 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH0 PUSH2 0x797 PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCCCC665 PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x7D6 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 0x7EB SWAP1 PUSH2 0x3F15 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 0x817 SWAP1 PUSH2 0x3F15 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x862 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x839 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x862 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x845 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x879 DUP2 DUP6 DUP6 PUSH2 0x1C35 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x88C CALLER PUSH2 0x1C42 JUMP JUMPDEST PUSH2 0x896 DUP3 DUP3 PUSH2 0x1C71 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 PUSH0 CALLER PUSH2 0x8E8 DUP6 DUP3 DUP6 PUSH2 0x1CA5 JUMP JUMPDEST PUSH2 0x8F3 DUP6 DUP6 DUP6 PUSH2 0x1D1B JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x907 CALLER PUSH2 0x1C42 JUMP JUMPDEST PUSH2 0x911 DUP3 DUP3 PUSH2 0x1D78 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 0x8CF JUMP JUMPDEST PUSH0 PUSH2 0x957 PUSH2 0x1DAC JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x957 PUSH1 0x1 CHAINID EQ PUSH2 0x96D PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x2 ADD SLOAD PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND SWAP1 PUSH2 0x1ED8 JUMP JUMPDEST PUSH0 PUSH2 0x98D PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x9A8 PUSH2 0x1C11 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 PUSH0 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 0xA68 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA8C SWAP2 SWAP1 PUSH2 0x3F47 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 SUB PUSH2 0xAD4 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 PUSH2 0xB36 PUSH2 0xAE4 PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x3 ADD SLOAD PUSH2 0xFFFF AND PUSH2 0xAFC PUSH1 0x80 DUP7 ADD PUSH1 0x60 DUP8 ADD PUSH2 0x3F6D 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 0x1F29 JUMP JUMPDEST PUSH2 0xB81 PUSH2 0xB51 PUSH2 0xB44 PUSH2 0x1C11 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 0x1F29 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3686B53F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6D0D6A7E SWAP1 PUSH2 0xBD3 SWAP1 DUP8 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x3FF1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xBEE JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0xC15 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x41FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x67C4440F PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP2 POP PUSH20 0x0 SWAP1 PUSH4 0x67C4440F SWAP1 PUSH2 0xC4F SWAP1 DUP5 SWAP1 PUSH1 0x4 ADD PUSH2 0x42AE JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xC88 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xC85 SWAP2 DUP2 ADD SWAP1 PUSH2 0x439A JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xCFB JUMPI PUSH2 0xC94 PUSH2 0x43B5 JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0xCC2 JUMPI POP PUSH2 0xCA8 PUSH2 0x43CD JUMP JUMPDEST DUP1 PUSH2 0xCB3 JUMPI POP PUSH2 0xCC4 JUMP JUMPDEST PUSH2 0xCBC DUP2 PUSH2 0x1F33 JUMP JUMPDEST POP PUSH2 0xDAC JUMP JUMPDEST POP JUMPDEST RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xCED JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xCF2 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH2 0xCBC PUSH2 0x1F6A 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 0xD56 PUSH2 0x1C11 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 0xD85 PUSH2 0x1C11 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 PUSH1 0x60 PUSH2 0x957 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH32 0x0 AND CHAINID PUSH1 0x1 EQ PUSH2 0x1ED8 JUMP JUMPDEST PUSH0 PUSH2 0xDF4 PUSH2 0x1C11 JUMP JUMPDEST PUSH0 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 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x7D6 JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 PUSH0 PUSH0 PUSH0 PUSH1 0x60 PUSH2 0xE35 PUSH2 0x1FA0 JUMP JUMPDEST PUSH2 0xE3D PUSH2 0x1FCD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 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 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0xE8A PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 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 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP1 DUP3 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH2 0xEDD CALLER PUSH2 0x4C6 JUMP JUMPDEST LT ISZERO PUSH2 0xF20 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 0xACB JUMP JUMPDEST PUSH0 PUSH2 0xF29 PUSH2 0x1C11 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 0xF8B 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 0xACB JUMP JUMPDEST PUSH0 PUSH2 0xFCF 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 PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP CHAINID PUSH1 0x1 EQ SWAP2 POP PUSH2 0x1FFA SWAP1 POP JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH32 0x0 DUP2 AND SWAP1 DUP3 AND SUB PUSH2 0x1041 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 0xACB JUMP JUMPDEST PUSH2 0x104B DUP7 DUP4 PUSH2 0x4463 JUMP JUMPDEST PUSH2 0x1053 PUSH2 0x1C11 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 0x107E SWAP1 CALLER SWAP1 DUP9 AND PUSH2 0x1D78 JUMP JUMPDEST PUSH2 0x1086 PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x1 ADD DUP1 SLOAD PUSH1 0x8 SWAP1 PUSH2 0x10A7 SWAP1 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x4482 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 0x10FD CALLER SWAP1 JUMP JUMPDEST DUP7 DUP7 DUP10 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1112 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x44AC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x7EB SWAP1 PUSH2 0x3F15 JUMP JUMPDEST PUSH2 0x113A PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x116B JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 MLOAD GT PUSH2 0x117B JUMPI PUSH2 0x117B PUSH2 0x44ED JUMP JUMPDEST DUP1 PUSH2 0x1184 PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x4 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x119A SWAP3 SWAP2 SWAP1 PUSH2 0x384C JUMP JUMPDEST POP PUSH2 0x11B3 DUP2 PUSH2 0x11AE PUSH1 0x1 CHAINID EQ PUSH2 0x96D PUSH2 0x1C11 JUMP JUMPDEST PUSH2 0x20AB JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x11BE PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x11EF 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 0x1205 JUMPI PUSH2 0x1205 PUSH2 0x44ED JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1217 PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH32 0xC63757ACC12B39558FE5B88C5393E4B0353FFDDAAE3A2D07E121A8FC62D39C37 SWAP1 PUSH0 SWAP1 LOG3 DUP1 PUSH2 0x1255 PUSH2 0x1C11 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 PUSH0 PUSH0 PUSH2 0x1280 PUSH2 0x1C11 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x6 SWAP2 SWAP1 SWAP2 ADD PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 POP DUP2 SWAP1 SUB PUSH2 0x12A3 JUMPI POP PUSH0 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x12B4 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 0x1319 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x133D SWAP2 SWAP1 PUSH2 0x4501 JUMP JUMPDEST PUSH1 0x6 DUP2 GT ISZERO PUSH2 0x134E JUMPI PUSH2 0x134E PUSH2 0x3D94 JUMP JUMPDEST EQ PUSH2 0x135A JUMPI PUSH1 0x2 PUSH2 0x135D JUMP JUMPDEST PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x879 DUP2 DUP6 DUP6 PUSH2 0x1D1B 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 0x13D5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x13F9 SWAP2 SWAP1 PUSH2 0x451F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x8A227764 PUSH2 0x140F PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1431 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x144B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x957 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x453A JUMP JUMPDEST PUSH2 0x147A PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x14AB 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 0x14BA PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x3F6D JUMP JUMPDEST PUSH2 0xFFFF AND LT ISZERO DUP1 ISZERO PUSH2 0x14E0 JUMPI POP PUSH1 0x32 PUSH2 0x14D9 PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x3F6D JUMP JUMPDEST PUSH2 0xFFFF AND GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1508 JUMPI POP PUSH4 0xBEBC200 PUSH2 0x14FC PUSH1 0x60 DUP4 ADD PUSH1 0x40 DUP5 ADD PUSH2 0x4573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND LT ISZERO JUMPDEST PUSH2 0x1514 JUMPI PUSH2 0x1514 PUSH2 0x44ED JUMP JUMPDEST DUP1 PUSH2 0x151D PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x3 ADD PUSH2 0x152A DUP3 DUP3 PUSH2 0x458E JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x1553 JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x159E DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 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 PUSH0 PUSH2 0x15F8 DUP3 PUSH2 0x21BC JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1607 DUP3 DUP8 DUP8 DUP8 PUSH2 0x21E8 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 0x164E 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 0xACB JUMP JUMPDEST PUSH2 0x1659 DUP11 DUP11 DUP11 PUSH2 0x1C35 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x16C0 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 0x1F29 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D933EB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH20 0x0 SWAP1 PUSH4 0x5D933EB7 SWAP1 PUSH2 0x16FB SWAP1 DUP7 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x4613 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1737 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x1734 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x462C JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x17A4 JUMPI PUSH2 0x1743 PUSH2 0x43B5 JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0x176B JUMPI POP PUSH2 0x1757 PUSH2 0x43CD JUMP JUMPDEST DUP1 PUSH2 0x1762 JUMPI POP PUSH2 0x176D JUMP JUMPDEST PUSH2 0xDAC DUP2 PUSH2 0x1F33 JUMP JUMPDEST POP JUMPDEST RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1796 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x179B JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH2 0xDAC PUSH2 0x1F6A JUMP JUMPDEST PUSH2 0x1800 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 0x1F29 JUMP JUMPDEST PUSH2 0x1813 DUP3 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x1C71 JUMP JUMPDEST PUSH32 0xBAE099C209765C02C309F0FAC06AEC3AC516A3CC60D09F1A3DA4B52D673D28A3 DUP4 DUP4 DUP4 DUP9 PUSH1 0x40 MLOAD PUSH2 0x1848 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x46C0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x7D6 PUSH32 0x0 DUP4 PUSH2 0x2214 JUMP JUMPDEST PUSH0 PUSH2 0x188E PUSH2 0x22D4 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 PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x18B4 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x18CF JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x18DD JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x18FB 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 0x1925 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP8 PUSH2 0x192E PUSH2 0x1C11 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 PUSH0 SWAP1 PUSH32 0xC63757ACC12B39558FE5B88C5393E4B0353FFDDAAE3A2D07E121A8FC62D39C37 SWAP1 DUP3 SWAP1 LOG3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 CHAINID EQ PUSH2 0x1990 JUMPI PUSH1 0x3 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0xC JUMPDEST PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x19A8 PUSH1 0x5 PUSH1 0x32 PUSH2 0x4714 JUMP JUMPDEST PUSH2 0xFFFF AND DUP2 MSTORE PUSH4 0xBEBC200 PUSH1 0x20 SWAP1 SWAP2 ADD MSTORE PUSH2 0x19C1 PUSH2 0x1C11 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH5 0x100000000 MUL PUSH12 0xFFFFFFFFFFFFFFFF00000000 NOT PUSH2 0xFFFF SWAP6 DUP7 AND PUSH3 0x10000 MUL PUSH4 0xFFFFFFFF NOT SWAP1 SWAP4 AND SWAP6 SWAP1 SWAP5 AND SWAP5 SWAP1 SWAP5 OR OR SWAP2 SWAP1 SWAP2 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH0 PUSH1 0x1 PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1A51 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1A3C JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x1 CHAINID EQ PUSH2 0x1A97 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 0x1ACE 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 PUSH0 DUP2 MLOAD DUP2 LT PUSH2 0x1AE0 JUMPI PUSH2 0x1AE0 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 PUSH2 0x1AF4 PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x4 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1B0A SWAP3 SWAP2 SWAP1 PUSH2 0x384C JUMP JUMPDEST POP PUSH2 0x1B49 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 PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x22FC SWAP3 POP POP POP JUMP JUMPDEST POP DUP4 ISZERO PUSH2 0x1B8C 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 0x1848 JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1B9E PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1BCF JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1C0D 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 PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x22FC SWAP3 POP POP POP JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58F9 SWAP1 JUMP JUMPDEST PUSH2 0x152A DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x24B1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x28 PUSH1 0x21 PUSH1 0x99 SHL ADD EQ PUSH2 0x11B3 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 0x1C9A JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH2 0x1C0D PUSH0 DUP4 DUP4 PUSH2 0x2583 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 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 PUSH0 NOT DUP2 LT ISZERO PUSH2 0xDAC JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x1D0D 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 0xACB JUMP JUMPDEST PUSH2 0xDAC DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x24B1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1D44 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1D6D JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH2 0x152A DUP4 DUP4 DUP4 PUSH2 0x2583 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1DA1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH2 0x1C0D DUP3 PUSH0 DUP4 PUSH2 0x2583 JUMP JUMPDEST PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x1E04 JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x1E2E JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x957 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 PUSH0 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 PUSH1 0x60 PUSH2 0x135D DUP4 PUSH1 0x60 SHR DUP4 PUSH2 0x1F08 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 0x26A9 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 0x26A9 JUMP JUMPDEST DUP2 PUSH2 0x1C0D JUMPI PUSH2 0x1C0D DUP2 JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1F44 SWAP2 SWAP1 PUSH2 0x474B 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 0xACB SWAP2 PUSH1 0x4 ADD PUSH2 0x3976 JUMP JUMPDEST PUSH2 0x1F9E 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 0x1F33 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH2 0x957 PUSH32 0x0 PUSH1 0x5 PUSH2 0x26DD JUMP JUMPDEST PUSH1 0x60 PUSH2 0x957 PUSH32 0x0 PUSH1 0x6 PUSH2 0x26DD JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x2007 JUMPI PUSH1 0x2B PUSH2 0x200A JUMP JUMPDEST PUSH1 0x2A JUMPDEST PUSH1 0xFF AND DUP4 MLOAD EQ PUSH2 0x2055 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 0xACB JUMP JUMPDEST PUSH2 0x20A1 DUP4 DUP4 PUSH2 0x2080 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 0x2786 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 0x2786 JUMP JUMPDEST PUSH1 0x60 SHL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x2 DUP1 DUP3 MSTORE PUSH1 0x60 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH0 SWAP2 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x20C2 JUMPI SWAP1 POP POP SWAP1 POP PUSH2 0x20E1 PUSH2 0xDB2 JUMP JUMPDEST DUP2 PUSH0 DUP2 MLOAD DUP2 LT PUSH2 0x20F3 JUMPI PUSH2 0x20F3 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP2 DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x2112 JUMPI PUSH2 0x2112 PUSH2 0x4737 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 0x216B SWAP1 DUP5 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x47CC JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2187 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x21AB SWAP2 SWAP1 PUSH2 0x3F47 JUMP JUMPDEST PUSH2 0x21B3 PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x5 ADD SSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x7D6 PUSH2 0x21C8 PUSH2 0x1DAC 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 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x21F8 DUP9 DUP9 DUP9 DUP9 PUSH2 0x2804 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x2208 DUP3 DUP3 PUSH2 0x28CC 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 0x2D2A8 PUSH1 0x24 DUP3 ADD MSTORE PUSH0 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 0x2265 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2289 SWAP2 SWAP1 PUSH2 0x3F47 JUMP JUMPDEST PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58FC SLOAD PUSH2 0x22C0 SWAP1 PUSH3 0x10000 SWAP1 DIV PUSH2 0xFFFF AND PUSH1 0x64 PUSH2 0x47F0 JUMP JUMPDEST PUSH2 0x22CA SWAP2 SWAP1 PUSH2 0x4803 JUMP JUMPDEST PUSH2 0x135D SWAP2 SWAP1 PUSH2 0x481A JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x7D6 JUMP JUMPDEST PUSH32 0x0 DUP2 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SUB PUSH2 0x236B 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 0xACB JUMP JUMPDEST PUSH32 0xC373FBD4EDF171C216B9195C4184B9DA9A43E8BAF2D461AD9256FE43922F6A96 DUP2 PUSH1 0x40 MLOAD PUSH2 0x239A SWAP2 SWAP1 PUSH2 0x3976 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x23AF DUP2 PUSH1 0x1 CHAINID EQ PUSH2 0x1FFA JUMP JUMPDEST PUSH2 0x23B7 PUSH2 0x1C11 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 0x11B3 PUSH2 0x23DD PUSH2 0x1C11 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 PUSH0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x24A7 JUMPI DUP4 DUP3 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x241C SWAP1 PUSH2 0x3F15 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 0x2448 SWAP1 PUSH2 0x3F15 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2493 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x246A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2493 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2476 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 0x23FF JUMP JUMPDEST POP POP POP POP DUP3 PUSH2 0x20AB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x24DA JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2503 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 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 0xDAC 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 0x2575 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 0x25AD JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x25A2 SWAP2 SWAP1 PUSH2 0x47F0 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x261D SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x25FF 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 0xACB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 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 0x2639 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x2657 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 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 0x269C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 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 0x135D SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP4 PUSH2 0x2984 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xFF DUP4 EQ PUSH2 0x26F7 JUMPI PUSH2 0x26F0 DUP4 PUSH2 0x29D0 JUMP JUMPDEST SWAP1 POP PUSH2 0x7D6 JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0x2703 SWAP1 PUSH2 0x3F15 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 0x272F SWAP1 PUSH2 0x3F15 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x277A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2751 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x277A JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x275D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x7D6 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x27B3 DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x279D SWAP2 SWAP1 PUSH2 0x482D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x1 PUSH2 0x2A0D JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x27E0 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x27CB SWAP2 SWAP1 PUSH2 0x482D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP4 PUSH2 0x2D97 JUMP JUMPDEST PUSH0 PUSH2 0x27EF DUP3 PUSH1 0x5 PUSH1 0x8 PUSH0 PUSH2 0x2DEB JUMP JUMPDEST SWAP1 POP PUSH2 0x27FA DUP2 PUSH2 0x2DF9 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x283D JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x28C2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 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 0x288E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x28B9 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x28C2 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28DF JUMPI PUSH2 0x28DF PUSH2 0x3D94 JUMP JUMPDEST SUB PUSH2 0x28E8 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28FC JUMPI PUSH2 0x28FC PUSH2 0x3D94 JUMP JUMPDEST SUB PUSH2 0x291A 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 0x292E JUMPI PUSH2 0x292E PUSH2 0x3D94 JUMP JUMPDEST SUB PUSH2 0x294F JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2963 JUMPI PUSH2 0x2963 PUSH2 0x3D94 JUMP JUMPDEST SUB PUSH2 0x1C0D JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2998 SWAP2 SWAP1 PUSH2 0x482D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP1 POP PUSH0 PUSH2 0x29B9 DUP6 PUSH1 0x8 PUSH1 0x5 PUSH1 0x1 PUSH2 0x2E53 JUMP JUMPDEST SWAP1 POP PUSH2 0x29C7 DUP3 DUP3 PUSH1 0x1 PUSH2 0x2F19 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x29DC DUP4 PUSH2 0x319B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH0 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 PUSH0 PUSH1 0x5A DUP6 MLOAD GT ISZERO PUSH2 0x2A63 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 0xACB JUMP JUMPDEST PUSH0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x2B5E JUMPI PUSH0 DUP7 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2A81 JUMPI PUSH2 0x2A81 PUSH2 0x4737 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0xF8 SHR SWAP1 POP PUSH1 0x21 DUP2 LT DUP1 ISZERO SWAP1 PUSH2 0x2AA0 JUMPI POP PUSH1 0x7E DUP2 PUSH1 0xFF AND GT ISZERO JUMPDEST PUSH2 0x2AE1 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 0xACB JUMP JUMPDEST PUSH1 0x30 NOT PUSH1 0xFF DUP3 AND ADD PUSH2 0x2B55 JUMPI DUP3 ISZERO DUP1 ISZERO PUSH2 0x2AFC JUMPI POP PUSH1 0x1 DUP3 LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x2B0C JUMPI POP DUP7 MLOAD DUP3 PUSH1 0x7 ADD GT ISZERO JUMPDEST PUSH2 0x2B51 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 0xACB JUMP JUMPDEST DUP2 SWAP3 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x2A65 JUMP JUMPDEST POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2B77 JUMPI PUSH2 0x2B77 PUSH2 0x3BB7 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 0x2BA1 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP3 POP PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2BFB JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x2BC0 JUMPI PUSH2 0x2BC0 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2BDD JUMPI PUSH2 0x2BDD PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP PUSH1 0x1 ADD PUSH2 0x2BA6 JUMP JUMPDEST POP PUSH1 0x1 DUP2 DUP7 MLOAD SUB SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C1A JUMPI PUSH2 0x2C1A PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2C43 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x2D34 JUMPI PUSH0 PUSH1 0x40 MLOAD DUP1 PUSH2 0x120 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x100 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x49AA PUSH2 0x100 SWAP2 CODECOPY DUP8 DUP5 DUP5 ADD PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0x2C85 JUMPI PUSH2 0x2C85 PUSH2 0x4737 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD DUP2 MLOAD PUSH1 0xF8 SWAP2 SWAP1 SWAP2 SHR SWAP1 DUP2 LT PUSH2 0x2CA1 JUMPI PUSH2 0x2CA1 PUSH2 0x4737 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 0x2D03 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 0xACB JUMP JUMPDEST DUP1 PUSH1 0xF8 SHR DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2D19 JUMPI PUSH2 0x2D19 PUSH2 0x4737 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 0x2C48 JUMP JUMPDEST POP PUSH2 0x2D40 DUP4 DUP4 DUP7 PUSH2 0x31C2 JUMP JUMPDEST PUSH2 0x2D85 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 0xACB 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 0x1C0D 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 0xACB JUMP JUMPDEST PUSH1 0x60 PUSH2 0x29C7 DUP6 DUP6 DUP6 DUP6 PUSH2 0x32EC JUMP JUMPDEST PUSH0 DUP2 MLOAD PUSH1 0x14 EQ PUSH2 0x2E4B 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 0xACB JUMP JUMPDEST POP PUSH1 0x14 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP6 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E6F JUMPI PUSH2 0x2E6F PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2E98 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP2 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x2F0C JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x2EC4 JUMPI PUSH2 0x2EC4 PUSH2 0x4737 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 0x2EEA JUMPI PUSH2 0x2EEA PUSH2 0x4737 JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH2 0x2F05 DUP2 PUSH2 0x4848 JUMP JUMPDEST SWAP1 POP PUSH2 0x2E9D JUMP JUMPDEST POP PUSH2 0x27FA DUP2 DUP7 DUP7 DUP7 PUSH2 0x32EC JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x2F27 DUP6 DUP6 DUP6 PUSH2 0x34B9 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD DUP6 MLOAD DUP8 MLOAD ADD ADD PUSH1 0x1 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2F4C JUMPI PUSH2 0x2F4C PUSH2 0x3BB7 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 0x2F76 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP7 MLOAD DUP2 LT ISZERO PUSH2 0x2FD1 JUMPI DUP7 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x2F96 JUMPI PUSH2 0x2F96 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2FB3 JUMPI PUSH2 0x2FB3 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP PUSH1 0x1 ADD PUSH2 0x2F7B JUMP JUMPDEST POP PUSH1 0x31 PUSH1 0xF8 SHL DUP2 DUP8 MLOAD DUP2 MLOAD DUP2 LT PUSH2 0x2FEA JUMPI PUSH2 0x2FEA PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP DUP6 MLOAD PUSH1 0x1 ADD PUSH0 JUMPDEST DUP7 MLOAD DUP2 LT ISZERO PUSH2 0x30CB JUMPI PUSH0 DUP8 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3023 JUMPI PUSH2 0x3023 PUSH2 0x4737 JUMP JUMPDEST ADD PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE DUP3 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x4AAA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 DUP4 ADD MSTORE PUSH1 0xF8 SHR SWAP2 POP DUP2 LT ISZERO PUSH2 0x30C2 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x4AAA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 MSTORE POP DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x308C JUMPI PUSH2 0x308C PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP5 DUP5 ADD DUP2 MLOAD DUP2 LT PUSH2 0x30AB JUMPI PUSH2 0x30AB PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x3007 JUMP JUMPDEST POP DUP6 MLOAD ADD PUSH0 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x2208 JUMPI PUSH0 DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x30ED JUMPI PUSH2 0x30ED PUSH2 0x4737 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 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x4AAA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 MSTORE POP MLOAD DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x3192 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x4AAA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 MSTORE POP DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x315C JUMPI PUSH2 0x315C PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP5 DUP5 ADD DUP2 MLOAD DUP2 LT PUSH2 0x317B JUMPI PUSH2 0x317B PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x30D1 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x7D6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 PUSH2 0x31CD DUP6 PUSH2 0x3658 JUMP JUMPDEST SWAP1 POP PUSH0 DUP5 MLOAD DUP3 MLOAD ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x31EC JUMPI PUSH2 0x31EC PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3215 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x326F JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x3235 JUMPI PUSH2 0x3235 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3252 JUMPI PUSH2 0x3252 PUSH2 0x4737 JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x321A JUMP JUMPDEST POP PUSH0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x32CA JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x328D JUMPI PUSH2 0x328D PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP5 MLOAD DUP4 ADD DUP2 MLOAD DUP2 LT PUSH2 0x32AD JUMPI PUSH2 0x32AD PUSH2 0x4737 JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x3272 JUMP JUMPDEST POP DUP4 PUSH4 0xFFFFFFFF AND PUSH2 0x32DB DUP3 PUSH2 0x3752 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND EQ SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP1 PUSH2 0x32FE PUSH1 0x1 DUP1 DUP9 SHL PUSH2 0x4863 JUMP JUMPDEST SWAP1 POP PUSH0 JUMPDEST DUP9 MLOAD DUP2 LT ISZERO PUSH2 0x33F2 JUMPI PUSH0 DUP10 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x331E JUMPI PUSH2 0x331E PUSH2 0x4737 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 0x339F 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 0xACB JUMP JUMPDEST SWAP4 DUP9 SHL PUSH1 0xFF DUP6 AND OR SWAP4 SWAP3 DUP9 ADD SWAP3 JUMPDEST DUP8 DUP5 LT PUSH2 0x33E9 JUMPI PUSH1 0x40 MLOAD SWAP4 DUP9 SWAP1 SUB SWAP4 PUSH2 0x33D3 SWAP1 DUP8 SWAP1 DUP8 DUP8 SHR DUP7 AND PUSH1 0xF8 SHL SWAP1 PUSH1 0x20 ADD PUSH2 0x4876 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP6 POP PUSH2 0x33AD JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x3302 JUMP JUMPDEST POP DUP5 ISZERO PUSH2 0x343A JUMPI DUP2 ISZERO PUSH2 0x3435 JUMPI DUP4 DUP2 PUSH2 0x340B DUP5 DUP10 PUSH2 0x4863 JUMP JUMPDEST DUP6 SWAP1 SHL AND PUSH1 0xF8 SHL PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x3423 SWAP3 SWAP2 SWAP1 PUSH2 0x4876 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP JUMPDEST PUSH2 0x34AE JUMP JUMPDEST DUP7 DUP3 LT DUP1 PUSH2 0x3454 JUMPI POP DUP1 PUSH2 0x344E DUP4 DUP9 PUSH2 0x4863 JUMP JUMPDEST DUP5 SWAP1 SHL AND ISZERO JUMPDEST PUSH2 0x34AE 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 0xACB JUMP JUMPDEST POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x34C5 DUP6 PUSH2 0x3658 JUMP JUMPDEST SWAP1 POP PUSH0 DUP5 MLOAD DUP3 MLOAD ADD PUSH1 0x6 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x34E7 JUMPI PUSH2 0x34E7 PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3510 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP6 MLOAD DUP4 MLOAD ADD DUP2 LT ISZERO PUSH2 0x35D3 JUMPI DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x3578 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x353C JUMPI PUSH2 0x353C PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3559 JUMPI PUSH2 0x3559 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH4 0xFFFFFFFF AND SWAP1 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP POP PUSH2 0x35CB JUMP JUMPDEST DUP6 DUP4 MLOAD DUP3 SUB DUP2 MLOAD DUP2 LT PUSH2 0x358D JUMPI PUSH2 0x358D PUSH2 0x4737 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 0x35B0 JUMPI PUSH2 0x35B0 PUSH2 0x4737 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 0x3515 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 PUSH0 DUP5 PUSH2 0x3600 DUP4 PUSH2 0x3752 JUMP JUMPDEST XOR SWAP1 POP PUSH0 JUMPDEST PUSH1 0x6 DUP2 LT ISZERO PUSH2 0x364D JUMPI DUP1 PUSH1 0x5 SUB PUSH1 0x5 MUL DUP3 PUSH4 0xFFFFFFFF AND SWAP1 SHR PUSH1 0x1F AND DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3633 JUMPI PUSH2 0x3633 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x3605 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 0x3679 JUMPI PUSH2 0x3679 PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x36A2 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x1364 JUMPI PUSH1 0x5 DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x36C4 JUMPI PUSH2 0x36C4 PUSH2 0x4737 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 0x36E9 JUMPI PUSH2 0x36E9 PUSH2 0x4737 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 0x370F JUMPI PUSH2 0x370F PUSH2 0x4737 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 0x3738 JUMPI PUSH2 0x3738 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x36A7 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 PUSH0 SWAP1 PUSH1 0x1 SWAP1 DUP3 JUMPDEST DUP5 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x3843 JUMPI PUSH0 PUSH1 0x19 DUP5 PUSH4 0xFFFFFFFF AND SWAP1 SHR SWAP1 POP DUP6 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x37C9 JUMPI PUSH2 0x37C9 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x5 DUP6 PUSH4 0x1FFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 SHL XOR SWAP4 POP PUSH0 PUSH0 SWAP1 POP JUMPDEST PUSH1 0x5 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x3839 JUMPI PUSH1 0x1 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND SHR DUP2 AND SWAP1 SUB PUSH2 0x3831 JUMPI DUP4 DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0x5 DUP2 LT PUSH2 0x3827 JUMPI PUSH2 0x3827 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD DUP6 XOR SWAP5 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x37EA JUMP JUMPDEST POP POP PUSH1 0x1 ADD PUSH2 0x3794 JUMP JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x3890 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3890 JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH2 0x3880 SWAP1 DUP3 PUSH2 0x48EF JUMP JUMPDEST POP SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x386A JUMP JUMPDEST POP PUSH2 0x389C SWAP3 SWAP2 POP PUSH2 0x38A0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x389C JUMPI PUSH0 PUSH2 0x38B3 DUP3 DUP3 PUSH2 0x38BC JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x38A0 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0x38C8 SWAP1 PUSH2 0x3F15 JUMP JUMPDEST PUSH0 DUP3 SSTORE DUP1 PUSH1 0x1F LT PUSH2 0x38D7 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x11B3 SWAP2 SWAP1 JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x389C JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x38EF JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3912 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x135D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3943 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x392B JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x3962 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x3929 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 PUSH0 PUSH2 0x135D PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x394B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x39AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x39B8 DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x39D8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x39E3 DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x39F3 DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3A14 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x135D DUP2 PUSH2 0x3988 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3A2F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3A46 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3A5C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x3A73 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3A8C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3AA1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0xE0 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x3AB2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3ACC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x3AD8 DUP7 DUP3 DUP8 ADD PUSH2 0x3A36 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x3B03 PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0x394B JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x3B15 DUP2 DUP10 PUSH2 0x394B 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 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3B6A JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x3B4C 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 0x11B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAD4 DUP2 PUSH2 0x3B7B JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3BAC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x3AB2 DUP2 PUSH2 0x3B7B JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0xC0 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x3BEA JUMPI PUSH2 0x3BEA PUSH2 0x3BB7 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 0x3BEA JUMPI PUSH2 0x3BEA PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x3BEA JUMPI PUSH2 0x3BEA PUSH2 0x3BB7 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 0x3C53 JUMPI PUSH2 0x3C53 PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x3C72 JUMPI PUSH2 0x3C72 PUSH2 0x3BB7 JUMP JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3C90 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3CA5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x3CB5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3CCE JUMPI PUSH2 0x3CCE PUSH2 0x3BB7 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH1 0x40 MLOAD PUSH2 0x3CE2 PUSH1 0x20 DUP4 ADD DUP3 PUSH2 0x3C2E JUMP JUMPDEST SWAP2 DUP3 MSTORE PUSH1 0x20 DUP2 DUP5 ADD DUP2 ADD SWAP3 SWAP1 DUP2 ADD DUP8 DUP5 GT ISZERO PUSH2 0x3CFC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP6 ADD SWAP3 POP JUMPDEST DUP4 DUP4 LT ISZERO PUSH2 0x3D89 JUMPI DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3D20 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x3F DUP2 ADD DUP10 SGT PUSH2 0x3D30 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP2 ADD CALLDATALOAD PUSH2 0x3D3E DUP2 PUSH2 0x3C5A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D4B DUP3 DUP3 PUSH2 0x3C2E JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 DUP5 DUP5 ADD ADD DUP13 LT ISZERO PUSH2 0x3D5F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 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 0x3D03 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP2 ADD PUSH1 0x4 DUP4 LT PUSH2 0x3DBC JUMPI PUSH2 0x3DBC PUSH2 0x3D94 JUMP JUMPDEST SWAP2 SWAP1 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x3DD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x11B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x3DFF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x3E0A DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH2 0x3E1A DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH2 0x3E38 DUP2 PUSH2 0x3DDB 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 PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3E67 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3ACC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3E94 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x3E9F DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x3EAF DUP2 PUSH2 0x3988 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3ECC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x3AB2 DUP2 PUSH2 0x3988 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3EE8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3EFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x3F09 DUP6 DUP3 DUP7 ADD PUSH2 0x3A36 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x3F29 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1364 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3F57 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x11B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3F7D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x135D DUP2 PUSH2 0x3F5E JUMP JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3F9D JUMPI PUSH0 PUSH0 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 0x3FBB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x3A73 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 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 PUSH0 SWAP1 DUP6 ADD CALLDATALOAD PUSH2 0x4014 DUP2 PUSH2 0x3F5E JUMP JUMPDEST PUSH2 0xFFFF AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x402B DUP2 PUSH2 0x3F5E JUMP JUMPDEST PUSH2 0xFFFF AND PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0x80 DUP6 ADD CALLDATALOAD PUSH2 0x4042 DUP2 PUSH2 0x3B7B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0x405C PUSH1 0xA0 DUP7 ADD PUSH2 0x3B8F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x4077 PUSH1 0xC0 DUP7 ADD DUP7 PUSH2 0x3F88 JUMP JUMPDEST PUSH1 0xE0 PUSH2 0x100 DUP6 ADD MSTORE PUSH2 0x408E PUSH2 0x120 DUP6 ADD DUP3 DUP5 PUSH2 0x3FC9 JUMP JUMPDEST SWAP2 POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x27FA DUP2 DUP6 DUP8 PUSH2 0x3FC9 JUMP JUMPDEST DUP1 MLOAD PUSH1 0x14 DUP2 LT PUSH2 0xAD4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH2 0xAD4 DUP2 PUSH2 0x3B7B JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x40CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP4 ADD PUSH0 PUSH2 0x40DC DUP4 PUSH2 0x3C5A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x40E9 DUP3 DUP3 PUSH2 0x3C2E JUMP JUMPDEST DUP1 SWAP3 POP DUP5 DUP2 MSTORE DUP8 DUP6 DUP6 ADD GT ISZERO PUSH2 0x40FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x410B DUP6 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x3929 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0xAD4 DUP2 PUSH2 0x3DDB JUMP JUMPDEST PUSH0 PUSH1 0xC0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4131 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x413D DUP2 PUSH2 0x3BCB JUMP JUMPDEST DUP1 SWAP2 POP DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4155 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x40 DUP2 DUP7 SUB SLT ISZERO PUSH2 0x4166 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4172 DUP2 PUSH2 0x3BF0 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4187 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4193 DUP8 DUP3 DUP6 ADD PUSH2 0x40BD JUMP JUMPDEST DUP3 MSTORE POP PUSH1 0x20 SWAP2 DUP3 ADD MLOAD DUP3 DUP3 ADD MSTORE DUP3 MSTORE PUSH2 0x41AD SWAP1 DUP5 ADD PUSH2 0x4116 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x41BE PUSH1 0x40 DUP5 ADD PUSH2 0x4116 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x41CF PUSH1 0x60 DUP5 ADD PUSH2 0x4116 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x41E0 PUSH1 0x80 DUP5 ADD PUSH2 0x40B2 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x41F1 PUSH1 0xA0 DUP5 ADD PUSH2 0x40B2 JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x420D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4222 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH1 0xA0 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x4233 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x423F DUP2 PUSH2 0x3C0F JUMP JUMPDEST DUP2 MLOAD PUSH2 0x100 DUP2 LT PUSH2 0x424E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MSTORE PUSH2 0x425C PUSH1 0x20 DUP4 ADD PUSH2 0x40A4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP3 DUP2 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x4277 PUSH1 0x60 DUP4 ADD PUSH2 0x40B2 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4294 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x42A0 DUP7 DUP3 DUP6 ADD PUSH2 0x4121 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD PUSH2 0x100 DUP2 LT PUSH2 0x42C6 JUMPI PUSH2 0x42C6 PUSH2 0x3D94 JUMP JUMPDEST DUP1 PUSH1 0x20 DUP5 ADD MSTORE POP PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x14 DUP2 LT PUSH2 0x42E2 JUMPI PUSH2 0x42E2 PUSH2 0x3D94 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 0x4331 PUSH2 0x1C0 DUP7 ADD DUP3 PUSH2 0x394B 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 0x4360 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 0x29C7 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x43AA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x135D DUP2 PUSH2 0x3B7B JUMP JUMPDEST PUSH0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH2 0x1ED5 JUMPI PUSH1 0x4 PUSH0 PUSH0 RETURNDATACOPY POP PUSH0 MLOAD PUSH1 0xE0 SHR SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x43DA 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 0x4403 JUMPI POP POP SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x441E JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST RETURNDATASIZE DUP5 ADD PUSH1 0x3 NOT ADD DUP3 DUP3 ADD PUSH1 0x20 ADD GT ISZERO PUSH2 0x4438 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x4447 PUSH1 0x20 DUP3 DUP6 ADD ADD DUP6 PUSH2 0x3C2E JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x7D6 JUMPI PUSH2 0x7D6 PUSH2 0x444F JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 SUB PUSH2 0x44A3 JUMPI PUSH2 0x44A3 PUSH2 0x444F 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 PUSH0 SWAP1 PUSH2 0x44D0 SWAP1 DUP4 ADD DUP7 DUP9 PUSH2 0x3FC9 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 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4511 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x7 DUP2 LT PUSH2 0x135D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x452F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x135D DUP2 PUSH2 0x3988 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x454A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x455F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x456B DUP5 DUP3 DUP6 ADD PUSH2 0x40BD JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4583 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x135D DUP2 PUSH2 0x3B7B JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x4599 DUP2 PUSH2 0x3F5E 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 0x45BA DUP2 PUSH2 0x3F5E 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 0x45E2 DUP2 PUSH2 0x3B7B 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 POP POP JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x29C7 PUSH1 0x40 DUP4 ADD DUP5 DUP7 PUSH2 0x3FC9 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4640 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 MLOAD PUSH1 0x20 DUP8 ADD MLOAD SWAP1 SWAP6 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x465D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4669 DUP9 DUP3 DUP10 ADD PUSH2 0x40BD JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4684 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4690 DUP9 DUP3 DUP10 ADD PUSH2 0x40BD JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 DUP7 ADD MLOAD PUSH2 0x46A1 DUP2 PUSH2 0x3988 JUMP JUMPDEST PUSH1 0x80 DUP8 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x46B2 DUP2 PUSH2 0x3B7B JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x80 DUP2 MSTORE PUSH0 PUSH2 0x46D2 PUSH1 0x80 DUP4 ADD DUP8 PUSH2 0x394B 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 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xFFFF DUP4 AND DUP1 PUSH2 0x4727 JUMPI PUSH2 0x4727 PUSH2 0x4700 JUMP JUMPDEST DUP1 PUSH2 0xFFFF DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH12 0x2BB930B83832B22BA4AA1D1 PUSH1 0xA5 SHL DUP2 MSTORE PUSH0 DUP3 MLOAD PUSH2 0x4771 DUP2 PUSH1 0xC DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x3929 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD PUSH1 0xC ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 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 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2208 JUMPI PUSH1 0x1F NOT DUP6 DUP5 SUB ADD DUP9 MSTORE PUSH2 0x47B6 DUP4 DUP4 MLOAD PUSH2 0x394B JUMP JUMPDEST PUSH1 0x20 SWAP9 DUP10 ADD SWAP9 SWAP1 SWAP4 POP SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x479A JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH2 0x47DE PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x477E JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x29C7 DUP2 DUP6 PUSH2 0x477E JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x7D6 JUMPI PUSH2 0x7D6 PUSH2 0x444F JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x7D6 JUMPI PUSH2 0x7D6 PUSH2 0x444F JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x4828 JUMPI PUSH2 0x4828 PUSH2 0x4700 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH2 0x483E DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x3929 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x44A3 JUMPI PUSH2 0x44A3 PUSH2 0x444F JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x7D6 JUMPI PUSH2 0x7D6 PUSH2 0x444F JUMP JUMPDEST PUSH0 DUP4 MLOAD PUSH2 0x4887 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x3929 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 0x152A JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x48C9 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x48E8 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x48D5 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4908 JUMPI PUSH2 0x4908 PUSH2 0x3BB7 JUMP JUMPDEST PUSH2 0x491C DUP2 PUSH2 0x4916 DUP5 SLOAD PUSH2 0x3F15 JUMP JUMPDEST DUP5 PUSH2 0x48A4 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x494E JUMPI PUSH0 DUP4 ISZERO PUSH2 0x4937 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x48E8 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x497D JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x495D JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x499A JUMPI DUP7 DUP5 ADD MLOAD PUSH0 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 0x667358221220512B720B044A9FEE312DFE SWAP7 0xDB 0x1E 0x24 0xAC 0xD2 0xB0 0x4B PUSH14 0x7E12D7A603F9E380745DF0FE6473 PUSH16 0x6C634300081C00337B226A736F6E7270 PUSH4 0x223A2232 0x2E 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":"1097:18203:28:-:0;;;2423:2451;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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;2795:76:28::2;2813:19:::0;2834:13:::2;1438:1;2834:36;2795:17;:76::i;:::-;-1:-1:-1::0;;;;;;2778:93:28::2;;::::0;2909:37;;::::2;::::0;::::2;::::0;2882:64:::2;::::0;3000:18:::2;::::0;;3016:1:::2;3000:18:::0;;;;;::::2;::::0;;;2959:38:::2;::::0;3000:18:::2;;;;;;:::i;:::-;;;;;;;;;;;;;;;;2959:59;;3029:77;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;3029:77:28::2;;::::0;::::2;;;;;;;;;;;;;;;;;;;;::::0;::::2;;::::0;:19:::2;3049:1;3029:22;;;;;;;;:::i;:::-;;;;;;:77;;;;3161:29;-1:-1:-1::0;;;;;3161:52:28::2;;3228:510;;;;;;;;3303:37;3228:510;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;3473:19;3228:510;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;3228:510:28::2;;::::0;::::2;;::::0;3753:148:::2;;;;;;;;3800:30;3753:148;;;;;;;;:::i;:::-;::::0;;::::2;;3883:1;3858:27;;;;;;;;;;;;;;;;;;;;;;;1097:18203:::0;;;;;;;;;-1:-1:-1;1097:18203:28;;;;;;;3858:27:::2;;;;;;;;;;;;;;;;3753:148;;::::0;3161:751:::2;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3117:795:28;;::::2;;::::0;4036:549:::2;::::0;;::::2;::::0;::::2;::::0;;;3969:52;;::::2;::::0;::::2;::::0;4036:549;4111:37:::2;4036:549;;;;;;;;;;;;;;;;;;;;;;;;;4312:19;4036:549;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;4036:549:28::2;;::::0;::::2;;::::0;4600:148:::2;;;;;;;;4647:30;4600:148;;;;;;;;:::i;:::-;::::0;;::::2;;4730:1;4705:27;;;;;;;;;;;;;;;;;;;;;;;1097:18203:::0;;;;;;;;;-1:-1:-1;1097:18203:28;;;;;;;4705:27:::2;;;;;;;;;;;;;;;;4600:148;;::::0;3969:790:::2;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3923:836:28::2;;;-1:-1:-1::0;;;;;3923:836:28::2;;;::::0;::::2;4822:29;-1:-1:-1::0;;;;;4794:69:28::2;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4772:94:28::2;;::::0;-1:-1:-1;1097:18203:28;;-1:-1:-1;;1097:18203: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;9744:1;9733:12;;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;1097:18203: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::-;1097:18203:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DOMAIN_SEPARATOR_1556":{"entryPoint":2382,"id":1556,"parameterSlots":0,"returnSlots":1},"@_EIP712Name_4074":{"entryPoint":8096,"id":4074,"parameterSlots":0,"returnSlots":1},"@_EIP712Version_4086":{"entryPoint":8141,"id":4086,"parameterSlots":0,"returnSlots":1},"@__formallyVerifyRadonAssets_9002":{"entryPoint":8363,"id":9002,"parameterSlots":2,"returnSlots":0},"@__settleWitUnwrapper_9085":{"entryPoint":8956,"id":9085,"parameterSlots":1,"returnSlots":0},"@__storage_9096":{"entryPoint":7185,"id":9096,"parameterSlots":0,"returnSlots":1},"@_approve_1216":{"entryPoint":7221,"id":1216,"parameterSlots":3,"returnSlots":0},"@_approve_1276":{"entryPoint":9393,"id":1276,"parameterSlots":4,"returnSlots":0},"@_buildDomainSeparator_4004":{"entryPoint":null,"id":4004,"parameterSlots":0,"returnSlots":1},"@_burn_1198":{"entryPoint":7544,"id":1198,"parameterSlots":2,"returnSlots":0},"@_checkTokenBridge_8365":{"entryPoint":7234,"id":8365,"parameterSlots":1,"returnSlots":0},"@_convertBits_12051":{"entryPoint":13036,"id":12051,"parameterSlots":4,"returnSlots":1},"@_domainSeparatorV4_3983":{"entryPoint":7596,"id":3983,"parameterSlots":0,"returnSlots":1},"@_getInitializableStorage_413":{"entryPoint":8916,"id":413,"parameterSlots":0,"returnSlots":1},"@_hashTypedDataV4_4020":{"entryPoint":8636,"id":4020,"parameterSlots":1,"returnSlots":1},"@_initializableStorageSlot_399":{"entryPoint":null,"id":399,"parameterSlots":0,"returnSlots":1},"@_mint_1165":{"entryPoint":7281,"id":1165,"parameterSlots":2,"returnSlots":0},"@_msgSender_1631":{"entryPoint":null,"id":1631,"parameterSlots":0,"returnSlots":1},"@_requireHrpMatch_11048":{"entryPoint":11671,"id":11048,"parameterSlots":2,"returnSlots":0},"@_require_9018":{"entryPoint":7977,"id":9018,"parameterSlots":2,"returnSlots":0},"@_revertUnhandled_9043":{"entryPoint":8042,"id":9043,"parameterSlots":0,"returnSlots":0},"@_revert_9035":{"entryPoint":7987,"id":9035,"parameterSlots":1,"returnSlots":0},"@_spendAllowance_1324":{"entryPoint":7333,"id":1324,"parameterSlots":3,"returnSlots":0},"@_throwError_3859":{"entryPoint":10444,"id":3859,"parameterSlots":2,"returnSlots":0},"@_transfer_1055":{"entryPoint":7451,"id":1055,"parameterSlots":3,"returnSlots":0},"@_update_1132":{"entryPoint":9603,"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":2156,"id":976,"parameterSlots":2,"returnSlots":1},"@balanceOf_911":{"entryPoint":null,"id":911,"parameterSlots":1,"returnSlots":1},"@byteLength_1887":{"entryPoint":12699,"id":1887,"parameterSlots":1,"returnSlots":1},"@convertBits_11872":{"entryPoint":11859,"id":11872,"parameterSlots":4,"returnSlots":1},"@convertBits_11894":{"entryPoint":11755,"id":11894,"parameterSlots":4,"returnSlots":1},"@createChecksum_11722":{"entryPoint":13497,"id":11722,"parameterSlots":3,"returnSlots":1},"@crosschainBurn_139":{"entryPoint":2302,"id":139,"parameterSlots":2,"returnSlots":0},"@crosschainMint_115":{"entryPoint":2179,"id":115,"parameterSlots":2,"returnSlots":0},"@data_9648":{"entryPoint":null,"id":9648,"parameterSlots":0,"returnSlots":1},"@decimals_8350":{"entryPoint":null,"id":8350,"parameterSlots":0,"returnSlots":1},"@decode_11421":{"entryPoint":10765,"id":11421,"parameterSlots":2,"returnSlots":2},"@eip712Domain_4062":{"entryPoint":3620,"id":4062,"parameterSlots":0,"returnSlots":7},"@encode_11231":{"entryPoint":12057,"id":11231,"parameterSlots":3,"returnSlots":1},"@eq_13720":{"entryPoint":null,"id":13720,"parameterSlots":2,"returnSlots":1},"@eq_14740":{"entryPoint":null,"id":14740,"parameterSlots":2,"returnSlots":1},"@evmCurator_8377":{"entryPoint":1934,"id":8377,"parameterSlots":0,"returnSlots":1},"@fromBech32_10889":{"entryPoint":10118,"id":10889,"parameterSlots":2,"returnSlots":1},"@fromBech32_13761":{"entryPoint":8186,"id":13761,"parameterSlots":2,"returnSlots":1},"@getAddressFromBytes_11070":{"entryPoint":11769,"id":11070,"parameterSlots":1,"returnSlots":1},"@getWrapTransactionLastQueryId_8393":{"entryPoint":3563,"id":8393,"parameterSlots":1,"returnSlots":1},"@getWrapTransactionStatus_8445":{"entryPoint":4726,"id":8445,"parameterSlots":1,"returnSlots":1},"@hrpExpand_11488":{"entryPoint":13912,"id":11488,"parameterSlots":1,"returnSlots":1},"@initialize_8340":{"entryPoint":6277,"id":8340,"parameterSlots":3,"returnSlots":0},"@name_871":{"entryPoint":2012,"id":871,"parameterSlots":0,"returnSlots":1},"@nonces_1546":{"entryPoint":3591,"id":1546,"parameterSlots":1,"returnSlots":1},"@nonces_1676":{"entryPoint":null,"id":1676,"parameterSlots":1,"returnSlots":1},"@permit_1529":{"entryPoint":5423,"id":1529,"parameterSlots":7,"returnSlots":0},"@polymod_11584":{"entryPoint":14162,"id":11584,"parameterSlots":1,"returnSlots":1},"@pushDataReport_8958":{"entryPoint":2777,"id":8958,"parameterSlots":3,"returnSlots":0},"@recover_3810":{"entryPoint":8680,"id":3810,"parameterSlots":4,"returnSlots":1},"@reportWitOracleQueryResult_8865":{"entryPoint":5733,"id":8865,"parameterSlots":3,"returnSlots":0},"@reportableFrom_8786":{"entryPoint":null,"id":8786,"parameterSlots":1,"returnSlots":1},"@settleWitOracleSettings_8575":{"entryPoint":5234,"id":8575,"parameterSlots":1,"returnSlots":0},"@settleWitRpcProviders_8610":{"entryPoint":4402,"id":8610,"parameterSlots":1,"returnSlots":0},"@settleWitUnwrapper_8622":{"entryPoint":7062,"id":8622,"parameterSlots":2,"returnSlots":0},"@supportsInterface_4196":{"entryPoint":null,"id":4196,"parameterSlots":1,"returnSlots":1},"@supportsInterface_91":{"entryPoint":1958,"id":91,"parameterSlots":1,"returnSlots":1},"@symbol_880":{"entryPoint":4387,"id":880,"parameterSlots":0,"returnSlots":1},"@toBech32_10700":{"entryPoint":9897,"id":10700,"parameterSlots":2,"returnSlots":1},"@toBech32_10732":{"entryPoint":10628,"id":10732,"parameterSlots":2,"returnSlots":1},"@toBech32_13787":{"entryPoint":7896,"id":13787,"parameterSlots":2,"returnSlots":1},"@toStringWithFallback_1954":{"entryPoint":9949,"id":1954,"parameterSlots":2,"returnSlots":1},"@toString_1855":{"entryPoint":10704,"id":1855,"parameterSlots":1,"returnSlots":1},"@toTypedDataHash_4172":{"entryPoint":null,"id":4172,"parameterSlots":2,"returnSlots":1},"@totalReserve_8456":{"entryPoint":2436,"id":8456,"parameterSlots":0,"returnSlots":1},"@totalSupply_898":{"entryPoint":null,"id":898,"parameterSlots":0,"returnSlots":1},"@totalUnwraps_8467":{"entryPoint":2463,"id":8467,"parameterSlots":0,"returnSlots":1},"@transferCuratorship_8652":{"entryPoint":4534,"id":8652,"parameterSlots":1,"returnSlots":0},"@transferFrom_1008":{"entryPoint":2267,"id":1008,"parameterSlots":3,"returnSlots":1},"@transfer_935":{"entryPoint":4970,"id":935,"parameterSlots":2,"returnSlots":1},"@tryRecover_3774":{"entryPoint":10244,"id":3774,"parameterSlots":4,"returnSlots":3},"@unwrap_8766":{"entryPoint":3785,"id":8766,"parameterSlots":3,"returnSlots":1},"@verifyChecksum_11815":{"entryPoint":12738,"id":11815,"parameterSlots":3,"returnSlots":1},"@witCustodian_8482":{"entryPoint":3506,"id":8482,"parameterSlots":0,"returnSlots":1},"@witOracleCrossChainProofOfInclusionTemplate_8118":{"entryPoint":null,"id":8118,"parameterSlots":0,"returnSlots":0},"@witOracleCrossChainProofOfReserveTemplate_8115":{"entryPoint":null,"id":8115,"parameterSlots":0,"returnSlots":0},"@witOracleEstimateWrappingFee_8514":{"entryPoint":6234,"id":8514,"parameterSlots":1,"returnSlots":1},"@witOracleEstimateWrappingFee_9676":{"entryPoint":8724,"id":9676,"parameterSlots":2,"returnSlots":1},"@witOracleProofOfReserveRadonBytecode_8530":{"entryPoint":4983,"id":8530,"parameterSlots":0,"returnSlots":1},"@witOracleQuerySettings_8542":{"entryPoint":3686,"id":8542,"parameterSlots":0,"returnSlots":1},"@witOracle_8112":{"entryPoint":null,"id":8112,"parameterSlots":0,"returnSlots":0},"@witUnwrapper_8499":{"entryPoint":2396,"id":8499,"parameterSlots":0,"returnSlots":1},"@wrap_8680":{"entryPoint":2497,"id":8680,"parameterSlots":1,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":14902,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_bytes_fromMemory":{"entryPoint":16573,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_enum_RadonDataTypes_fromMemory":{"entryPoint":16548,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_struct_CBOR_fromMemory":{"entryPoint":16673,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":14852,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":16003,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":14790,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":15849,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_addresst_string_calldata_ptr":{"entryPoint":16058,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":14748,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr":{"entryPoint":15488,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes4":{"entryPoint":14594,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bytes_memory_ptr_fromMemory":{"entryPoint":17722,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IWitOracleRadonRegistry_$10468_fromMemory":{"entryPoint":17695,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_enum$_QueryStatus_$13282_fromMemory":{"entryPoint":17665,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_string_calldata_ptr":{"entryPoint":16087,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_struct$_DataPushReport_$13223_calldata_ptrt_bytes_calldata_ptr":{"entryPoint":14970,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_struct$_DataResult_$13240_memory_ptr_fromMemory":{"entryPoint":16893,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_struct$_WitOracleSettings_$7939_calldata_ptr":{"entryPoint":15810,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint16":{"entryPoint":16237,"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":16199,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_bytes_calldata_ptr":{"entryPoint":15957,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint64":{"entryPoint":17779,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64_fromMemory":{"entryPoint":17306,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint64t_string_calldata_ptr":{"entryPoint":15258,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_userDefinedValueType$_RadonHash_$13102_fromMemory":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_userDefinedValueType$_TransactionHash_$13108":{"entryPoint":14879,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_userDefinedValueType$_TransactionHash_$13108t_string_memory_ptrt_string_memory_ptrt_addresst_uint64_fromMemory":{"entryPoint":17964,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_uint64":{"entryPoint":15247,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_uint8_fromMemory":{"entryPoint":16662,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_userDefinedValueType_Timestamp_fromMemory":{"entryPoint":16562,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_array_string_dyn":{"entryPoint":18302,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_bytes_calldata":{"entryPoint":16329,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_string":{"entryPoint":14667,"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":18550,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":18477,"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":18251,"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":17580,"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_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":18380,"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":15077,"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_$10613__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_WitOracle_$9767__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_WitOracle_$9767_t_contract$_IWitOracleRadonRequestModal_$10613_t_userDefinedValueType$_TransactionHash_$13108__to_t_address_t_address_t_bytes32__fromStack_library_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_enum$_WrappingStatus_$7944__to_t_uint8__fromStack_reversed":{"entryPoint":15784,"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":14710,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr_t_address_t_uint64_t_userDefinedValueType$_TransactionHash_$13108__to_t_string_memory_ptr_t_address_t_uint256_t_bytes32__fromStack_reversed":{"entryPoint":18112,"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_$13223_calldata_ptr_t_bytes_calldata_ptr__to_t_struct$_DataPushReport_$13223_memory_ptr_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":16369,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_struct$_DataResult_$13240_memory_ptr__to_t_struct$_DataResult_$13240_memory_ptr__fromStack_library_reversed":{"entryPoint":17070,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_struct$_WitOracleSettings_$7939_memory_ptr__to_t_struct$_WitOracleSettings_$7939_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":17939,"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_$13106_t_userDefinedValueType$_TransactionHash_$13108__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_$13102__to_t_bytes32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_uint64":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_uint8":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":0},"array_allocation_size_string":{"entryPoint":15450,"id":null,"parameterSlots":1,"returnSlots":1},"array_dataslot_string_storage":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"calldata_access_bytes_calldata":{"entryPoint":16264,"id":null,"parameterSlots":2,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":18416,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint16":{"entryPoint":18196,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":18458,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":18435,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":18531,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint64":{"entryPoint":17507,"id":null,"parameterSlots":2,"returnSlots":1},"clean_up_bytearray_end_slots_string_storage":{"entryPoint":18596,"id":null,"parameterSlots":3,"returnSlots":0},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":18671,"id":null,"parameterSlots":2,"returnSlots":0},"copy_memory_to_memory_with_cleanup":{"entryPoint":14633,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":16149,"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":15406,"id":null,"parameterSlots":2,"returnSlots":0},"finalize_allocation_5687":{"entryPoint":15307,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_5688":{"entryPoint":15344,"id":null,"parameterSlots":1,"returnSlots":0},"finalize_allocation_5690":{"entryPoint":15375,"id":null,"parameterSlots":1,"returnSlots":0},"increment_t_uint32":{"entryPoint":18504,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint64":{"entryPoint":17538,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x01":{"entryPoint":17645,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x11":{"entryPoint":17487,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":18176,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":15764,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":18231,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":15287,"id":null,"parameterSlots":0,"returnSlots":0},"return_data_selector":{"entryPoint":17333,"id":null,"parameterSlots":0,"returnSlots":1},"try_decode_error_message":{"entryPoint":17357,"id":null,"parameterSlots":0,"returnSlots":1},"update_storage_value_offset_0_t_struct$_WitOracleSettings_$7939_calldata_ptr_to_t_struct$_WitOracleSettings_$7939_storage":{"entryPoint":17806,"id":null,"parameterSlots":2,"returnSlots":0},"validator_revert_address":{"entryPoint":14728,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint16":{"entryPoint":16222,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint64":{"entryPoint":15227,"id":null,"parameterSlots":1,"returnSlots":0},"validator_revert_uint8":{"entryPoint":15835,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:44324:51","nodeType":"YulBlock","src":"0:44324: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_$9767__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_$10613__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":"3177:33:51","nodeType":"YulBlock","src":"3177:33:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"3186:3:51","nodeType":"YulIdentifier","src":"3186:3:51"},{"arguments":[{"name":"value","nativeSrc":"3195:5:51","nodeType":"YulIdentifier","src":"3195:5:51"},{"kind":"number","nativeSrc":"3202:4:51","nodeType":"YulLiteral","src":"3202:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"3191:3:51","nodeType":"YulIdentifier","src":"3191:3:51"},"nativeSrc":"3191:16:51","nodeType":"YulFunctionCall","src":"3191:16:51"}],"functionName":{"name":"mstore","nativeSrc":"3179:6:51","nodeType":"YulIdentifier","src":"3179:6:51"},"nativeSrc":"3179:29:51","nodeType":"YulFunctionCall","src":"3179:29:51"},"nativeSrc":"3179:29:51","nodeType":"YulExpressionStatement","src":"3179:29:51"}]},"name":"abi_encode_uint8","nativeSrc":"3135:75:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"3161:5:51","nodeType":"YulTypedName","src":"3161:5:51","type":""},{"name":"pos","nativeSrc":"3168:3:51","nodeType":"YulTypedName","src":"3168:3:51","type":""}],"src":"3135:75:51"},{"body":{"nativeSrc":"3312:87:51","nodeType":"YulBlock","src":"3312:87:51","statements":[{"nativeSrc":"3322:26:51","nodeType":"YulAssignment","src":"3322:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"3334:9:51","nodeType":"YulIdentifier","src":"3334:9:51"},{"kind":"number","nativeSrc":"3345:2:51","nodeType":"YulLiteral","src":"3345:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3330:3:51","nodeType":"YulIdentifier","src":"3330:3:51"},"nativeSrc":"3330:18:51","nodeType":"YulFunctionCall","src":"3330:18:51"},"variableNames":[{"name":"tail","nativeSrc":"3322:4:51","nodeType":"YulIdentifier","src":"3322:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3364:9:51","nodeType":"YulIdentifier","src":"3364:9:51"},{"arguments":[{"name":"value0","nativeSrc":"3379:6:51","nodeType":"YulIdentifier","src":"3379:6:51"},{"kind":"number","nativeSrc":"3387:4:51","nodeType":"YulLiteral","src":"3387:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"3375:3:51","nodeType":"YulIdentifier","src":"3375:3:51"},"nativeSrc":"3375:17:51","nodeType":"YulFunctionCall","src":"3375:17:51"}],"functionName":{"name":"mstore","nativeSrc":"3357:6:51","nodeType":"YulIdentifier","src":"3357:6:51"},"nativeSrc":"3357:36:51","nodeType":"YulFunctionCall","src":"3357:36:51"},"nativeSrc":"3357:36:51","nodeType":"YulExpressionStatement","src":"3357:36:51"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"3215:184:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3281:9:51","nodeType":"YulTypedName","src":"3281:9:51","type":""},{"name":"value0","nativeSrc":"3292:6:51","nodeType":"YulTypedName","src":"3292:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3303:4:51","nodeType":"YulTypedName","src":"3303:4:51","type":""}],"src":"3215:184:51"},{"body":{"nativeSrc":"3505:76:51","nodeType":"YulBlock","src":"3505:76:51","statements":[{"nativeSrc":"3515:26:51","nodeType":"YulAssignment","src":"3515:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"3527:9:51","nodeType":"YulIdentifier","src":"3527:9:51"},{"kind":"number","nativeSrc":"3538:2:51","nodeType":"YulLiteral","src":"3538:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3523:3:51","nodeType":"YulIdentifier","src":"3523:3:51"},"nativeSrc":"3523:18:51","nodeType":"YulFunctionCall","src":"3523:18:51"},"variableNames":[{"name":"tail","nativeSrc":"3515:4:51","nodeType":"YulIdentifier","src":"3515:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3557:9:51","nodeType":"YulIdentifier","src":"3557:9:51"},{"name":"value0","nativeSrc":"3568:6:51","nodeType":"YulIdentifier","src":"3568:6:51"}],"functionName":{"name":"mstore","nativeSrc":"3550:6:51","nodeType":"YulIdentifier","src":"3550:6:51"},"nativeSrc":"3550:25:51","nodeType":"YulFunctionCall","src":"3550:25:51"},"nativeSrc":"3550:25:51","nodeType":"YulExpressionStatement","src":"3550:25:51"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"3404:177:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3474:9:51","nodeType":"YulTypedName","src":"3474:9:51","type":""},{"name":"value0","nativeSrc":"3485:6:51","nodeType":"YulTypedName","src":"3485:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3496:4:51","nodeType":"YulTypedName","src":"3496:4:51","type":""}],"src":"3404:177:51"},{"body":{"nativeSrc":"3656:177:51","nodeType":"YulBlock","src":"3656:177:51","statements":[{"body":{"nativeSrc":"3702:16:51","nodeType":"YulBlock","src":"3702:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3711:1:51","nodeType":"YulLiteral","src":"3711:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"3714:1:51","nodeType":"YulLiteral","src":"3714:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3704:6:51","nodeType":"YulIdentifier","src":"3704:6:51"},"nativeSrc":"3704:12:51","nodeType":"YulFunctionCall","src":"3704:12:51"},"nativeSrc":"3704:12:51","nodeType":"YulExpressionStatement","src":"3704:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3677:7:51","nodeType":"YulIdentifier","src":"3677:7:51"},{"name":"headStart","nativeSrc":"3686:9:51","nodeType":"YulIdentifier","src":"3686:9:51"}],"functionName":{"name":"sub","nativeSrc":"3673:3:51","nodeType":"YulIdentifier","src":"3673:3:51"},"nativeSrc":"3673:23:51","nodeType":"YulFunctionCall","src":"3673:23:51"},{"kind":"number","nativeSrc":"3698:2:51","nodeType":"YulLiteral","src":"3698:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3669:3:51","nodeType":"YulIdentifier","src":"3669:3:51"},"nativeSrc":"3669:32:51","nodeType":"YulFunctionCall","src":"3669:32:51"},"nativeSrc":"3666:52:51","nodeType":"YulIf","src":"3666:52:51"},{"nativeSrc":"3727:36:51","nodeType":"YulVariableDeclaration","src":"3727:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"3753:9:51","nodeType":"YulIdentifier","src":"3753:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"3740:12:51","nodeType":"YulIdentifier","src":"3740:12:51"},"nativeSrc":"3740:23:51","nodeType":"YulFunctionCall","src":"3740:23:51"},"variables":[{"name":"value","nativeSrc":"3731:5:51","nodeType":"YulTypedName","src":"3731:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"3797:5:51","nodeType":"YulIdentifier","src":"3797:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"3772:24:51","nodeType":"YulIdentifier","src":"3772:24:51"},"nativeSrc":"3772:31:51","nodeType":"YulFunctionCall","src":"3772:31:51"},"nativeSrc":"3772:31:51","nodeType":"YulExpressionStatement","src":"3772:31:51"},{"nativeSrc":"3812:15:51","nodeType":"YulAssignment","src":"3812:15:51","value":{"name":"value","nativeSrc":"3822:5:51","nodeType":"YulIdentifier","src":"3822:5:51"},"variableNames":[{"name":"value0","nativeSrc":"3812:6:51","nodeType":"YulIdentifier","src":"3812:6:51"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"3586:247:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3622:9:51","nodeType":"YulTypedName","src":"3622:9:51","type":""},{"name":"dataEnd","nativeSrc":"3633:7:51","nodeType":"YulTypedName","src":"3633:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3645:6:51","nodeType":"YulTypedName","src":"3645:6:51","type":""}],"src":"3586:247:51"},{"body":{"nativeSrc":"3945:156:51","nodeType":"YulBlock","src":"3945:156:51","statements":[{"body":{"nativeSrc":"3991:16:51","nodeType":"YulBlock","src":"3991:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4000:1:51","nodeType":"YulLiteral","src":"4000:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4003:1:51","nodeType":"YulLiteral","src":"4003:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3993:6:51","nodeType":"YulIdentifier","src":"3993:6:51"},"nativeSrc":"3993:12:51","nodeType":"YulFunctionCall","src":"3993:12:51"},"nativeSrc":"3993:12:51","nodeType":"YulExpressionStatement","src":"3993:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3966:7:51","nodeType":"YulIdentifier","src":"3966:7:51"},{"name":"headStart","nativeSrc":"3975:9:51","nodeType":"YulIdentifier","src":"3975:9:51"}],"functionName":{"name":"sub","nativeSrc":"3962:3:51","nodeType":"YulIdentifier","src":"3962:3:51"},"nativeSrc":"3962:23:51","nodeType":"YulFunctionCall","src":"3962:23:51"},{"kind":"number","nativeSrc":"3987:2:51","nodeType":"YulLiteral","src":"3987:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"3958:3:51","nodeType":"YulIdentifier","src":"3958:3:51"},"nativeSrc":"3958:32:51","nodeType":"YulFunctionCall","src":"3958:32:51"},"nativeSrc":"3955:52:51","nodeType":"YulIf","src":"3955:52:51"},{"nativeSrc":"4016:14:51","nodeType":"YulVariableDeclaration","src":"4016:14:51","value":{"kind":"number","nativeSrc":"4029:1:51","nodeType":"YulLiteral","src":"4029:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"4020:5:51","nodeType":"YulTypedName","src":"4020:5:51","type":""}]},{"nativeSrc":"4039:32:51","nodeType":"YulAssignment","src":"4039:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"4061:9:51","nodeType":"YulIdentifier","src":"4061:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"4048:12:51","nodeType":"YulIdentifier","src":"4048:12:51"},"nativeSrc":"4048:23:51","nodeType":"YulFunctionCall","src":"4048:23:51"},"variableNames":[{"name":"value","nativeSrc":"4039:5:51","nodeType":"YulIdentifier","src":"4039:5:51"}]},{"nativeSrc":"4080:15:51","nodeType":"YulAssignment","src":"4080:15:51","value":{"name":"value","nativeSrc":"4090:5:51","nodeType":"YulIdentifier","src":"4090:5:51"},"variableNames":[{"name":"value0","nativeSrc":"4080:6:51","nodeType":"YulIdentifier","src":"4080:6:51"}]}]},"name":"abi_decode_tuple_t_userDefinedValueType$_TransactionHash_$13108","nativeSrc":"3838:263:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3911:9:51","nodeType":"YulTypedName","src":"3911:9:51","type":""},{"name":"dataEnd","nativeSrc":"3922:7:51","nodeType":"YulTypedName","src":"3922:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3934:6:51","nodeType":"YulTypedName","src":"3934:6:51","type":""}],"src":"3838:263:51"},{"body":{"nativeSrc":"4178:275:51","nodeType":"YulBlock","src":"4178:275:51","statements":[{"body":{"nativeSrc":"4227:16:51","nodeType":"YulBlock","src":"4227:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4236:1:51","nodeType":"YulLiteral","src":"4236:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4239:1:51","nodeType":"YulLiteral","src":"4239:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4229:6:51","nodeType":"YulIdentifier","src":"4229:6:51"},"nativeSrc":"4229:12:51","nodeType":"YulFunctionCall","src":"4229:12:51"},"nativeSrc":"4229:12:51","nodeType":"YulExpressionStatement","src":"4229:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"4206:6:51","nodeType":"YulIdentifier","src":"4206:6:51"},{"kind":"number","nativeSrc":"4214:4:51","nodeType":"YulLiteral","src":"4214:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"4202:3:51","nodeType":"YulIdentifier","src":"4202:3:51"},"nativeSrc":"4202:17:51","nodeType":"YulFunctionCall","src":"4202:17:51"},{"name":"end","nativeSrc":"4221:3:51","nodeType":"YulIdentifier","src":"4221:3:51"}],"functionName":{"name":"slt","nativeSrc":"4198:3:51","nodeType":"YulIdentifier","src":"4198:3:51"},"nativeSrc":"4198:27:51","nodeType":"YulFunctionCall","src":"4198:27:51"}],"functionName":{"name":"iszero","nativeSrc":"4191:6:51","nodeType":"YulIdentifier","src":"4191:6:51"},"nativeSrc":"4191:35:51","nodeType":"YulFunctionCall","src":"4191:35:51"},"nativeSrc":"4188:55:51","nodeType":"YulIf","src":"4188:55:51"},{"nativeSrc":"4252:30:51","nodeType":"YulAssignment","src":"4252:30:51","value":{"arguments":[{"name":"offset","nativeSrc":"4275:6:51","nodeType":"YulIdentifier","src":"4275:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"4262:12:51","nodeType":"YulIdentifier","src":"4262:12:51"},"nativeSrc":"4262:20:51","nodeType":"YulFunctionCall","src":"4262:20:51"},"variableNames":[{"name":"length","nativeSrc":"4252:6:51","nodeType":"YulIdentifier","src":"4252:6:51"}]},{"body":{"nativeSrc":"4325:16:51","nodeType":"YulBlock","src":"4325:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4334:1:51","nodeType":"YulLiteral","src":"4334:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4337:1:51","nodeType":"YulLiteral","src":"4337:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4327:6:51","nodeType":"YulIdentifier","src":"4327:6:51"},"nativeSrc":"4327:12:51","nodeType":"YulFunctionCall","src":"4327:12:51"},"nativeSrc":"4327:12:51","nodeType":"YulExpressionStatement","src":"4327:12:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"4297:6:51","nodeType":"YulIdentifier","src":"4297:6:51"},{"kind":"number","nativeSrc":"4305:18:51","nodeType":"YulLiteral","src":"4305:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4294:2:51","nodeType":"YulIdentifier","src":"4294:2:51"},"nativeSrc":"4294:30:51","nodeType":"YulFunctionCall","src":"4294:30:51"},"nativeSrc":"4291:50:51","nodeType":"YulIf","src":"4291:50:51"},{"nativeSrc":"4350:29:51","nodeType":"YulAssignment","src":"4350:29:51","value":{"arguments":[{"name":"offset","nativeSrc":"4366:6:51","nodeType":"YulIdentifier","src":"4366:6:51"},{"kind":"number","nativeSrc":"4374:4:51","nodeType":"YulLiteral","src":"4374:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4362:3:51","nodeType":"YulIdentifier","src":"4362:3:51"},"nativeSrc":"4362:17:51","nodeType":"YulFunctionCall","src":"4362:17:51"},"variableNames":[{"name":"arrayPos","nativeSrc":"4350:8:51","nodeType":"YulIdentifier","src":"4350:8:51"}]},{"body":{"nativeSrc":"4431:16:51","nodeType":"YulBlock","src":"4431:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4440:1:51","nodeType":"YulLiteral","src":"4440:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4443:1:51","nodeType":"YulLiteral","src":"4443:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4433:6:51","nodeType":"YulIdentifier","src":"4433:6:51"},"nativeSrc":"4433:12:51","nodeType":"YulFunctionCall","src":"4433:12:51"},"nativeSrc":"4433:12:51","nodeType":"YulExpressionStatement","src":"4433:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"4402:6:51","nodeType":"YulIdentifier","src":"4402:6:51"},{"name":"length","nativeSrc":"4410:6:51","nodeType":"YulIdentifier","src":"4410:6:51"}],"functionName":{"name":"add","nativeSrc":"4398:3:51","nodeType":"YulIdentifier","src":"4398:3:51"},"nativeSrc":"4398:19:51","nodeType":"YulFunctionCall","src":"4398:19:51"},{"kind":"number","nativeSrc":"4419:4:51","nodeType":"YulLiteral","src":"4419:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"4394:3:51","nodeType":"YulIdentifier","src":"4394:3:51"},"nativeSrc":"4394:30:51","nodeType":"YulFunctionCall","src":"4394:30:51"},{"name":"end","nativeSrc":"4426:3:51","nodeType":"YulIdentifier","src":"4426:3:51"}],"functionName":{"name":"gt","nativeSrc":"4391:2:51","nodeType":"YulIdentifier","src":"4391:2:51"},"nativeSrc":"4391:39:51","nodeType":"YulFunctionCall","src":"4391:39:51"},"nativeSrc":"4388:59:51","nodeType":"YulIf","src":"4388:59:51"}]},"name":"abi_decode_bytes_calldata","nativeSrc":"4106:347:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4141:6:51","nodeType":"YulTypedName","src":"4141:6:51","type":""},{"name":"end","nativeSrc":"4149:3:51","nodeType":"YulTypedName","src":"4149:3:51","type":""}],"returnVariables":[{"name":"arrayPos","nativeSrc":"4157:8:51","nodeType":"YulTypedName","src":"4157:8:51","type":""},{"name":"length","nativeSrc":"4167:6:51","nodeType":"YulTypedName","src":"4167:6:51","type":""}],"src":"4106:347:51"},{"body":{"nativeSrc":"4599:557:51","nodeType":"YulBlock","src":"4599:557:51","statements":[{"body":{"nativeSrc":"4645:16:51","nodeType":"YulBlock","src":"4645:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4654:1:51","nodeType":"YulLiteral","src":"4654:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4657:1:51","nodeType":"YulLiteral","src":"4657:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4647:6:51","nodeType":"YulIdentifier","src":"4647:6:51"},"nativeSrc":"4647:12:51","nodeType":"YulFunctionCall","src":"4647:12:51"},"nativeSrc":"4647:12:51","nodeType":"YulExpressionStatement","src":"4647:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4620:7:51","nodeType":"YulIdentifier","src":"4620:7:51"},{"name":"headStart","nativeSrc":"4629:9:51","nodeType":"YulIdentifier","src":"4629:9:51"}],"functionName":{"name":"sub","nativeSrc":"4616:3:51","nodeType":"YulIdentifier","src":"4616:3:51"},"nativeSrc":"4616:23:51","nodeType":"YulFunctionCall","src":"4616:23:51"},{"kind":"number","nativeSrc":"4641:2:51","nodeType":"YulLiteral","src":"4641:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4612:3:51","nodeType":"YulIdentifier","src":"4612:3:51"},"nativeSrc":"4612:32:51","nodeType":"YulFunctionCall","src":"4612:32:51"},"nativeSrc":"4609:52:51","nodeType":"YulIf","src":"4609:52:51"},{"nativeSrc":"4670:37:51","nodeType":"YulVariableDeclaration","src":"4670:37:51","value":{"arguments":[{"name":"headStart","nativeSrc":"4697:9:51","nodeType":"YulIdentifier","src":"4697:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"4684:12:51","nodeType":"YulIdentifier","src":"4684:12:51"},"nativeSrc":"4684:23:51","nodeType":"YulFunctionCall","src":"4684:23:51"},"variables":[{"name":"offset","nativeSrc":"4674:6:51","nodeType":"YulTypedName","src":"4674:6:51","type":""}]},{"body":{"nativeSrc":"4750:16:51","nodeType":"YulBlock","src":"4750:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4759:1:51","nodeType":"YulLiteral","src":"4759:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4762:1:51","nodeType":"YulLiteral","src":"4762:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4752:6:51","nodeType":"YulIdentifier","src":"4752:6:51"},"nativeSrc":"4752:12:51","nodeType":"YulFunctionCall","src":"4752:12:51"},"nativeSrc":"4752:12:51","nodeType":"YulExpressionStatement","src":"4752:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"4722:6:51","nodeType":"YulIdentifier","src":"4722:6:51"},{"kind":"number","nativeSrc":"4730:18:51","nodeType":"YulLiteral","src":"4730:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4719:2:51","nodeType":"YulIdentifier","src":"4719:2:51"},"nativeSrc":"4719:30:51","nodeType":"YulFunctionCall","src":"4719:30:51"},"nativeSrc":"4716:50:51","nodeType":"YulIf","src":"4716:50:51"},{"nativeSrc":"4775:32:51","nodeType":"YulVariableDeclaration","src":"4775:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"4789:9:51","nodeType":"YulIdentifier","src":"4789:9:51"},{"name":"offset","nativeSrc":"4800:6:51","nodeType":"YulIdentifier","src":"4800:6:51"}],"functionName":{"name":"add","nativeSrc":"4785:3:51","nodeType":"YulIdentifier","src":"4785:3:51"},"nativeSrc":"4785:22:51","nodeType":"YulFunctionCall","src":"4785:22:51"},"variables":[{"name":"_1","nativeSrc":"4779:2:51","nodeType":"YulTypedName","src":"4779:2:51","type":""}]},{"body":{"nativeSrc":"4846:16:51","nodeType":"YulBlock","src":"4846:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4855:1:51","nodeType":"YulLiteral","src":"4855:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4858:1:51","nodeType":"YulLiteral","src":"4858:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4848:6:51","nodeType":"YulIdentifier","src":"4848:6:51"},"nativeSrc":"4848:12:51","nodeType":"YulFunctionCall","src":"4848:12:51"},"nativeSrc":"4848:12:51","nodeType":"YulExpressionStatement","src":"4848:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4827:7:51","nodeType":"YulIdentifier","src":"4827:7:51"},{"name":"_1","nativeSrc":"4836:2:51","nodeType":"YulIdentifier","src":"4836:2:51"}],"functionName":{"name":"sub","nativeSrc":"4823:3:51","nodeType":"YulIdentifier","src":"4823:3:51"},"nativeSrc":"4823:16:51","nodeType":"YulFunctionCall","src":"4823:16:51"},{"kind":"number","nativeSrc":"4841:3:51","nodeType":"YulLiteral","src":"4841:3:51","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"4819:3:51","nodeType":"YulIdentifier","src":"4819:3:51"},"nativeSrc":"4819:26:51","nodeType":"YulFunctionCall","src":"4819:26:51"},"nativeSrc":"4816:46:51","nodeType":"YulIf","src":"4816:46:51"},{"nativeSrc":"4871:12:51","nodeType":"YulAssignment","src":"4871:12:51","value":{"name":"_1","nativeSrc":"4881:2:51","nodeType":"YulIdentifier","src":"4881:2:51"},"variableNames":[{"name":"value0","nativeSrc":"4871:6:51","nodeType":"YulIdentifier","src":"4871:6:51"}]},{"nativeSrc":"4892:48:51","nodeType":"YulVariableDeclaration","src":"4892:48:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4925:9:51","nodeType":"YulIdentifier","src":"4925:9:51"},{"kind":"number","nativeSrc":"4936:2:51","nodeType":"YulLiteral","src":"4936:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4921:3:51","nodeType":"YulIdentifier","src":"4921:3:51"},"nativeSrc":"4921:18:51","nodeType":"YulFunctionCall","src":"4921:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"4908:12:51","nodeType":"YulIdentifier","src":"4908:12:51"},"nativeSrc":"4908:32:51","nodeType":"YulFunctionCall","src":"4908:32:51"},"variables":[{"name":"offset_1","nativeSrc":"4896:8:51","nodeType":"YulTypedName","src":"4896:8:51","type":""}]},{"body":{"nativeSrc":"4985:16:51","nodeType":"YulBlock","src":"4985:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4994:1:51","nodeType":"YulLiteral","src":"4994:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"4997:1:51","nodeType":"YulLiteral","src":"4997:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4987:6:51","nodeType":"YulIdentifier","src":"4987:6:51"},"nativeSrc":"4987:12:51","nodeType":"YulFunctionCall","src":"4987:12:51"},"nativeSrc":"4987:12:51","nodeType":"YulExpressionStatement","src":"4987:12:51"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"4955:8:51","nodeType":"YulIdentifier","src":"4955:8:51"},{"kind":"number","nativeSrc":"4965:18:51","nodeType":"YulLiteral","src":"4965:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"4952:2:51","nodeType":"YulIdentifier","src":"4952:2:51"},"nativeSrc":"4952:32:51","nodeType":"YulFunctionCall","src":"4952:32:51"},"nativeSrc":"4949:52:51","nodeType":"YulIf","src":"4949:52:51"},{"nativeSrc":"5010:86:51","nodeType":"YulVariableDeclaration","src":"5010:86:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5066:9:51","nodeType":"YulIdentifier","src":"5066:9:51"},{"name":"offset_1","nativeSrc":"5077:8:51","nodeType":"YulIdentifier","src":"5077:8:51"}],"functionName":{"name":"add","nativeSrc":"5062:3:51","nodeType":"YulIdentifier","src":"5062:3:51"},"nativeSrc":"5062:24:51","nodeType":"YulFunctionCall","src":"5062:24:51"},{"name":"dataEnd","nativeSrc":"5088:7:51","nodeType":"YulIdentifier","src":"5088:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"5036:25:51","nodeType":"YulIdentifier","src":"5036:25:51"},"nativeSrc":"5036:60:51","nodeType":"YulFunctionCall","src":"5036:60:51"},"variables":[{"name":"value1_1","nativeSrc":"5014:8:51","nodeType":"YulTypedName","src":"5014:8:51","type":""},{"name":"value2_1","nativeSrc":"5024:8:51","nodeType":"YulTypedName","src":"5024:8:51","type":""}]},{"nativeSrc":"5105:18:51","nodeType":"YulAssignment","src":"5105:18:51","value":{"name":"value1_1","nativeSrc":"5115:8:51","nodeType":"YulIdentifier","src":"5115:8:51"},"variableNames":[{"name":"value1","nativeSrc":"5105:6:51","nodeType":"YulIdentifier","src":"5105:6:51"}]},{"nativeSrc":"5132:18:51","nodeType":"YulAssignment","src":"5132:18:51","value":{"name":"value2_1","nativeSrc":"5142:8:51","nodeType":"YulIdentifier","src":"5142:8:51"},"variableNames":[{"name":"value2","nativeSrc":"5132:6:51","nodeType":"YulIdentifier","src":"5132:6:51"}]}]},"name":"abi_decode_tuple_t_struct$_DataPushReport_$13223_calldata_ptrt_bytes_calldata_ptr","nativeSrc":"4458:698:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4549:9:51","nodeType":"YulTypedName","src":"4549:9:51","type":""},{"name":"dataEnd","nativeSrc":"4560:7:51","nodeType":"YulTypedName","src":"4560:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4572:6:51","nodeType":"YulTypedName","src":"4572:6:51","type":""},{"name":"value1","nativeSrc":"4580:6:51","nodeType":"YulTypedName","src":"4580:6:51","type":""},{"name":"value2","nativeSrc":"4588:6:51","nodeType":"YulTypedName","src":"4588:6:51","type":""}],"src":"4458:698:51"},{"body":{"nativeSrc":"5518:881:51","nodeType":"YulBlock","src":"5518:881:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5535:9:51","nodeType":"YulIdentifier","src":"5535:9:51"},{"arguments":[{"name":"value0","nativeSrc":"5550:6:51","nodeType":"YulIdentifier","src":"5550:6:51"},{"arguments":[{"kind":"number","nativeSrc":"5562:3:51","nodeType":"YulLiteral","src":"5562:3:51","type":"","value":"248"},{"kind":"number","nativeSrc":"5567:3:51","nodeType":"YulLiteral","src":"5567:3:51","type":"","value":"255"}],"functionName":{"name":"shl","nativeSrc":"5558:3:51","nodeType":"YulIdentifier","src":"5558:3:51"},"nativeSrc":"5558:13:51","nodeType":"YulFunctionCall","src":"5558:13:51"}],"functionName":{"name":"and","nativeSrc":"5546:3:51","nodeType":"YulIdentifier","src":"5546:3:51"},"nativeSrc":"5546:26:51","nodeType":"YulFunctionCall","src":"5546:26:51"}],"functionName":{"name":"mstore","nativeSrc":"5528:6:51","nodeType":"YulIdentifier","src":"5528:6:51"},"nativeSrc":"5528:45:51","nodeType":"YulFunctionCall","src":"5528:45:51"},"nativeSrc":"5528:45:51","nodeType":"YulExpressionStatement","src":"5528:45:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5593:9:51","nodeType":"YulIdentifier","src":"5593:9:51"},{"kind":"number","nativeSrc":"5604:2:51","nodeType":"YulLiteral","src":"5604:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5589:3:51","nodeType":"YulIdentifier","src":"5589:3:51"},"nativeSrc":"5589:18:51","nodeType":"YulFunctionCall","src":"5589:18:51"},{"kind":"number","nativeSrc":"5609:3:51","nodeType":"YulLiteral","src":"5609:3:51","type":"","value":"224"}],"functionName":{"name":"mstore","nativeSrc":"5582:6:51","nodeType":"YulIdentifier","src":"5582:6:51"},"nativeSrc":"5582:31:51","nodeType":"YulFunctionCall","src":"5582:31:51"},"nativeSrc":"5582:31:51","nodeType":"YulExpressionStatement","src":"5582:31:51"},{"nativeSrc":"5622:60:51","nodeType":"YulVariableDeclaration","src":"5622:60:51","value":{"arguments":[{"name":"value1","nativeSrc":"5654:6:51","nodeType":"YulIdentifier","src":"5654:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"5666:9:51","nodeType":"YulIdentifier","src":"5666:9:51"},{"kind":"number","nativeSrc":"5677:3:51","nodeType":"YulLiteral","src":"5677:3:51","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"5662:3:51","nodeType":"YulIdentifier","src":"5662:3:51"},"nativeSrc":"5662:19:51","nodeType":"YulFunctionCall","src":"5662:19:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"5636:17:51","nodeType":"YulIdentifier","src":"5636:17:51"},"nativeSrc":"5636:46:51","nodeType":"YulFunctionCall","src":"5636:46:51"},"variables":[{"name":"tail_1","nativeSrc":"5626:6:51","nodeType":"YulTypedName","src":"5626:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5702:9:51","nodeType":"YulIdentifier","src":"5702:9:51"},{"kind":"number","nativeSrc":"5713:2:51","nodeType":"YulLiteral","src":"5713:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5698:3:51","nodeType":"YulIdentifier","src":"5698:3:51"},"nativeSrc":"5698:18:51","nodeType":"YulFunctionCall","src":"5698:18:51"},{"arguments":[{"name":"tail_1","nativeSrc":"5722:6:51","nodeType":"YulIdentifier","src":"5722:6:51"},{"name":"headStart","nativeSrc":"5730:9:51","nodeType":"YulIdentifier","src":"5730:9:51"}],"functionName":{"name":"sub","nativeSrc":"5718:3:51","nodeType":"YulIdentifier","src":"5718:3:51"},"nativeSrc":"5718:22:51","nodeType":"YulFunctionCall","src":"5718:22:51"}],"functionName":{"name":"mstore","nativeSrc":"5691:6:51","nodeType":"YulIdentifier","src":"5691:6:51"},"nativeSrc":"5691:50:51","nodeType":"YulFunctionCall","src":"5691:50:51"},"nativeSrc":"5691:50:51","nodeType":"YulExpressionStatement","src":"5691:50:51"},{"nativeSrc":"5750:47:51","nodeType":"YulVariableDeclaration","src":"5750:47:51","value":{"arguments":[{"name":"value2","nativeSrc":"5782:6:51","nodeType":"YulIdentifier","src":"5782:6:51"},{"name":"tail_1","nativeSrc":"5790:6:51","nodeType":"YulIdentifier","src":"5790:6:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"5764:17:51","nodeType":"YulIdentifier","src":"5764:17:51"},"nativeSrc":"5764:33:51","nodeType":"YulFunctionCall","src":"5764:33:51"},"variables":[{"name":"tail_2","nativeSrc":"5754:6:51","nodeType":"YulTypedName","src":"5754:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5817:9:51","nodeType":"YulIdentifier","src":"5817:9:51"},{"kind":"number","nativeSrc":"5828:2:51","nodeType":"YulLiteral","src":"5828:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5813:3:51","nodeType":"YulIdentifier","src":"5813:3:51"},"nativeSrc":"5813:18:51","nodeType":"YulFunctionCall","src":"5813:18:51"},{"name":"value3","nativeSrc":"5833:6:51","nodeType":"YulIdentifier","src":"5833:6:51"}],"functionName":{"name":"mstore","nativeSrc":"5806:6:51","nodeType":"YulIdentifier","src":"5806:6:51"},"nativeSrc":"5806:34:51","nodeType":"YulFunctionCall","src":"5806:34:51"},"nativeSrc":"5806:34:51","nodeType":"YulExpressionStatement","src":"5806:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5860:9:51","nodeType":"YulIdentifier","src":"5860:9:51"},{"kind":"number","nativeSrc":"5871:3:51","nodeType":"YulLiteral","src":"5871:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5856:3:51","nodeType":"YulIdentifier","src":"5856:3:51"},"nativeSrc":"5856:19:51","nodeType":"YulFunctionCall","src":"5856:19:51"},{"arguments":[{"name":"value4","nativeSrc":"5881:6:51","nodeType":"YulIdentifier","src":"5881:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"5897:3:51","nodeType":"YulLiteral","src":"5897:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"5902:1:51","nodeType":"YulLiteral","src":"5902:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"5893:3:51","nodeType":"YulIdentifier","src":"5893:3:51"},"nativeSrc":"5893:11:51","nodeType":"YulFunctionCall","src":"5893:11:51"},{"kind":"number","nativeSrc":"5906:1:51","nodeType":"YulLiteral","src":"5906:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"5889:3:51","nodeType":"YulIdentifier","src":"5889:3:51"},"nativeSrc":"5889:19:51","nodeType":"YulFunctionCall","src":"5889:19:51"}],"functionName":{"name":"and","nativeSrc":"5877:3:51","nodeType":"YulIdentifier","src":"5877:3:51"},"nativeSrc":"5877:32:51","nodeType":"YulFunctionCall","src":"5877:32:51"}],"functionName":{"name":"mstore","nativeSrc":"5849:6:51","nodeType":"YulIdentifier","src":"5849:6:51"},"nativeSrc":"5849:61:51","nodeType":"YulFunctionCall","src":"5849:61:51"},"nativeSrc":"5849:61:51","nodeType":"YulExpressionStatement","src":"5849:61:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5930:9:51","nodeType":"YulIdentifier","src":"5930:9:51"},{"kind":"number","nativeSrc":"5941:3:51","nodeType":"YulLiteral","src":"5941:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"5926:3:51","nodeType":"YulIdentifier","src":"5926:3:51"},"nativeSrc":"5926:19:51","nodeType":"YulFunctionCall","src":"5926:19:51"},{"name":"value5","nativeSrc":"5947:6:51","nodeType":"YulIdentifier","src":"5947:6:51"}],"functionName":{"name":"mstore","nativeSrc":"5919:6:51","nodeType":"YulIdentifier","src":"5919:6:51"},"nativeSrc":"5919:35:51","nodeType":"YulFunctionCall","src":"5919:35:51"},"nativeSrc":"5919:35:51","nodeType":"YulExpressionStatement","src":"5919:35:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5974:9:51","nodeType":"YulIdentifier","src":"5974:9:51"},{"kind":"number","nativeSrc":"5985:3:51","nodeType":"YulLiteral","src":"5985:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"5970:3:51","nodeType":"YulIdentifier","src":"5970:3:51"},"nativeSrc":"5970:19:51","nodeType":"YulFunctionCall","src":"5970:19:51"},{"arguments":[{"name":"tail_2","nativeSrc":"5995:6:51","nodeType":"YulIdentifier","src":"5995:6:51"},{"name":"headStart","nativeSrc":"6003:9:51","nodeType":"YulIdentifier","src":"6003:9:51"}],"functionName":{"name":"sub","nativeSrc":"5991:3:51","nodeType":"YulIdentifier","src":"5991:3:51"},"nativeSrc":"5991:22:51","nodeType":"YulFunctionCall","src":"5991:22:51"}],"functionName":{"name":"mstore","nativeSrc":"5963:6:51","nodeType":"YulIdentifier","src":"5963:6:51"},"nativeSrc":"5963:51:51","nodeType":"YulFunctionCall","src":"5963:51:51"},"nativeSrc":"5963:51:51","nodeType":"YulExpressionStatement","src":"5963:51:51"},{"nativeSrc":"6023:17:51","nodeType":"YulVariableDeclaration","src":"6023:17:51","value":{"name":"tail_2","nativeSrc":"6034:6:51","nodeType":"YulIdentifier","src":"6034:6:51"},"variables":[{"name":"pos","nativeSrc":"6027:3:51","nodeType":"YulTypedName","src":"6027:3:51","type":""}]},{"nativeSrc":"6049:27:51","nodeType":"YulVariableDeclaration","src":"6049:27:51","value":{"arguments":[{"name":"value6","nativeSrc":"6069:6:51","nodeType":"YulIdentifier","src":"6069:6:51"}],"functionName":{"name":"mload","nativeSrc":"6063:5:51","nodeType":"YulIdentifier","src":"6063:5:51"},"nativeSrc":"6063:13:51","nodeType":"YulFunctionCall","src":"6063:13:51"},"variables":[{"name":"length","nativeSrc":"6053:6:51","nodeType":"YulTypedName","src":"6053:6:51","type":""}]},{"expression":{"arguments":[{"name":"tail_2","nativeSrc":"6092:6:51","nodeType":"YulIdentifier","src":"6092:6:51"},{"name":"length","nativeSrc":"6100:6:51","nodeType":"YulIdentifier","src":"6100:6:51"}],"functionName":{"name":"mstore","nativeSrc":"6085:6:51","nodeType":"YulIdentifier","src":"6085:6:51"},"nativeSrc":"6085:22:51","nodeType":"YulFunctionCall","src":"6085:22:51"},"nativeSrc":"6085:22:51","nodeType":"YulExpressionStatement","src":"6085:22:51"},{"nativeSrc":"6116:22:51","nodeType":"YulAssignment","src":"6116:22:51","value":{"arguments":[{"name":"tail_2","nativeSrc":"6127:6:51","nodeType":"YulIdentifier","src":"6127:6:51"},{"kind":"number","nativeSrc":"6135:2:51","nodeType":"YulLiteral","src":"6135:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6123:3:51","nodeType":"YulIdentifier","src":"6123:3:51"},"nativeSrc":"6123:15:51","nodeType":"YulFunctionCall","src":"6123:15:51"},"variableNames":[{"name":"pos","nativeSrc":"6116:3:51","nodeType":"YulIdentifier","src":"6116:3:51"}]},{"nativeSrc":"6147:29:51","nodeType":"YulVariableDeclaration","src":"6147:29:51","value":{"arguments":[{"name":"value6","nativeSrc":"6165:6:51","nodeType":"YulIdentifier","src":"6165:6:51"},{"kind":"number","nativeSrc":"6173:2:51","nodeType":"YulLiteral","src":"6173:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6161:3:51","nodeType":"YulIdentifier","src":"6161:3:51"},"nativeSrc":"6161:15:51","nodeType":"YulFunctionCall","src":"6161:15:51"},"variables":[{"name":"srcPtr","nativeSrc":"6151:6:51","nodeType":"YulTypedName","src":"6151:6:51","type":""}]},{"nativeSrc":"6185:10:51","nodeType":"YulVariableDeclaration","src":"6185:10:51","value":{"kind":"number","nativeSrc":"6194:1:51","nodeType":"YulLiteral","src":"6194:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"6189:1:51","nodeType":"YulTypedName","src":"6189:1:51","type":""}]},{"body":{"nativeSrc":"6253:120:51","nodeType":"YulBlock","src":"6253:120:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"6274:3:51","nodeType":"YulIdentifier","src":"6274:3:51"},{"arguments":[{"name":"srcPtr","nativeSrc":"6285:6:51","nodeType":"YulIdentifier","src":"6285:6:51"}],"functionName":{"name":"mload","nativeSrc":"6279:5:51","nodeType":"YulIdentifier","src":"6279:5:51"},"nativeSrc":"6279:13:51","nodeType":"YulFunctionCall","src":"6279:13:51"}],"functionName":{"name":"mstore","nativeSrc":"6267:6:51","nodeType":"YulIdentifier","src":"6267:6:51"},"nativeSrc":"6267:26:51","nodeType":"YulFunctionCall","src":"6267:26:51"},"nativeSrc":"6267:26:51","nodeType":"YulExpressionStatement","src":"6267:26:51"},{"nativeSrc":"6306:19:51","nodeType":"YulAssignment","src":"6306:19:51","value":{"arguments":[{"name":"pos","nativeSrc":"6317:3:51","nodeType":"YulIdentifier","src":"6317:3:51"},{"kind":"number","nativeSrc":"6322:2:51","nodeType":"YulLiteral","src":"6322:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6313:3:51","nodeType":"YulIdentifier","src":"6313:3:51"},"nativeSrc":"6313:12:51","nodeType":"YulFunctionCall","src":"6313:12:51"},"variableNames":[{"name":"pos","nativeSrc":"6306:3:51","nodeType":"YulIdentifier","src":"6306:3:51"}]},{"nativeSrc":"6338:25:51","nodeType":"YulAssignment","src":"6338:25:51","value":{"arguments":[{"name":"srcPtr","nativeSrc":"6352:6:51","nodeType":"YulIdentifier","src":"6352:6:51"},{"kind":"number","nativeSrc":"6360:2:51","nodeType":"YulLiteral","src":"6360:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6348:3:51","nodeType":"YulIdentifier","src":"6348:3:51"},"nativeSrc":"6348:15:51","nodeType":"YulFunctionCall","src":"6348:15:51"},"variableNames":[{"name":"srcPtr","nativeSrc":"6338:6:51","nodeType":"YulIdentifier","src":"6338:6:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"6215:1:51","nodeType":"YulIdentifier","src":"6215:1:51"},{"name":"length","nativeSrc":"6218:6:51","nodeType":"YulIdentifier","src":"6218:6:51"}],"functionName":{"name":"lt","nativeSrc":"6212:2:51","nodeType":"YulIdentifier","src":"6212:2:51"},"nativeSrc":"6212:13:51","nodeType":"YulFunctionCall","src":"6212:13:51"},"nativeSrc":"6204:169:51","nodeType":"YulForLoop","post":{"nativeSrc":"6226:18:51","nodeType":"YulBlock","src":"6226:18:51","statements":[{"nativeSrc":"6228:14:51","nodeType":"YulAssignment","src":"6228:14:51","value":{"arguments":[{"name":"i","nativeSrc":"6237:1:51","nodeType":"YulIdentifier","src":"6237:1:51"},{"kind":"number","nativeSrc":"6240:1:51","nodeType":"YulLiteral","src":"6240:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"6233:3:51","nodeType":"YulIdentifier","src":"6233:3:51"},"nativeSrc":"6233:9:51","nodeType":"YulFunctionCall","src":"6233:9:51"},"variableNames":[{"name":"i","nativeSrc":"6228:1:51","nodeType":"YulIdentifier","src":"6228:1:51"}]}]},"pre":{"nativeSrc":"6208:3:51","nodeType":"YulBlock","src":"6208:3:51","statements":[]},"src":"6204:169:51"},{"nativeSrc":"6382:11:51","nodeType":"YulAssignment","src":"6382:11:51","value":{"name":"pos","nativeSrc":"6390:3:51","nodeType":"YulIdentifier","src":"6390:3:51"},"variableNames":[{"name":"tail","nativeSrc":"6382:4:51","nodeType":"YulIdentifier","src":"6382: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":"5161:1238:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5439:9:51","nodeType":"YulTypedName","src":"5439:9:51","type":""},{"name":"value6","nativeSrc":"5450:6:51","nodeType":"YulTypedName","src":"5450:6:51","type":""},{"name":"value5","nativeSrc":"5458:6:51","nodeType":"YulTypedName","src":"5458:6:51","type":""},{"name":"value4","nativeSrc":"5466:6:51","nodeType":"YulTypedName","src":"5466:6:51","type":""},{"name":"value3","nativeSrc":"5474:6:51","nodeType":"YulTypedName","src":"5474:6:51","type":""},{"name":"value2","nativeSrc":"5482:6:51","nodeType":"YulTypedName","src":"5482:6:51","type":""},{"name":"value1","nativeSrc":"5490:6:51","nodeType":"YulTypedName","src":"5490:6:51","type":""},{"name":"value0","nativeSrc":"5498:6:51","nodeType":"YulTypedName","src":"5498:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5509:4:51","nodeType":"YulTypedName","src":"5509:4:51","type":""}],"src":"5161:1238:51"},{"body":{"nativeSrc":"6447:59:51","nodeType":"YulBlock","src":"6447:59:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"6464:3:51","nodeType":"YulIdentifier","src":"6464:3:51"},{"arguments":[{"name":"value","nativeSrc":"6473:5:51","nodeType":"YulIdentifier","src":"6473:5:51"},{"kind":"number","nativeSrc":"6480:18:51","nodeType":"YulLiteral","src":"6480:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"6469:3:51","nodeType":"YulIdentifier","src":"6469:3:51"},"nativeSrc":"6469:30:51","nodeType":"YulFunctionCall","src":"6469:30:51"}],"functionName":{"name":"mstore","nativeSrc":"6457:6:51","nodeType":"YulIdentifier","src":"6457:6:51"},"nativeSrc":"6457:43:51","nodeType":"YulFunctionCall","src":"6457:43:51"},"nativeSrc":"6457:43:51","nodeType":"YulExpressionStatement","src":"6457:43:51"}]},"name":"abi_encode_uint64","nativeSrc":"6404:102:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"6431:5:51","nodeType":"YulTypedName","src":"6431:5:51","type":""},{"name":"pos","nativeSrc":"6438:3:51","nodeType":"YulTypedName","src":"6438:3:51","type":""}],"src":"6404:102:51"},{"body":{"nativeSrc":"6682:260:51","nodeType":"YulBlock","src":"6682:260:51","statements":[{"nativeSrc":"6692:26:51","nodeType":"YulAssignment","src":"6692:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"6704:9:51","nodeType":"YulIdentifier","src":"6704:9:51"},{"kind":"number","nativeSrc":"6715:2:51","nodeType":"YulLiteral","src":"6715:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"6700:3:51","nodeType":"YulIdentifier","src":"6700:3:51"},"nativeSrc":"6700:18:51","nodeType":"YulFunctionCall","src":"6700:18:51"},"variableNames":[{"name":"tail","nativeSrc":"6692:4:51","nodeType":"YulIdentifier","src":"6692:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"6734:9:51","nodeType":"YulIdentifier","src":"6734:9:51"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"6755:6:51","nodeType":"YulIdentifier","src":"6755:6:51"}],"functionName":{"name":"mload","nativeSrc":"6749:5:51","nodeType":"YulIdentifier","src":"6749:5:51"},"nativeSrc":"6749:13:51","nodeType":"YulFunctionCall","src":"6749:13:51"},{"kind":"number","nativeSrc":"6764:6:51","nodeType":"YulLiteral","src":"6764:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"6745:3:51","nodeType":"YulIdentifier","src":"6745:3:51"},"nativeSrc":"6745:26:51","nodeType":"YulFunctionCall","src":"6745:26:51"}],"functionName":{"name":"mstore","nativeSrc":"6727:6:51","nodeType":"YulIdentifier","src":"6727:6:51"},"nativeSrc":"6727:45:51","nodeType":"YulFunctionCall","src":"6727:45:51"},"nativeSrc":"6727:45:51","nodeType":"YulExpressionStatement","src":"6727:45:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6792:9:51","nodeType":"YulIdentifier","src":"6792:9:51"},{"kind":"number","nativeSrc":"6803:4:51","nodeType":"YulLiteral","src":"6803:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6788:3:51","nodeType":"YulIdentifier","src":"6788:3:51"},"nativeSrc":"6788:20:51","nodeType":"YulFunctionCall","src":"6788:20:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"6824:6:51","nodeType":"YulIdentifier","src":"6824:6:51"},{"kind":"number","nativeSrc":"6832:4:51","nodeType":"YulLiteral","src":"6832:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"6820:3:51","nodeType":"YulIdentifier","src":"6820:3:51"},"nativeSrc":"6820:17:51","nodeType":"YulFunctionCall","src":"6820:17:51"}],"functionName":{"name":"mload","nativeSrc":"6814:5:51","nodeType":"YulIdentifier","src":"6814:5:51"},"nativeSrc":"6814:24:51","nodeType":"YulFunctionCall","src":"6814:24:51"},{"kind":"number","nativeSrc":"6840:6:51","nodeType":"YulLiteral","src":"6840:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"6810:3:51","nodeType":"YulIdentifier","src":"6810:3:51"},"nativeSrc":"6810:37:51","nodeType":"YulFunctionCall","src":"6810:37:51"}],"functionName":{"name":"mstore","nativeSrc":"6781:6:51","nodeType":"YulIdentifier","src":"6781:6:51"},"nativeSrc":"6781:67:51","nodeType":"YulFunctionCall","src":"6781:67:51"},"nativeSrc":"6781:67:51","nodeType":"YulExpressionStatement","src":"6781:67:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6868:9:51","nodeType":"YulIdentifier","src":"6868:9:51"},{"kind":"number","nativeSrc":"6879:4:51","nodeType":"YulLiteral","src":"6879:4:51","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"6864:3:51","nodeType":"YulIdentifier","src":"6864:3:51"},"nativeSrc":"6864:20:51","nodeType":"YulFunctionCall","src":"6864:20:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"6900:6:51","nodeType":"YulIdentifier","src":"6900:6:51"},{"kind":"number","nativeSrc":"6908:4:51","nodeType":"YulLiteral","src":"6908:4:51","type":"","value":"0x40"}],"functionName":{"name":"add","nativeSrc":"6896:3:51","nodeType":"YulIdentifier","src":"6896:3:51"},"nativeSrc":"6896:17:51","nodeType":"YulFunctionCall","src":"6896:17:51"}],"functionName":{"name":"mload","nativeSrc":"6890:5:51","nodeType":"YulIdentifier","src":"6890:5:51"},"nativeSrc":"6890:24:51","nodeType":"YulFunctionCall","src":"6890:24:51"},{"kind":"number","nativeSrc":"6916:18:51","nodeType":"YulLiteral","src":"6916:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"6886:3:51","nodeType":"YulIdentifier","src":"6886:3:51"},"nativeSrc":"6886:49:51","nodeType":"YulFunctionCall","src":"6886:49:51"}],"functionName":{"name":"mstore","nativeSrc":"6857:6:51","nodeType":"YulIdentifier","src":"6857:6:51"},"nativeSrc":"6857:79:51","nodeType":"YulFunctionCall","src":"6857:79:51"},"nativeSrc":"6857:79:51","nodeType":"YulExpressionStatement","src":"6857:79:51"}]},"name":"abi_encode_tuple_t_struct$_WitOracleSettings_$7939_memory_ptr__to_t_struct$_WitOracleSettings_$7939_memory_ptr__fromStack_reversed","nativeSrc":"6511:431:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6651:9:51","nodeType":"YulTypedName","src":"6651:9:51","type":""},{"name":"value0","nativeSrc":"6662:6:51","nodeType":"YulTypedName","src":"6662:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"6673:4:51","nodeType":"YulTypedName","src":"6673:4:51","type":""}],"src":"6511:431:51"},{"body":{"nativeSrc":"6991:85:51","nodeType":"YulBlock","src":"6991:85:51","statements":[{"body":{"nativeSrc":"7054:16:51","nodeType":"YulBlock","src":"7054:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7063:1:51","nodeType":"YulLiteral","src":"7063:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"7066:1:51","nodeType":"YulLiteral","src":"7066:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7056:6:51","nodeType":"YulIdentifier","src":"7056:6:51"},"nativeSrc":"7056:12:51","nodeType":"YulFunctionCall","src":"7056:12:51"},"nativeSrc":"7056:12:51","nodeType":"YulExpressionStatement","src":"7056:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7014:5:51","nodeType":"YulIdentifier","src":"7014:5:51"},{"arguments":[{"name":"value","nativeSrc":"7025:5:51","nodeType":"YulIdentifier","src":"7025:5:51"},{"kind":"number","nativeSrc":"7032:18:51","nodeType":"YulLiteral","src":"7032:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"7021:3:51","nodeType":"YulIdentifier","src":"7021:3:51"},"nativeSrc":"7021:30:51","nodeType":"YulFunctionCall","src":"7021:30:51"}],"functionName":{"name":"eq","nativeSrc":"7011:2:51","nodeType":"YulIdentifier","src":"7011:2:51"},"nativeSrc":"7011:41:51","nodeType":"YulFunctionCall","src":"7011:41:51"}],"functionName":{"name":"iszero","nativeSrc":"7004:6:51","nodeType":"YulIdentifier","src":"7004:6:51"},"nativeSrc":"7004:49:51","nodeType":"YulFunctionCall","src":"7004:49:51"},"nativeSrc":"7001:69:51","nodeType":"YulIf","src":"7001:69:51"}]},"name":"validator_revert_uint64","nativeSrc":"6947:129:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"6980:5:51","nodeType":"YulTypedName","src":"6980:5:51","type":""}],"src":"6947:129:51"},{"body":{"nativeSrc":"7129:84:51","nodeType":"YulBlock","src":"7129:84:51","statements":[{"nativeSrc":"7139:29:51","nodeType":"YulAssignment","src":"7139:29:51","value":{"arguments":[{"name":"offset","nativeSrc":"7161:6:51","nodeType":"YulIdentifier","src":"7161:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"7148:12:51","nodeType":"YulIdentifier","src":"7148:12:51"},"nativeSrc":"7148:20:51","nodeType":"YulFunctionCall","src":"7148:20:51"},"variableNames":[{"name":"value","nativeSrc":"7139:5:51","nodeType":"YulIdentifier","src":"7139:5:51"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7201:5:51","nodeType":"YulIdentifier","src":"7201:5:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"7177:23:51","nodeType":"YulIdentifier","src":"7177:23:51"},"nativeSrc":"7177:30:51","nodeType":"YulFunctionCall","src":"7177:30:51"},"nativeSrc":"7177:30:51","nodeType":"YulExpressionStatement","src":"7177:30:51"}]},"name":"abi_decode_uint64","nativeSrc":"7081:132:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"7108:6:51","nodeType":"YulTypedName","src":"7108:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"7119:5:51","nodeType":"YulTypedName","src":"7119:5:51","type":""}],"src":"7081:132:51"},{"body":{"nativeSrc":"7324:437:51","nodeType":"YulBlock","src":"7324:437:51","statements":[{"body":{"nativeSrc":"7370:16:51","nodeType":"YulBlock","src":"7370:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7379:1:51","nodeType":"YulLiteral","src":"7379:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"7382:1:51","nodeType":"YulLiteral","src":"7382:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7372:6:51","nodeType":"YulIdentifier","src":"7372:6:51"},"nativeSrc":"7372:12:51","nodeType":"YulFunctionCall","src":"7372:12:51"},"nativeSrc":"7372:12:51","nodeType":"YulExpressionStatement","src":"7372:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7345:7:51","nodeType":"YulIdentifier","src":"7345:7:51"},{"name":"headStart","nativeSrc":"7354:9:51","nodeType":"YulIdentifier","src":"7354:9:51"}],"functionName":{"name":"sub","nativeSrc":"7341:3:51","nodeType":"YulIdentifier","src":"7341:3:51"},"nativeSrc":"7341:23:51","nodeType":"YulFunctionCall","src":"7341:23:51"},{"kind":"number","nativeSrc":"7366:2:51","nodeType":"YulLiteral","src":"7366:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"7337:3:51","nodeType":"YulIdentifier","src":"7337:3:51"},"nativeSrc":"7337:32:51","nodeType":"YulFunctionCall","src":"7337:32:51"},"nativeSrc":"7334:52:51","nodeType":"YulIf","src":"7334:52:51"},{"nativeSrc":"7395:36:51","nodeType":"YulVariableDeclaration","src":"7395:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"7421:9:51","nodeType":"YulIdentifier","src":"7421:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"7408:12:51","nodeType":"YulIdentifier","src":"7408:12:51"},"nativeSrc":"7408:23:51","nodeType":"YulFunctionCall","src":"7408:23:51"},"variables":[{"name":"value","nativeSrc":"7399:5:51","nodeType":"YulTypedName","src":"7399:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"7464:5:51","nodeType":"YulIdentifier","src":"7464:5:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"7440:23:51","nodeType":"YulIdentifier","src":"7440:23:51"},"nativeSrc":"7440:30:51","nodeType":"YulFunctionCall","src":"7440:30:51"},"nativeSrc":"7440:30:51","nodeType":"YulExpressionStatement","src":"7440:30:51"},{"nativeSrc":"7479:15:51","nodeType":"YulAssignment","src":"7479:15:51","value":{"name":"value","nativeSrc":"7489:5:51","nodeType":"YulIdentifier","src":"7489:5:51"},"variableNames":[{"name":"value0","nativeSrc":"7479:6:51","nodeType":"YulIdentifier","src":"7479:6:51"}]},{"nativeSrc":"7503:46:51","nodeType":"YulVariableDeclaration","src":"7503:46:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7534:9:51","nodeType":"YulIdentifier","src":"7534:9:51"},{"kind":"number","nativeSrc":"7545:2:51","nodeType":"YulLiteral","src":"7545:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7530:3:51","nodeType":"YulIdentifier","src":"7530:3:51"},"nativeSrc":"7530:18:51","nodeType":"YulFunctionCall","src":"7530:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"7517:12:51","nodeType":"YulIdentifier","src":"7517:12:51"},"nativeSrc":"7517:32:51","nodeType":"YulFunctionCall","src":"7517:32:51"},"variables":[{"name":"offset","nativeSrc":"7507:6:51","nodeType":"YulTypedName","src":"7507:6:51","type":""}]},{"body":{"nativeSrc":"7592:16:51","nodeType":"YulBlock","src":"7592:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7601:1:51","nodeType":"YulLiteral","src":"7601:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"7604:1:51","nodeType":"YulLiteral","src":"7604:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7594:6:51","nodeType":"YulIdentifier","src":"7594:6:51"},"nativeSrc":"7594:12:51","nodeType":"YulFunctionCall","src":"7594:12:51"},"nativeSrc":"7594:12:51","nodeType":"YulExpressionStatement","src":"7594:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7564:6:51","nodeType":"YulIdentifier","src":"7564:6:51"},{"kind":"number","nativeSrc":"7572:18:51","nodeType":"YulLiteral","src":"7572:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7561:2:51","nodeType":"YulIdentifier","src":"7561:2:51"},"nativeSrc":"7561:30:51","nodeType":"YulFunctionCall","src":"7561:30:51"},"nativeSrc":"7558:50:51","nodeType":"YulIf","src":"7558:50:51"},{"nativeSrc":"7617:84:51","nodeType":"YulVariableDeclaration","src":"7617:84:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7673:9:51","nodeType":"YulIdentifier","src":"7673:9:51"},{"name":"offset","nativeSrc":"7684:6:51","nodeType":"YulIdentifier","src":"7684:6:51"}],"functionName":{"name":"add","nativeSrc":"7669:3:51","nodeType":"YulIdentifier","src":"7669:3:51"},"nativeSrc":"7669:22:51","nodeType":"YulFunctionCall","src":"7669:22:51"},{"name":"dataEnd","nativeSrc":"7693:7:51","nodeType":"YulIdentifier","src":"7693:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"7643:25:51","nodeType":"YulIdentifier","src":"7643:25:51"},"nativeSrc":"7643:58:51","nodeType":"YulFunctionCall","src":"7643:58:51"},"variables":[{"name":"value1_1","nativeSrc":"7621:8:51","nodeType":"YulTypedName","src":"7621:8:51","type":""},{"name":"value2_1","nativeSrc":"7631:8:51","nodeType":"YulTypedName","src":"7631:8:51","type":""}]},{"nativeSrc":"7710:18:51","nodeType":"YulAssignment","src":"7710:18:51","value":{"name":"value1_1","nativeSrc":"7720:8:51","nodeType":"YulIdentifier","src":"7720:8:51"},"variableNames":[{"name":"value1","nativeSrc":"7710:6:51","nodeType":"YulIdentifier","src":"7710:6:51"}]},{"nativeSrc":"7737:18:51","nodeType":"YulAssignment","src":"7737:18:51","value":{"name":"value2_1","nativeSrc":"7747:8:51","nodeType":"YulIdentifier","src":"7747:8:51"},"variableNames":[{"name":"value2","nativeSrc":"7737:6:51","nodeType":"YulIdentifier","src":"7737:6:51"}]}]},"name":"abi_decode_tuple_t_uint64t_string_calldata_ptr","nativeSrc":"7218:543:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7274:9:51","nodeType":"YulTypedName","src":"7274:9:51","type":""},{"name":"dataEnd","nativeSrc":"7285:7:51","nodeType":"YulTypedName","src":"7285:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7297:6:51","nodeType":"YulTypedName","src":"7297:6:51","type":""},{"name":"value1","nativeSrc":"7305:6:51","nodeType":"YulTypedName","src":"7305:6:51","type":""},{"name":"value2","nativeSrc":"7313:6:51","nodeType":"YulTypedName","src":"7313:6:51","type":""}],"src":"7218:543:51"},{"body":{"nativeSrc":"7798:95:51","nodeType":"YulBlock","src":"7798:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7815:1:51","nodeType":"YulLiteral","src":"7815:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"7822:3:51","nodeType":"YulLiteral","src":"7822:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"7827:10:51","nodeType":"YulLiteral","src":"7827:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"7818:3:51","nodeType":"YulIdentifier","src":"7818:3:51"},"nativeSrc":"7818:20:51","nodeType":"YulFunctionCall","src":"7818:20:51"}],"functionName":{"name":"mstore","nativeSrc":"7808:6:51","nodeType":"YulIdentifier","src":"7808:6:51"},"nativeSrc":"7808:31:51","nodeType":"YulFunctionCall","src":"7808:31:51"},"nativeSrc":"7808:31:51","nodeType":"YulExpressionStatement","src":"7808:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7855:1:51","nodeType":"YulLiteral","src":"7855:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"7858:4:51","nodeType":"YulLiteral","src":"7858:4:51","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"7848:6:51","nodeType":"YulIdentifier","src":"7848:6:51"},"nativeSrc":"7848:15:51","nodeType":"YulFunctionCall","src":"7848:15:51"},"nativeSrc":"7848:15:51","nodeType":"YulExpressionStatement","src":"7848:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7879:1:51","nodeType":"YulLiteral","src":"7879:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"7882:4:51","nodeType":"YulLiteral","src":"7882:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"7872:6:51","nodeType":"YulIdentifier","src":"7872:6:51"},"nativeSrc":"7872:15:51","nodeType":"YulFunctionCall","src":"7872:15:51"},"nativeSrc":"7872:15:51","nodeType":"YulExpressionStatement","src":"7872:15:51"}]},"name":"panic_error_0x41","nativeSrc":"7766:127:51","nodeType":"YulFunctionDefinition","src":"7766:127:51"},{"body":{"nativeSrc":"7944:179:51","nodeType":"YulBlock","src":"7944:179:51","statements":[{"nativeSrc":"7954:35:51","nodeType":"YulVariableDeclaration","src":"7954:35:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"7976:6:51","nodeType":"YulIdentifier","src":"7976:6:51"},{"kind":"number","nativeSrc":"7984:4:51","nodeType":"YulLiteral","src":"7984:4:51","type":"","value":"0xc0"}],"functionName":{"name":"add","nativeSrc":"7972:3:51","nodeType":"YulIdentifier","src":"7972:3:51"},"nativeSrc":"7972:17:51","nodeType":"YulFunctionCall","src":"7972:17:51"},"variables":[{"name":"newFreePtr","nativeSrc":"7958:10:51","nodeType":"YulTypedName","src":"7958:10:51","type":""}]},{"body":{"nativeSrc":"8064:22:51","nodeType":"YulBlock","src":"8064:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"8066:16:51","nodeType":"YulIdentifier","src":"8066:16:51"},"nativeSrc":"8066:18:51","nodeType":"YulFunctionCall","src":"8066:18:51"},"nativeSrc":"8066:18:51","nodeType":"YulExpressionStatement","src":"8066:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"8007:10:51","nodeType":"YulIdentifier","src":"8007:10:51"},{"kind":"number","nativeSrc":"8019:18:51","nodeType":"YulLiteral","src":"8019:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8004:2:51","nodeType":"YulIdentifier","src":"8004:2:51"},"nativeSrc":"8004:34:51","nodeType":"YulFunctionCall","src":"8004:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"8043:10:51","nodeType":"YulIdentifier","src":"8043:10:51"},{"name":"memPtr","nativeSrc":"8055:6:51","nodeType":"YulIdentifier","src":"8055:6:51"}],"functionName":{"name":"lt","nativeSrc":"8040:2:51","nodeType":"YulIdentifier","src":"8040:2:51"},"nativeSrc":"8040:22:51","nodeType":"YulFunctionCall","src":"8040:22:51"}],"functionName":{"name":"or","nativeSrc":"8001:2:51","nodeType":"YulIdentifier","src":"8001:2:51"},"nativeSrc":"8001:62:51","nodeType":"YulFunctionCall","src":"8001:62:51"},"nativeSrc":"7998:88:51","nodeType":"YulIf","src":"7998:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8102:2:51","nodeType":"YulLiteral","src":"8102:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"8106:10:51","nodeType":"YulIdentifier","src":"8106:10:51"}],"functionName":{"name":"mstore","nativeSrc":"8095:6:51","nodeType":"YulIdentifier","src":"8095:6:51"},"nativeSrc":"8095:22:51","nodeType":"YulFunctionCall","src":"8095:22:51"},"nativeSrc":"8095:22:51","nodeType":"YulExpressionStatement","src":"8095:22:51"}]},"name":"finalize_allocation_5687","nativeSrc":"7898:225:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nativeSrc":"7932:6:51","nodeType":"YulTypedName","src":"7932:6:51","type":""}],"src":"7898:225:51"},{"body":{"nativeSrc":"8174:177:51","nodeType":"YulBlock","src":"8174:177:51","statements":[{"nativeSrc":"8184:33:51","nodeType":"YulVariableDeclaration","src":"8184:33:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"8206:6:51","nodeType":"YulIdentifier","src":"8206:6:51"},{"kind":"number","nativeSrc":"8214:2:51","nodeType":"YulLiteral","src":"8214:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8202:3:51","nodeType":"YulIdentifier","src":"8202:3:51"},"nativeSrc":"8202:15:51","nodeType":"YulFunctionCall","src":"8202:15:51"},"variables":[{"name":"newFreePtr","nativeSrc":"8188:10:51","nodeType":"YulTypedName","src":"8188:10:51","type":""}]},{"body":{"nativeSrc":"8292:22:51","nodeType":"YulBlock","src":"8292:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"8294:16:51","nodeType":"YulIdentifier","src":"8294:16:51"},"nativeSrc":"8294:18:51","nodeType":"YulFunctionCall","src":"8294:18:51"},"nativeSrc":"8294:18:51","nodeType":"YulExpressionStatement","src":"8294:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"8235:10:51","nodeType":"YulIdentifier","src":"8235:10:51"},{"kind":"number","nativeSrc":"8247:18:51","nodeType":"YulLiteral","src":"8247:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8232:2:51","nodeType":"YulIdentifier","src":"8232:2:51"},"nativeSrc":"8232:34:51","nodeType":"YulFunctionCall","src":"8232:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"8271:10:51","nodeType":"YulIdentifier","src":"8271:10:51"},{"name":"memPtr","nativeSrc":"8283:6:51","nodeType":"YulIdentifier","src":"8283:6:51"}],"functionName":{"name":"lt","nativeSrc":"8268:2:51","nodeType":"YulIdentifier","src":"8268:2:51"},"nativeSrc":"8268:22:51","nodeType":"YulFunctionCall","src":"8268:22:51"}],"functionName":{"name":"or","nativeSrc":"8229:2:51","nodeType":"YulIdentifier","src":"8229:2:51"},"nativeSrc":"8229:62:51","nodeType":"YulFunctionCall","src":"8229:62:51"},"nativeSrc":"8226:88:51","nodeType":"YulIf","src":"8226:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8330:2:51","nodeType":"YulLiteral","src":"8330:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"8334:10:51","nodeType":"YulIdentifier","src":"8334:10:51"}],"functionName":{"name":"mstore","nativeSrc":"8323:6:51","nodeType":"YulIdentifier","src":"8323:6:51"},"nativeSrc":"8323:22:51","nodeType":"YulFunctionCall","src":"8323:22:51"},"nativeSrc":"8323:22:51","nodeType":"YulExpressionStatement","src":"8323:22:51"}]},"name":"finalize_allocation_5688","nativeSrc":"8128:223:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nativeSrc":"8162:6:51","nodeType":"YulTypedName","src":"8162:6:51","type":""}],"src":"8128:223:51"},{"body":{"nativeSrc":"8402:179:51","nodeType":"YulBlock","src":"8402:179:51","statements":[{"nativeSrc":"8412:35:51","nodeType":"YulVariableDeclaration","src":"8412:35:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"8434:6:51","nodeType":"YulIdentifier","src":"8434:6:51"},{"kind":"number","nativeSrc":"8442:4:51","nodeType":"YulLiteral","src":"8442:4:51","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"8430:3:51","nodeType":"YulIdentifier","src":"8430:3:51"},"nativeSrc":"8430:17:51","nodeType":"YulFunctionCall","src":"8430:17:51"},"variables":[{"name":"newFreePtr","nativeSrc":"8416:10:51","nodeType":"YulTypedName","src":"8416:10:51","type":""}]},{"body":{"nativeSrc":"8522:22:51","nodeType":"YulBlock","src":"8522:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"8524:16:51","nodeType":"YulIdentifier","src":"8524:16:51"},"nativeSrc":"8524:18:51","nodeType":"YulFunctionCall","src":"8524:18:51"},"nativeSrc":"8524:18:51","nodeType":"YulExpressionStatement","src":"8524:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"8465:10:51","nodeType":"YulIdentifier","src":"8465:10:51"},{"kind":"number","nativeSrc":"8477:18:51","nodeType":"YulLiteral","src":"8477:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8462:2:51","nodeType":"YulIdentifier","src":"8462:2:51"},"nativeSrc":"8462:34:51","nodeType":"YulFunctionCall","src":"8462:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"8501:10:51","nodeType":"YulIdentifier","src":"8501:10:51"},{"name":"memPtr","nativeSrc":"8513:6:51","nodeType":"YulIdentifier","src":"8513:6:51"}],"functionName":{"name":"lt","nativeSrc":"8498:2:51","nodeType":"YulIdentifier","src":"8498:2:51"},"nativeSrc":"8498:22:51","nodeType":"YulFunctionCall","src":"8498:22:51"}],"functionName":{"name":"or","nativeSrc":"8459:2:51","nodeType":"YulIdentifier","src":"8459:2:51"},"nativeSrc":"8459:62:51","nodeType":"YulFunctionCall","src":"8459:62:51"},"nativeSrc":"8456:88:51","nodeType":"YulIf","src":"8456:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8560:2:51","nodeType":"YulLiteral","src":"8560:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"8564:10:51","nodeType":"YulIdentifier","src":"8564:10:51"}],"functionName":{"name":"mstore","nativeSrc":"8553:6:51","nodeType":"YulIdentifier","src":"8553:6:51"},"nativeSrc":"8553:22:51","nodeType":"YulFunctionCall","src":"8553:22:51"},"nativeSrc":"8553:22:51","nodeType":"YulExpressionStatement","src":"8553:22:51"}]},"name":"finalize_allocation_5690","nativeSrc":"8356:225:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nativeSrc":"8390:6:51","nodeType":"YulTypedName","src":"8390:6:51","type":""}],"src":"8356:225:51"},{"body":{"nativeSrc":"8633:202:51","nodeType":"YulBlock","src":"8633:202:51","statements":[{"nativeSrc":"8643:58:51","nodeType":"YulVariableDeclaration","src":"8643:58:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"8665:6:51","nodeType":"YulIdentifier","src":"8665:6:51"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"8681:4:51","nodeType":"YulIdentifier","src":"8681:4:51"},{"kind":"number","nativeSrc":"8687:2:51","nodeType":"YulLiteral","src":"8687:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"8677:3:51","nodeType":"YulIdentifier","src":"8677:3:51"},"nativeSrc":"8677:13:51","nodeType":"YulFunctionCall","src":"8677:13:51"},{"arguments":[{"kind":"number","nativeSrc":"8696:2:51","nodeType":"YulLiteral","src":"8696:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"8692:3:51","nodeType":"YulIdentifier","src":"8692:3:51"},"nativeSrc":"8692:7:51","nodeType":"YulFunctionCall","src":"8692:7:51"}],"functionName":{"name":"and","nativeSrc":"8673:3:51","nodeType":"YulIdentifier","src":"8673:3:51"},"nativeSrc":"8673:27:51","nodeType":"YulFunctionCall","src":"8673:27:51"}],"functionName":{"name":"add","nativeSrc":"8661:3:51","nodeType":"YulIdentifier","src":"8661:3:51"},"nativeSrc":"8661:40:51","nodeType":"YulFunctionCall","src":"8661:40:51"},"variables":[{"name":"newFreePtr","nativeSrc":"8647:10:51","nodeType":"YulTypedName","src":"8647:10:51","type":""}]},{"body":{"nativeSrc":"8776:22:51","nodeType":"YulBlock","src":"8776:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"8778:16:51","nodeType":"YulIdentifier","src":"8778:16:51"},"nativeSrc":"8778:18:51","nodeType":"YulFunctionCall","src":"8778:18:51"},"nativeSrc":"8778:18:51","nodeType":"YulExpressionStatement","src":"8778:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"8719:10:51","nodeType":"YulIdentifier","src":"8719:10:51"},{"kind":"number","nativeSrc":"8731:18:51","nodeType":"YulLiteral","src":"8731:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8716:2:51","nodeType":"YulIdentifier","src":"8716:2:51"},"nativeSrc":"8716:34:51","nodeType":"YulFunctionCall","src":"8716:34:51"},{"arguments":[{"name":"newFreePtr","nativeSrc":"8755:10:51","nodeType":"YulIdentifier","src":"8755:10:51"},{"name":"memPtr","nativeSrc":"8767:6:51","nodeType":"YulIdentifier","src":"8767:6:51"}],"functionName":{"name":"lt","nativeSrc":"8752:2:51","nodeType":"YulIdentifier","src":"8752:2:51"},"nativeSrc":"8752:22:51","nodeType":"YulFunctionCall","src":"8752:22:51"}],"functionName":{"name":"or","nativeSrc":"8713:2:51","nodeType":"YulIdentifier","src":"8713:2:51"},"nativeSrc":"8713:62:51","nodeType":"YulFunctionCall","src":"8713:62:51"},"nativeSrc":"8710:88:51","nodeType":"YulIf","src":"8710:88:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"8814:2:51","nodeType":"YulLiteral","src":"8814:2:51","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"8818:10:51","nodeType":"YulIdentifier","src":"8818:10:51"}],"functionName":{"name":"mstore","nativeSrc":"8807:6:51","nodeType":"YulIdentifier","src":"8807:6:51"},"nativeSrc":"8807:22:51","nodeType":"YulFunctionCall","src":"8807:22:51"},"nativeSrc":"8807:22:51","nodeType":"YulExpressionStatement","src":"8807:22:51"}]},"name":"finalize_allocation","nativeSrc":"8586:249:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"memPtr","nativeSrc":"8615:6:51","nodeType":"YulTypedName","src":"8615:6:51","type":""},{"name":"size","nativeSrc":"8623:4:51","nodeType":"YulTypedName","src":"8623:4:51","type":""}],"src":"8586:249:51"},{"body":{"nativeSrc":"8898:129:51","nodeType":"YulBlock","src":"8898:129:51","statements":[{"body":{"nativeSrc":"8942:22:51","nodeType":"YulBlock","src":"8942:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"8944:16:51","nodeType":"YulIdentifier","src":"8944:16:51"},"nativeSrc":"8944:18:51","nodeType":"YulFunctionCall","src":"8944:18:51"},"nativeSrc":"8944:18:51","nodeType":"YulExpressionStatement","src":"8944:18:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"8914:6:51","nodeType":"YulIdentifier","src":"8914:6:51"},{"kind":"number","nativeSrc":"8922:18:51","nodeType":"YulLiteral","src":"8922:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"8911:2:51","nodeType":"YulIdentifier","src":"8911:2:51"},"nativeSrc":"8911:30:51","nodeType":"YulFunctionCall","src":"8911:30:51"},"nativeSrc":"8908:56:51","nodeType":"YulIf","src":"8908:56:51"},{"nativeSrc":"8973:48:51","nodeType":"YulAssignment","src":"8973:48:51","value":{"arguments":[{"arguments":[{"arguments":[{"name":"length","nativeSrc":"8993:6:51","nodeType":"YulIdentifier","src":"8993:6:51"},{"kind":"number","nativeSrc":"9001:2:51","nodeType":"YulLiteral","src":"9001:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"8989:3:51","nodeType":"YulIdentifier","src":"8989:3:51"},"nativeSrc":"8989:15:51","nodeType":"YulFunctionCall","src":"8989:15:51"},{"arguments":[{"kind":"number","nativeSrc":"9010:2:51","nodeType":"YulLiteral","src":"9010:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"9006:3:51","nodeType":"YulIdentifier","src":"9006:3:51"},"nativeSrc":"9006:7:51","nodeType":"YulFunctionCall","src":"9006:7:51"}],"functionName":{"name":"and","nativeSrc":"8985:3:51","nodeType":"YulIdentifier","src":"8985:3:51"},"nativeSrc":"8985:29:51","nodeType":"YulFunctionCall","src":"8985:29:51"},{"kind":"number","nativeSrc":"9016:4:51","nodeType":"YulLiteral","src":"9016:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"8981:3:51","nodeType":"YulIdentifier","src":"8981:3:51"},"nativeSrc":"8981:40:51","nodeType":"YulFunctionCall","src":"8981:40:51"},"variableNames":[{"name":"size","nativeSrc":"8973:4:51","nodeType":"YulIdentifier","src":"8973:4:51"}]}]},"name":"array_allocation_size_string","nativeSrc":"8840:187:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"length","nativeSrc":"8878:6:51","nodeType":"YulTypedName","src":"8878:6:51","type":""}],"returnVariables":[{"name":"size","nativeSrc":"8889:4:51","nodeType":"YulTypedName","src":"8889:4:51","type":""}],"src":"8840:187:51"},{"body":{"nativeSrc":"9137:1541:51","nodeType":"YulBlock","src":"9137:1541:51","statements":[{"body":{"nativeSrc":"9183:16:51","nodeType":"YulBlock","src":"9183:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9192:1:51","nodeType":"YulLiteral","src":"9192:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"9195:1:51","nodeType":"YulLiteral","src":"9195:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9185:6:51","nodeType":"YulIdentifier","src":"9185:6:51"},"nativeSrc":"9185:12:51","nodeType":"YulFunctionCall","src":"9185:12:51"},"nativeSrc":"9185:12:51","nodeType":"YulExpressionStatement","src":"9185:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9158:7:51","nodeType":"YulIdentifier","src":"9158:7:51"},{"name":"headStart","nativeSrc":"9167:9:51","nodeType":"YulIdentifier","src":"9167:9:51"}],"functionName":{"name":"sub","nativeSrc":"9154:3:51","nodeType":"YulIdentifier","src":"9154:3:51"},"nativeSrc":"9154:23:51","nodeType":"YulFunctionCall","src":"9154:23:51"},{"kind":"number","nativeSrc":"9179:2:51","nodeType":"YulLiteral","src":"9179:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"9150:3:51","nodeType":"YulIdentifier","src":"9150:3:51"},"nativeSrc":"9150:32:51","nodeType":"YulFunctionCall","src":"9150:32:51"},"nativeSrc":"9147:52:51","nodeType":"YulIf","src":"9147:52:51"},{"nativeSrc":"9208:37:51","nodeType":"YulVariableDeclaration","src":"9208:37:51","value":{"arguments":[{"name":"headStart","nativeSrc":"9235:9:51","nodeType":"YulIdentifier","src":"9235:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"9222:12:51","nodeType":"YulIdentifier","src":"9222:12:51"},"nativeSrc":"9222:23:51","nodeType":"YulFunctionCall","src":"9222:23:51"},"variables":[{"name":"offset","nativeSrc":"9212:6:51","nodeType":"YulTypedName","src":"9212:6:51","type":""}]},{"body":{"nativeSrc":"9288:16:51","nodeType":"YulBlock","src":"9288:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9297:1:51","nodeType":"YulLiteral","src":"9297:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"9300:1:51","nodeType":"YulLiteral","src":"9300:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9290:6:51","nodeType":"YulIdentifier","src":"9290:6:51"},"nativeSrc":"9290:12:51","nodeType":"YulFunctionCall","src":"9290:12:51"},"nativeSrc":"9290:12:51","nodeType":"YulExpressionStatement","src":"9290:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"9260:6:51","nodeType":"YulIdentifier","src":"9260:6:51"},{"kind":"number","nativeSrc":"9268:18:51","nodeType":"YulLiteral","src":"9268:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9257:2:51","nodeType":"YulIdentifier","src":"9257:2:51"},"nativeSrc":"9257:30:51","nodeType":"YulFunctionCall","src":"9257:30:51"},"nativeSrc":"9254:50:51","nodeType":"YulIf","src":"9254:50:51"},{"nativeSrc":"9313:32:51","nodeType":"YulVariableDeclaration","src":"9313:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"9327:9:51","nodeType":"YulIdentifier","src":"9327:9:51"},{"name":"offset","nativeSrc":"9338:6:51","nodeType":"YulIdentifier","src":"9338:6:51"}],"functionName":{"name":"add","nativeSrc":"9323:3:51","nodeType":"YulIdentifier","src":"9323:3:51"},"nativeSrc":"9323:22:51","nodeType":"YulFunctionCall","src":"9323:22:51"},"variables":[{"name":"_1","nativeSrc":"9317:2:51","nodeType":"YulTypedName","src":"9317:2:51","type":""}]},{"body":{"nativeSrc":"9393:16:51","nodeType":"YulBlock","src":"9393:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9402:1:51","nodeType":"YulLiteral","src":"9402:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"9405:1:51","nodeType":"YulLiteral","src":"9405:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9395:6:51","nodeType":"YulIdentifier","src":"9395:6:51"},"nativeSrc":"9395:12:51","nodeType":"YulFunctionCall","src":"9395:12:51"},"nativeSrc":"9395:12:51","nodeType":"YulExpressionStatement","src":"9395:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"9372:2:51","nodeType":"YulIdentifier","src":"9372:2:51"},{"kind":"number","nativeSrc":"9376:4:51","nodeType":"YulLiteral","src":"9376:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"9368:3:51","nodeType":"YulIdentifier","src":"9368:3:51"},"nativeSrc":"9368:13:51","nodeType":"YulFunctionCall","src":"9368:13:51"},{"name":"dataEnd","nativeSrc":"9383:7:51","nodeType":"YulIdentifier","src":"9383:7:51"}],"functionName":{"name":"slt","nativeSrc":"9364:3:51","nodeType":"YulIdentifier","src":"9364:3:51"},"nativeSrc":"9364:27:51","nodeType":"YulFunctionCall","src":"9364:27:51"}],"functionName":{"name":"iszero","nativeSrc":"9357:6:51","nodeType":"YulIdentifier","src":"9357:6:51"},"nativeSrc":"9357:35:51","nodeType":"YulFunctionCall","src":"9357:35:51"},"nativeSrc":"9354:55:51","nodeType":"YulIf","src":"9354:55:51"},{"nativeSrc":"9418:30:51","nodeType":"YulVariableDeclaration","src":"9418:30:51","value":{"arguments":[{"name":"_1","nativeSrc":"9445:2:51","nodeType":"YulIdentifier","src":"9445:2:51"}],"functionName":{"name":"calldataload","nativeSrc":"9432:12:51","nodeType":"YulIdentifier","src":"9432:12:51"},"nativeSrc":"9432:16:51","nodeType":"YulFunctionCall","src":"9432:16:51"},"variables":[{"name":"length","nativeSrc":"9422:6:51","nodeType":"YulTypedName","src":"9422:6:51","type":""}]},{"body":{"nativeSrc":"9491:22:51","nodeType":"YulBlock","src":"9491:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"9493:16:51","nodeType":"YulIdentifier","src":"9493:16:51"},"nativeSrc":"9493:18:51","nodeType":"YulFunctionCall","src":"9493:18:51"},"nativeSrc":"9493:18:51","nodeType":"YulExpressionStatement","src":"9493:18:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"9463:6:51","nodeType":"YulIdentifier","src":"9463:6:51"},{"kind":"number","nativeSrc":"9471:18:51","nodeType":"YulLiteral","src":"9471:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9460:2:51","nodeType":"YulIdentifier","src":"9460:2:51"},"nativeSrc":"9460:30:51","nodeType":"YulFunctionCall","src":"9460:30:51"},"nativeSrc":"9457:56:51","nodeType":"YulIf","src":"9457:56:51"},{"nativeSrc":"9522:24:51","nodeType":"YulVariableDeclaration","src":"9522:24:51","value":{"arguments":[{"kind":"number","nativeSrc":"9536:1:51","nodeType":"YulLiteral","src":"9536:1:51","type":"","value":"5"},{"name":"length","nativeSrc":"9539:6:51","nodeType":"YulIdentifier","src":"9539:6:51"}],"functionName":{"name":"shl","nativeSrc":"9532:3:51","nodeType":"YulIdentifier","src":"9532:3:51"},"nativeSrc":"9532:14:51","nodeType":"YulFunctionCall","src":"9532:14:51"},"variables":[{"name":"_2","nativeSrc":"9526:2:51","nodeType":"YulTypedName","src":"9526:2:51","type":""}]},{"nativeSrc":"9555:23:51","nodeType":"YulVariableDeclaration","src":"9555:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"9575:2:51","nodeType":"YulLiteral","src":"9575:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"9569:5:51","nodeType":"YulIdentifier","src":"9569:5:51"},"nativeSrc":"9569:9:51","nodeType":"YulFunctionCall","src":"9569:9:51"},"variables":[{"name":"memPtr","nativeSrc":"9559:6:51","nodeType":"YulTypedName","src":"9559:6:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"9607:6:51","nodeType":"YulIdentifier","src":"9607:6:51"},{"arguments":[{"name":"_2","nativeSrc":"9619:2:51","nodeType":"YulIdentifier","src":"9619:2:51"},{"kind":"number","nativeSrc":"9623:2:51","nodeType":"YulLiteral","src":"9623:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9615:3:51","nodeType":"YulIdentifier","src":"9615:3:51"},"nativeSrc":"9615:11:51","nodeType":"YulFunctionCall","src":"9615:11:51"}],"functionName":{"name":"finalize_allocation","nativeSrc":"9587:19:51","nodeType":"YulIdentifier","src":"9587:19:51"},"nativeSrc":"9587:40:51","nodeType":"YulFunctionCall","src":"9587:40:51"},"nativeSrc":"9587:40:51","nodeType":"YulExpressionStatement","src":"9587:40:51"},{"nativeSrc":"9636:17:51","nodeType":"YulVariableDeclaration","src":"9636:17:51","value":{"name":"memPtr","nativeSrc":"9647:6:51","nodeType":"YulIdentifier","src":"9647:6:51"},"variables":[{"name":"dst","nativeSrc":"9640:3:51","nodeType":"YulTypedName","src":"9640:3:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"9669:6:51","nodeType":"YulIdentifier","src":"9669:6:51"},{"name":"length","nativeSrc":"9677:6:51","nodeType":"YulIdentifier","src":"9677:6:51"}],"functionName":{"name":"mstore","nativeSrc":"9662:6:51","nodeType":"YulIdentifier","src":"9662:6:51"},"nativeSrc":"9662:22:51","nodeType":"YulFunctionCall","src":"9662:22:51"},"nativeSrc":"9662:22:51","nodeType":"YulExpressionStatement","src":"9662:22:51"},{"nativeSrc":"9693:22:51","nodeType":"YulAssignment","src":"9693:22:51","value":{"arguments":[{"name":"memPtr","nativeSrc":"9704:6:51","nodeType":"YulIdentifier","src":"9704:6:51"},{"kind":"number","nativeSrc":"9712:2:51","nodeType":"YulLiteral","src":"9712:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9700:3:51","nodeType":"YulIdentifier","src":"9700:3:51"},"nativeSrc":"9700:15:51","nodeType":"YulFunctionCall","src":"9700:15:51"},"variableNames":[{"name":"dst","nativeSrc":"9693:3:51","nodeType":"YulIdentifier","src":"9693:3:51"}]},{"nativeSrc":"9724:34:51","nodeType":"YulVariableDeclaration","src":"9724:34:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"9746:2:51","nodeType":"YulIdentifier","src":"9746:2:51"},{"name":"_2","nativeSrc":"9750:2:51","nodeType":"YulIdentifier","src":"9750:2:51"}],"functionName":{"name":"add","nativeSrc":"9742:3:51","nodeType":"YulIdentifier","src":"9742:3:51"},"nativeSrc":"9742:11:51","nodeType":"YulFunctionCall","src":"9742:11:51"},{"kind":"number","nativeSrc":"9755:2:51","nodeType":"YulLiteral","src":"9755:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9738:3:51","nodeType":"YulIdentifier","src":"9738:3:51"},"nativeSrc":"9738:20:51","nodeType":"YulFunctionCall","src":"9738:20:51"},"variables":[{"name":"srcEnd","nativeSrc":"9728:6:51","nodeType":"YulTypedName","src":"9728:6:51","type":""}]},{"body":{"nativeSrc":"9790:16:51","nodeType":"YulBlock","src":"9790:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9799:1:51","nodeType":"YulLiteral","src":"9799:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"9802:1:51","nodeType":"YulLiteral","src":"9802:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9792:6:51","nodeType":"YulIdentifier","src":"9792:6:51"},"nativeSrc":"9792:12:51","nodeType":"YulFunctionCall","src":"9792:12:51"},"nativeSrc":"9792:12:51","nodeType":"YulExpressionStatement","src":"9792:12:51"}]},"condition":{"arguments":[{"name":"srcEnd","nativeSrc":"9773:6:51","nodeType":"YulIdentifier","src":"9773:6:51"},{"name":"dataEnd","nativeSrc":"9781:7:51","nodeType":"YulIdentifier","src":"9781:7:51"}],"functionName":{"name":"gt","nativeSrc":"9770:2:51","nodeType":"YulIdentifier","src":"9770:2:51"},"nativeSrc":"9770:19:51","nodeType":"YulFunctionCall","src":"9770:19:51"},"nativeSrc":"9767:39:51","nodeType":"YulIf","src":"9767:39:51"},{"nativeSrc":"9815:22:51","nodeType":"YulVariableDeclaration","src":"9815:22:51","value":{"arguments":[{"name":"_1","nativeSrc":"9830:2:51","nodeType":"YulIdentifier","src":"9830:2:51"},{"kind":"number","nativeSrc":"9834:2:51","nodeType":"YulLiteral","src":"9834:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9826:3:51","nodeType":"YulIdentifier","src":"9826:3:51"},"nativeSrc":"9826:11:51","nodeType":"YulFunctionCall","src":"9826:11:51"},"variables":[{"name":"src","nativeSrc":"9819:3:51","nodeType":"YulTypedName","src":"9819:3:51","type":""}]},{"body":{"nativeSrc":"9902:745:51","nodeType":"YulBlock","src":"9902:745:51","statements":[{"nativeSrc":"9916:36:51","nodeType":"YulVariableDeclaration","src":"9916:36:51","value":{"arguments":[{"name":"src","nativeSrc":"9948:3:51","nodeType":"YulIdentifier","src":"9948:3:51"}],"functionName":{"name":"calldataload","nativeSrc":"9935:12:51","nodeType":"YulIdentifier","src":"9935:12:51"},"nativeSrc":"9935:17:51","nodeType":"YulFunctionCall","src":"9935:17:51"},"variables":[{"name":"innerOffset","nativeSrc":"9920:11:51","nodeType":"YulTypedName","src":"9920:11:51","type":""}]},{"body":{"nativeSrc":"10004:16:51","nodeType":"YulBlock","src":"10004:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10013:1:51","nodeType":"YulLiteral","src":"10013:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"10016:1:51","nodeType":"YulLiteral","src":"10016:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10006:6:51","nodeType":"YulIdentifier","src":"10006:6:51"},"nativeSrc":"10006:12:51","nodeType":"YulFunctionCall","src":"10006:12:51"},"nativeSrc":"10006:12:51","nodeType":"YulExpressionStatement","src":"10006:12:51"}]},"condition":{"arguments":[{"name":"innerOffset","nativeSrc":"9971:11:51","nodeType":"YulIdentifier","src":"9971:11:51"},{"kind":"number","nativeSrc":"9984:18:51","nodeType":"YulLiteral","src":"9984:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9968:2:51","nodeType":"YulIdentifier","src":"9968:2:51"},"nativeSrc":"9968:35:51","nodeType":"YulFunctionCall","src":"9968:35:51"},"nativeSrc":"9965:55:51","nodeType":"YulIf","src":"9965:55:51"},{"nativeSrc":"10033:30:51","nodeType":"YulVariableDeclaration","src":"10033:30:51","value":{"arguments":[{"name":"_1","nativeSrc":"10047:2:51","nodeType":"YulIdentifier","src":"10047:2:51"},{"name":"innerOffset","nativeSrc":"10051:11:51","nodeType":"YulIdentifier","src":"10051:11:51"}],"functionName":{"name":"add","nativeSrc":"10043:3:51","nodeType":"YulIdentifier","src":"10043:3:51"},"nativeSrc":"10043:20:51","nodeType":"YulFunctionCall","src":"10043:20:51"},"variables":[{"name":"_3","nativeSrc":"10037:2:51","nodeType":"YulTypedName","src":"10037:2:51","type":""}]},{"body":{"nativeSrc":"10113:16:51","nodeType":"YulBlock","src":"10113:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10122:1:51","nodeType":"YulLiteral","src":"10122:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"10125:1:51","nodeType":"YulLiteral","src":"10125:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10115:6:51","nodeType":"YulIdentifier","src":"10115:6:51"},"nativeSrc":"10115:12:51","nodeType":"YulFunctionCall","src":"10115:12:51"},"nativeSrc":"10115:12:51","nodeType":"YulExpressionStatement","src":"10115:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nativeSrc":"10094:2:51","nodeType":"YulIdentifier","src":"10094:2:51"},{"kind":"number","nativeSrc":"10098:2:51","nodeType":"YulLiteral","src":"10098:2:51","type":"","value":"63"}],"functionName":{"name":"add","nativeSrc":"10090:3:51","nodeType":"YulIdentifier","src":"10090:3:51"},"nativeSrc":"10090:11:51","nodeType":"YulFunctionCall","src":"10090:11:51"},{"name":"dataEnd","nativeSrc":"10103:7:51","nodeType":"YulIdentifier","src":"10103:7:51"}],"functionName":{"name":"slt","nativeSrc":"10086:3:51","nodeType":"YulIdentifier","src":"10086:3:51"},"nativeSrc":"10086:25:51","nodeType":"YulFunctionCall","src":"10086:25:51"}],"functionName":{"name":"iszero","nativeSrc":"10079:6:51","nodeType":"YulIdentifier","src":"10079:6:51"},"nativeSrc":"10079:33:51","nodeType":"YulFunctionCall","src":"10079:33:51"},"nativeSrc":"10076:53:51","nodeType":"YulIf","src":"10076:53:51"},{"nativeSrc":"10142:41:51","nodeType":"YulVariableDeclaration","src":"10142:41:51","value":{"arguments":[{"arguments":[{"name":"_3","nativeSrc":"10175:2:51","nodeType":"YulIdentifier","src":"10175:2:51"},{"kind":"number","nativeSrc":"10179:2:51","nodeType":"YulLiteral","src":"10179:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10171:3:51","nodeType":"YulIdentifier","src":"10171:3:51"},"nativeSrc":"10171:11:51","nodeType":"YulFunctionCall","src":"10171:11:51"}],"functionName":{"name":"calldataload","nativeSrc":"10158:12:51","nodeType":"YulIdentifier","src":"10158:12:51"},"nativeSrc":"10158:25:51","nodeType":"YulFunctionCall","src":"10158:25:51"},"variables":[{"name":"length_1","nativeSrc":"10146:8:51","nodeType":"YulTypedName","src":"10146:8:51","type":""}]},{"nativeSrc":"10196:48:51","nodeType":"YulVariableDeclaration","src":"10196:48:51","value":{"arguments":[{"name":"length_1","nativeSrc":"10235:8:51","nodeType":"YulIdentifier","src":"10235:8:51"}],"functionName":{"name":"array_allocation_size_string","nativeSrc":"10206:28:51","nodeType":"YulIdentifier","src":"10206:28:51"},"nativeSrc":"10206:38:51","nodeType":"YulFunctionCall","src":"10206:38:51"},"variables":[{"name":"_4","nativeSrc":"10200:2:51","nodeType":"YulTypedName","src":"10200:2:51","type":""}]},{"nativeSrc":"10257:25:51","nodeType":"YulVariableDeclaration","src":"10257:25:51","value":{"arguments":[{"kind":"number","nativeSrc":"10279:2:51","nodeType":"YulLiteral","src":"10279:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"10273:5:51","nodeType":"YulIdentifier","src":"10273:5:51"},"nativeSrc":"10273:9:51","nodeType":"YulFunctionCall","src":"10273:9:51"},"variables":[{"name":"memPtr_1","nativeSrc":"10261:8:51","nodeType":"YulTypedName","src":"10261:8:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr_1","nativeSrc":"10315:8:51","nodeType":"YulIdentifier","src":"10315:8:51"},{"name":"_4","nativeSrc":"10325:2:51","nodeType":"YulIdentifier","src":"10325:2:51"}],"functionName":{"name":"finalize_allocation","nativeSrc":"10295:19:51","nodeType":"YulIdentifier","src":"10295:19:51"},"nativeSrc":"10295:33:51","nodeType":"YulFunctionCall","src":"10295:33:51"},"nativeSrc":"10295:33:51","nodeType":"YulExpressionStatement","src":"10295:33:51"},{"expression":{"arguments":[{"name":"memPtr_1","nativeSrc":"10348:8:51","nodeType":"YulIdentifier","src":"10348:8:51"},{"name":"length_1","nativeSrc":"10358:8:51","nodeType":"YulIdentifier","src":"10358:8:51"}],"functionName":{"name":"mstore","nativeSrc":"10341:6:51","nodeType":"YulIdentifier","src":"10341:6:51"},"nativeSrc":"10341:26:51","nodeType":"YulFunctionCall","src":"10341:26:51"},"nativeSrc":"10341:26:51","nodeType":"YulExpressionStatement","src":"10341:26:51"},{"body":{"nativeSrc":"10432:16:51","nodeType":"YulBlock","src":"10432:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10441:1:51","nodeType":"YulLiteral","src":"10441:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"10444:1:51","nodeType":"YulLiteral","src":"10444:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10434:6:51","nodeType":"YulIdentifier","src":"10434:6:51"},"nativeSrc":"10434:12:51","nodeType":"YulFunctionCall","src":"10434:12:51"},"nativeSrc":"10434:12:51","nodeType":"YulExpressionStatement","src":"10434:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"name":"_3","nativeSrc":"10398:2:51","nodeType":"YulIdentifier","src":"10398:2:51"},{"name":"length_1","nativeSrc":"10402:8:51","nodeType":"YulIdentifier","src":"10402:8:51"}],"functionName":{"name":"add","nativeSrc":"10394:3:51","nodeType":"YulIdentifier","src":"10394:3:51"},"nativeSrc":"10394:17:51","nodeType":"YulFunctionCall","src":"10394:17:51"},{"kind":"number","nativeSrc":"10413:2:51","nodeType":"YulLiteral","src":"10413:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10390:3:51","nodeType":"YulIdentifier","src":"10390:3:51"},"nativeSrc":"10390:26:51","nodeType":"YulFunctionCall","src":"10390:26:51"},{"kind":"number","nativeSrc":"10418:2:51","nodeType":"YulLiteral","src":"10418:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10386:3:51","nodeType":"YulIdentifier","src":"10386:3:51"},"nativeSrc":"10386:35:51","nodeType":"YulFunctionCall","src":"10386:35:51"},{"name":"dataEnd","nativeSrc":"10423:7:51","nodeType":"YulIdentifier","src":"10423:7:51"}],"functionName":{"name":"gt","nativeSrc":"10383:2:51","nodeType":"YulIdentifier","src":"10383:2:51"},"nativeSrc":"10383:48:51","nodeType":"YulFunctionCall","src":"10383:48:51"},"nativeSrc":"10380:68:51","nodeType":"YulIf","src":"10380:68:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr_1","nativeSrc":"10478:8:51","nodeType":"YulIdentifier","src":"10478:8:51"},{"kind":"number","nativeSrc":"10488:2:51","nodeType":"YulLiteral","src":"10488:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10474:3:51","nodeType":"YulIdentifier","src":"10474:3:51"},"nativeSrc":"10474:17:51","nodeType":"YulFunctionCall","src":"10474:17:51"},{"arguments":[{"name":"_3","nativeSrc":"10497:2:51","nodeType":"YulIdentifier","src":"10497:2:51"},{"kind":"number","nativeSrc":"10501:2:51","nodeType":"YulLiteral","src":"10501:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10493:3:51","nodeType":"YulIdentifier","src":"10493:3:51"},"nativeSrc":"10493:11:51","nodeType":"YulFunctionCall","src":"10493:11:51"},{"name":"length_1","nativeSrc":"10506:8:51","nodeType":"YulIdentifier","src":"10506:8:51"}],"functionName":{"name":"calldatacopy","nativeSrc":"10461:12:51","nodeType":"YulIdentifier","src":"10461:12:51"},"nativeSrc":"10461:54:51","nodeType":"YulFunctionCall","src":"10461:54:51"},"nativeSrc":"10461:54:51","nodeType":"YulExpressionStatement","src":"10461:54:51"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"memPtr_1","nativeSrc":"10543:8:51","nodeType":"YulIdentifier","src":"10543:8:51"},{"name":"length_1","nativeSrc":"10553:8:51","nodeType":"YulIdentifier","src":"10553:8:51"}],"functionName":{"name":"add","nativeSrc":"10539:3:51","nodeType":"YulIdentifier","src":"10539:3:51"},"nativeSrc":"10539:23:51","nodeType":"YulFunctionCall","src":"10539:23:51"},{"kind":"number","nativeSrc":"10564:2:51","nodeType":"YulLiteral","src":"10564:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10535:3:51","nodeType":"YulIdentifier","src":"10535:3:51"},"nativeSrc":"10535:32:51","nodeType":"YulFunctionCall","src":"10535:32:51"},{"kind":"number","nativeSrc":"10569:1:51","nodeType":"YulLiteral","src":"10569:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"10528:6:51","nodeType":"YulIdentifier","src":"10528:6:51"},"nativeSrc":"10528:43:51","nodeType":"YulFunctionCall","src":"10528:43:51"},"nativeSrc":"10528:43:51","nodeType":"YulExpressionStatement","src":"10528:43:51"},{"expression":{"arguments":[{"name":"dst","nativeSrc":"10591:3:51","nodeType":"YulIdentifier","src":"10591:3:51"},{"name":"memPtr_1","nativeSrc":"10596:8:51","nodeType":"YulIdentifier","src":"10596:8:51"}],"functionName":{"name":"mstore","nativeSrc":"10584:6:51","nodeType":"YulIdentifier","src":"10584:6:51"},"nativeSrc":"10584:21:51","nodeType":"YulFunctionCall","src":"10584:21:51"},"nativeSrc":"10584:21:51","nodeType":"YulExpressionStatement","src":"10584:21:51"},{"nativeSrc":"10618:19:51","nodeType":"YulAssignment","src":"10618:19:51","value":{"arguments":[{"name":"dst","nativeSrc":"10629:3:51","nodeType":"YulIdentifier","src":"10629:3:51"},{"kind":"number","nativeSrc":"10634:2:51","nodeType":"YulLiteral","src":"10634:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10625:3:51","nodeType":"YulIdentifier","src":"10625:3:51"},"nativeSrc":"10625:12:51","nodeType":"YulFunctionCall","src":"10625:12:51"},"variableNames":[{"name":"dst","nativeSrc":"10618:3:51","nodeType":"YulIdentifier","src":"10618:3:51"}]}]},"condition":{"arguments":[{"name":"src","nativeSrc":"9857:3:51","nodeType":"YulIdentifier","src":"9857:3:51"},{"name":"srcEnd","nativeSrc":"9862:6:51","nodeType":"YulIdentifier","src":"9862:6:51"}],"functionName":{"name":"lt","nativeSrc":"9854:2:51","nodeType":"YulIdentifier","src":"9854:2:51"},"nativeSrc":"9854:15:51","nodeType":"YulFunctionCall","src":"9854:15:51"},"nativeSrc":"9846:801:51","nodeType":"YulForLoop","post":{"nativeSrc":"9870:23:51","nodeType":"YulBlock","src":"9870:23:51","statements":[{"nativeSrc":"9872:19:51","nodeType":"YulAssignment","src":"9872:19:51","value":{"arguments":[{"name":"src","nativeSrc":"9883:3:51","nodeType":"YulIdentifier","src":"9883:3:51"},{"kind":"number","nativeSrc":"9888:2:51","nodeType":"YulLiteral","src":"9888:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9879:3:51","nodeType":"YulIdentifier","src":"9879:3:51"},"nativeSrc":"9879:12:51","nodeType":"YulFunctionCall","src":"9879:12:51"},"variableNames":[{"name":"src","nativeSrc":"9872:3:51","nodeType":"YulIdentifier","src":"9872:3:51"}]}]},"pre":{"nativeSrc":"9850:3:51","nodeType":"YulBlock","src":"9850:3:51","statements":[]},"src":"9846:801:51"},{"nativeSrc":"10656:16:51","nodeType":"YulAssignment","src":"10656:16:51","value":{"name":"memPtr","nativeSrc":"10666:6:51","nodeType":"YulIdentifier","src":"10666:6:51"},"variableNames":[{"name":"value0","nativeSrc":"10656:6:51","nodeType":"YulIdentifier","src":"10656:6:51"}]}]},"name":"abi_decode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr","nativeSrc":"9032:1646:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9103:9:51","nodeType":"YulTypedName","src":"9103:9:51","type":""},{"name":"dataEnd","nativeSrc":"9114:7:51","nodeType":"YulTypedName","src":"9114:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9126:6:51","nodeType":"YulTypedName","src":"9126:6:51","type":""}],"src":"9032:1646:51"},{"body":{"nativeSrc":"10715:95:51","nodeType":"YulBlock","src":"10715:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10732:1:51","nodeType":"YulLiteral","src":"10732:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"10739:3:51","nodeType":"YulLiteral","src":"10739:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"10744:10:51","nodeType":"YulLiteral","src":"10744:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"10735:3:51","nodeType":"YulIdentifier","src":"10735:3:51"},"nativeSrc":"10735:20:51","nodeType":"YulFunctionCall","src":"10735:20:51"}],"functionName":{"name":"mstore","nativeSrc":"10725:6:51","nodeType":"YulIdentifier","src":"10725:6:51"},"nativeSrc":"10725:31:51","nodeType":"YulFunctionCall","src":"10725:31:51"},"nativeSrc":"10725:31:51","nodeType":"YulExpressionStatement","src":"10725:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10772:1:51","nodeType":"YulLiteral","src":"10772:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"10775:4:51","nodeType":"YulLiteral","src":"10775:4:51","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"10765:6:51","nodeType":"YulIdentifier","src":"10765:6:51"},"nativeSrc":"10765:15:51","nodeType":"YulFunctionCall","src":"10765:15:51"},"nativeSrc":"10765:15:51","nodeType":"YulExpressionStatement","src":"10765:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10796:1:51","nodeType":"YulLiteral","src":"10796:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"10799:4:51","nodeType":"YulLiteral","src":"10799:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"10789:6:51","nodeType":"YulIdentifier","src":"10789:6:51"},"nativeSrc":"10789:15:51","nodeType":"YulFunctionCall","src":"10789:15:51"},"nativeSrc":"10789:15:51","nodeType":"YulExpressionStatement","src":"10789:15:51"}]},"name":"panic_error_0x21","nativeSrc":"10683:127:51","nodeType":"YulFunctionDefinition","src":"10683:127:51"},{"body":{"nativeSrc":"10933:132:51","nodeType":"YulBlock","src":"10933:132:51","statements":[{"nativeSrc":"10943:26:51","nodeType":"YulAssignment","src":"10943:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"10955:9:51","nodeType":"YulIdentifier","src":"10955:9:51"},{"kind":"number","nativeSrc":"10966:2:51","nodeType":"YulLiteral","src":"10966:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10951:3:51","nodeType":"YulIdentifier","src":"10951:3:51"},"nativeSrc":"10951:18:51","nodeType":"YulFunctionCall","src":"10951:18:51"},"variableNames":[{"name":"tail","nativeSrc":"10943:4:51","nodeType":"YulIdentifier","src":"10943:4:51"}]},{"body":{"nativeSrc":"11003:22:51","nodeType":"YulBlock","src":"11003:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x21","nativeSrc":"11005:16:51","nodeType":"YulIdentifier","src":"11005:16:51"},"nativeSrc":"11005:18:51","nodeType":"YulFunctionCall","src":"11005:18:51"},"nativeSrc":"11005:18:51","nodeType":"YulExpressionStatement","src":"11005:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"10991:6:51","nodeType":"YulIdentifier","src":"10991:6:51"},{"kind":"number","nativeSrc":"10999:1:51","nodeType":"YulLiteral","src":"10999:1:51","type":"","value":"4"}],"functionName":{"name":"lt","nativeSrc":"10988:2:51","nodeType":"YulIdentifier","src":"10988:2:51"},"nativeSrc":"10988:13:51","nodeType":"YulFunctionCall","src":"10988:13:51"}],"functionName":{"name":"iszero","nativeSrc":"10981:6:51","nodeType":"YulIdentifier","src":"10981:6:51"},"nativeSrc":"10981:21:51","nodeType":"YulFunctionCall","src":"10981:21:51"},"nativeSrc":"10978:47:51","nodeType":"YulIf","src":"10978:47:51"},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11041:9:51","nodeType":"YulIdentifier","src":"11041:9:51"},{"name":"value0","nativeSrc":"11052:6:51","nodeType":"YulIdentifier","src":"11052:6:51"}],"functionName":{"name":"mstore","nativeSrc":"11034:6:51","nodeType":"YulIdentifier","src":"11034:6:51"},"nativeSrc":"11034:25:51","nodeType":"YulFunctionCall","src":"11034:25:51"},"nativeSrc":"11034:25:51","nodeType":"YulExpressionStatement","src":"11034:25:51"}]},"name":"abi_encode_tuple_t_enum$_WrappingStatus_$7944__to_t_uint8__fromStack_reversed","nativeSrc":"10815:250:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10902:9:51","nodeType":"YulTypedName","src":"10902:9:51","type":""},{"name":"value0","nativeSrc":"10913:6:51","nodeType":"YulTypedName","src":"10913:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10924:4:51","nodeType":"YulTypedName","src":"10924:4:51","type":""}],"src":"10815:250:51"},{"body":{"nativeSrc":"11189:99:51","nodeType":"YulBlock","src":"11189:99:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11206:9:51","nodeType":"YulIdentifier","src":"11206:9:51"},{"kind":"number","nativeSrc":"11217:2:51","nodeType":"YulLiteral","src":"11217:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"11199:6:51","nodeType":"YulIdentifier","src":"11199:6:51"},"nativeSrc":"11199:21:51","nodeType":"YulFunctionCall","src":"11199:21:51"},"nativeSrc":"11199:21:51","nodeType":"YulExpressionStatement","src":"11199:21:51"},{"nativeSrc":"11229:53:51","nodeType":"YulAssignment","src":"11229:53:51","value":{"arguments":[{"name":"value0","nativeSrc":"11255:6:51","nodeType":"YulIdentifier","src":"11255:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"11267:9:51","nodeType":"YulIdentifier","src":"11267:9:51"},{"kind":"number","nativeSrc":"11278:2:51","nodeType":"YulLiteral","src":"11278:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11263:3:51","nodeType":"YulIdentifier","src":"11263:3:51"},"nativeSrc":"11263:18:51","nodeType":"YulFunctionCall","src":"11263:18:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"11237:17:51","nodeType":"YulIdentifier","src":"11237:17:51"},"nativeSrc":"11237:45:51","nodeType":"YulFunctionCall","src":"11237:45:51"},"variableNames":[{"name":"tail","nativeSrc":"11229:4:51","nodeType":"YulIdentifier","src":"11229:4:51"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"11070:218:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11158:9:51","nodeType":"YulTypedName","src":"11158:9:51","type":""},{"name":"value0","nativeSrc":"11169:6:51","nodeType":"YulTypedName","src":"11169:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11180:4:51","nodeType":"YulTypedName","src":"11180:4:51","type":""}],"src":"11070:218:51"},{"body":{"nativeSrc":"11400:133:51","nodeType":"YulBlock","src":"11400:133:51","statements":[{"nativeSrc":"11410:42:51","nodeType":"YulVariableDeclaration","src":"11410:42:51","value":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11428:7:51","nodeType":"YulIdentifier","src":"11428:7:51"},{"name":"headStart","nativeSrc":"11437:9:51","nodeType":"YulIdentifier","src":"11437:9:51"}],"functionName":{"name":"sub","nativeSrc":"11424:3:51","nodeType":"YulIdentifier","src":"11424:3:51"},"nativeSrc":"11424:23:51","nodeType":"YulFunctionCall","src":"11424:23:51"},{"kind":"number","nativeSrc":"11449:2:51","nodeType":"YulLiteral","src":"11449:2:51","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"11420:3:51","nodeType":"YulIdentifier","src":"11420:3:51"},"nativeSrc":"11420:32:51","nodeType":"YulFunctionCall","src":"11420:32:51"},"variables":[{"name":"_1","nativeSrc":"11414:2:51","nodeType":"YulTypedName","src":"11414:2:51","type":""}]},{"body":{"nativeSrc":"11467:16:51","nodeType":"YulBlock","src":"11467:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11476:1:51","nodeType":"YulLiteral","src":"11476:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"11479:1:51","nodeType":"YulLiteral","src":"11479:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11469:6:51","nodeType":"YulIdentifier","src":"11469:6:51"},"nativeSrc":"11469:12:51","nodeType":"YulFunctionCall","src":"11469:12:51"},"nativeSrc":"11469:12:51","nodeType":"YulExpressionStatement","src":"11469:12:51"}]},"condition":{"name":"_1","nativeSrc":"11464:2:51","nodeType":"YulIdentifier","src":"11464:2:51"},"nativeSrc":"11461:22:51","nodeType":"YulIf","src":"11461:22:51"},{"nativeSrc":"11492:7:51","nodeType":"YulAssignment","src":"11492:7:51","value":{"kind":"number","nativeSrc":"11498:1:51","nodeType":"YulLiteral","src":"11498:1:51","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"11492:2:51","nodeType":"YulIdentifier","src":"11492:2:51"}]},{"nativeSrc":"11508:19:51","nodeType":"YulAssignment","src":"11508:19:51","value":{"name":"headStart","nativeSrc":"11518:9:51","nodeType":"YulIdentifier","src":"11518:9:51"},"variableNames":[{"name":"value0","nativeSrc":"11508:6:51","nodeType":"YulIdentifier","src":"11508:6:51"}]}]},"name":"abi_decode_tuple_t_struct$_WitOracleSettings_$7939_calldata_ptr","nativeSrc":"11293:240:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11366:9:51","nodeType":"YulTypedName","src":"11366:9:51","type":""},{"name":"dataEnd","nativeSrc":"11377:7:51","nodeType":"YulTypedName","src":"11377:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11389:6:51","nodeType":"YulTypedName","src":"11389:6:51","type":""}],"src":"11293:240:51"},{"body":{"nativeSrc":"11581:71:51","nodeType":"YulBlock","src":"11581:71:51","statements":[{"body":{"nativeSrc":"11630:16:51","nodeType":"YulBlock","src":"11630:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11639:1:51","nodeType":"YulLiteral","src":"11639:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"11642:1:51","nodeType":"YulLiteral","src":"11642:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11632:6:51","nodeType":"YulIdentifier","src":"11632:6:51"},"nativeSrc":"11632:12:51","nodeType":"YulFunctionCall","src":"11632:12:51"},"nativeSrc":"11632:12:51","nodeType":"YulExpressionStatement","src":"11632:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11604:5:51","nodeType":"YulIdentifier","src":"11604:5:51"},{"arguments":[{"name":"value","nativeSrc":"11615:5:51","nodeType":"YulIdentifier","src":"11615:5:51"},{"kind":"number","nativeSrc":"11622:4:51","nodeType":"YulLiteral","src":"11622:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"11611:3:51","nodeType":"YulIdentifier","src":"11611:3:51"},"nativeSrc":"11611:16:51","nodeType":"YulFunctionCall","src":"11611:16:51"}],"functionName":{"name":"eq","nativeSrc":"11601:2:51","nodeType":"YulIdentifier","src":"11601:2:51"},"nativeSrc":"11601:27:51","nodeType":"YulFunctionCall","src":"11601:27:51"}],"functionName":{"name":"iszero","nativeSrc":"11594:6:51","nodeType":"YulIdentifier","src":"11594:6:51"},"nativeSrc":"11594:35:51","nodeType":"YulFunctionCall","src":"11594:35:51"},"nativeSrc":"11591:55:51","nodeType":"YulIf","src":"11591:55:51"}]},"name":"validator_revert_uint8","nativeSrc":"11538:114:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"11570:5:51","nodeType":"YulTypedName","src":"11570:5:51","type":""}],"src":"11538:114:51"},{"body":{"nativeSrc":"11827:839:51","nodeType":"YulBlock","src":"11827:839:51","statements":[{"body":{"nativeSrc":"11874:16:51","nodeType":"YulBlock","src":"11874:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11883:1:51","nodeType":"YulLiteral","src":"11883:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"11886:1:51","nodeType":"YulLiteral","src":"11886:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11876:6:51","nodeType":"YulIdentifier","src":"11876:6:51"},"nativeSrc":"11876:12:51","nodeType":"YulFunctionCall","src":"11876:12:51"},"nativeSrc":"11876:12:51","nodeType":"YulExpressionStatement","src":"11876:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11848:7:51","nodeType":"YulIdentifier","src":"11848:7:51"},{"name":"headStart","nativeSrc":"11857:9:51","nodeType":"YulIdentifier","src":"11857:9:51"}],"functionName":{"name":"sub","nativeSrc":"11844:3:51","nodeType":"YulIdentifier","src":"11844:3:51"},"nativeSrc":"11844:23:51","nodeType":"YulFunctionCall","src":"11844:23:51"},{"kind":"number","nativeSrc":"11869:3:51","nodeType":"YulLiteral","src":"11869:3:51","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"11840:3:51","nodeType":"YulIdentifier","src":"11840:3:51"},"nativeSrc":"11840:33:51","nodeType":"YulFunctionCall","src":"11840:33:51"},"nativeSrc":"11837:53:51","nodeType":"YulIf","src":"11837:53:51"},{"nativeSrc":"11899:36:51","nodeType":"YulVariableDeclaration","src":"11899:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"11925:9:51","nodeType":"YulIdentifier","src":"11925:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"11912:12:51","nodeType":"YulIdentifier","src":"11912:12:51"},"nativeSrc":"11912:23:51","nodeType":"YulFunctionCall","src":"11912:23:51"},"variables":[{"name":"value","nativeSrc":"11903:5:51","nodeType":"YulTypedName","src":"11903:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"11969:5:51","nodeType":"YulIdentifier","src":"11969:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11944:24:51","nodeType":"YulIdentifier","src":"11944:24:51"},"nativeSrc":"11944:31:51","nodeType":"YulFunctionCall","src":"11944:31:51"},"nativeSrc":"11944:31:51","nodeType":"YulExpressionStatement","src":"11944:31:51"},{"nativeSrc":"11984:15:51","nodeType":"YulAssignment","src":"11984:15:51","value":{"name":"value","nativeSrc":"11994:5:51","nodeType":"YulIdentifier","src":"11994:5:51"},"variableNames":[{"name":"value0","nativeSrc":"11984:6:51","nodeType":"YulIdentifier","src":"11984:6:51"}]},{"nativeSrc":"12008:47:51","nodeType":"YulVariableDeclaration","src":"12008:47:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12040:9:51","nodeType":"YulIdentifier","src":"12040:9:51"},{"kind":"number","nativeSrc":"12051:2:51","nodeType":"YulLiteral","src":"12051:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12036:3:51","nodeType":"YulIdentifier","src":"12036:3:51"},"nativeSrc":"12036:18:51","nodeType":"YulFunctionCall","src":"12036:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"12023:12:51","nodeType":"YulIdentifier","src":"12023:12:51"},"nativeSrc":"12023:32:51","nodeType":"YulFunctionCall","src":"12023:32:51"},"variables":[{"name":"value_1","nativeSrc":"12012:7:51","nodeType":"YulTypedName","src":"12012:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"12089:7:51","nodeType":"YulIdentifier","src":"12089:7:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12064:24:51","nodeType":"YulIdentifier","src":"12064:24:51"},"nativeSrc":"12064:33:51","nodeType":"YulFunctionCall","src":"12064:33:51"},"nativeSrc":"12064:33:51","nodeType":"YulExpressionStatement","src":"12064:33:51"},{"nativeSrc":"12106:17:51","nodeType":"YulAssignment","src":"12106:17:51","value":{"name":"value_1","nativeSrc":"12116:7:51","nodeType":"YulIdentifier","src":"12116:7:51"},"variableNames":[{"name":"value1","nativeSrc":"12106:6:51","nodeType":"YulIdentifier","src":"12106:6:51"}]},{"nativeSrc":"12132:16:51","nodeType":"YulVariableDeclaration","src":"12132:16:51","value":{"kind":"number","nativeSrc":"12147:1:51","nodeType":"YulLiteral","src":"12147:1:51","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"12136:7:51","nodeType":"YulTypedName","src":"12136:7:51","type":""}]},{"nativeSrc":"12157:43:51","nodeType":"YulAssignment","src":"12157:43:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12185:9:51","nodeType":"YulIdentifier","src":"12185:9:51"},{"kind":"number","nativeSrc":"12196:2:51","nodeType":"YulLiteral","src":"12196:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12181:3:51","nodeType":"YulIdentifier","src":"12181:3:51"},"nativeSrc":"12181:18:51","nodeType":"YulFunctionCall","src":"12181:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"12168:12:51","nodeType":"YulIdentifier","src":"12168:12:51"},"nativeSrc":"12168:32:51","nodeType":"YulFunctionCall","src":"12168:32:51"},"variableNames":[{"name":"value_2","nativeSrc":"12157:7:51","nodeType":"YulIdentifier","src":"12157:7:51"}]},{"nativeSrc":"12209:17:51","nodeType":"YulAssignment","src":"12209:17:51","value":{"name":"value_2","nativeSrc":"12219:7:51","nodeType":"YulIdentifier","src":"12219:7:51"},"variableNames":[{"name":"value2","nativeSrc":"12209:6:51","nodeType":"YulIdentifier","src":"12209:6:51"}]},{"nativeSrc":"12235:16:51","nodeType":"YulVariableDeclaration","src":"12235:16:51","value":{"kind":"number","nativeSrc":"12250:1:51","nodeType":"YulLiteral","src":"12250:1:51","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"12239:7:51","nodeType":"YulTypedName","src":"12239:7:51","type":""}]},{"nativeSrc":"12260:43:51","nodeType":"YulAssignment","src":"12260:43:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12288:9:51","nodeType":"YulIdentifier","src":"12288:9:51"},{"kind":"number","nativeSrc":"12299:2:51","nodeType":"YulLiteral","src":"12299:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12284:3:51","nodeType":"YulIdentifier","src":"12284:3:51"},"nativeSrc":"12284:18:51","nodeType":"YulFunctionCall","src":"12284:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"12271:12:51","nodeType":"YulIdentifier","src":"12271:12:51"},"nativeSrc":"12271:32:51","nodeType":"YulFunctionCall","src":"12271:32:51"},"variableNames":[{"name":"value_3","nativeSrc":"12260:7:51","nodeType":"YulIdentifier","src":"12260:7:51"}]},{"nativeSrc":"12312:17:51","nodeType":"YulAssignment","src":"12312:17:51","value":{"name":"value_3","nativeSrc":"12322:7:51","nodeType":"YulIdentifier","src":"12322:7:51"},"variableNames":[{"name":"value3","nativeSrc":"12312:6:51","nodeType":"YulIdentifier","src":"12312:6:51"}]},{"nativeSrc":"12338:48:51","nodeType":"YulVariableDeclaration","src":"12338:48:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12370:9:51","nodeType":"YulIdentifier","src":"12370:9:51"},{"kind":"number","nativeSrc":"12381:3:51","nodeType":"YulLiteral","src":"12381:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"12366:3:51","nodeType":"YulIdentifier","src":"12366:3:51"},"nativeSrc":"12366:19:51","nodeType":"YulFunctionCall","src":"12366:19:51"}],"functionName":{"name":"calldataload","nativeSrc":"12353:12:51","nodeType":"YulIdentifier","src":"12353:12:51"},"nativeSrc":"12353:33:51","nodeType":"YulFunctionCall","src":"12353:33:51"},"variables":[{"name":"value_4","nativeSrc":"12342:7:51","nodeType":"YulTypedName","src":"12342:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"12418:7:51","nodeType":"YulIdentifier","src":"12418:7:51"}],"functionName":{"name":"validator_revert_uint8","nativeSrc":"12395:22:51","nodeType":"YulIdentifier","src":"12395:22:51"},"nativeSrc":"12395:31:51","nodeType":"YulFunctionCall","src":"12395:31:51"},"nativeSrc":"12395:31:51","nodeType":"YulExpressionStatement","src":"12395:31:51"},{"nativeSrc":"12435:17:51","nodeType":"YulAssignment","src":"12435:17:51","value":{"name":"value_4","nativeSrc":"12445:7:51","nodeType":"YulIdentifier","src":"12445:7:51"},"variableNames":[{"name":"value4","nativeSrc":"12435:6:51","nodeType":"YulIdentifier","src":"12435:6:51"}]},{"nativeSrc":"12461:16:51","nodeType":"YulVariableDeclaration","src":"12461:16:51","value":{"kind":"number","nativeSrc":"12476:1:51","nodeType":"YulLiteral","src":"12476:1:51","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"12465:7:51","nodeType":"YulTypedName","src":"12465:7:51","type":""}]},{"nativeSrc":"12486:44:51","nodeType":"YulAssignment","src":"12486:44:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12514:9:51","nodeType":"YulIdentifier","src":"12514:9:51"},{"kind":"number","nativeSrc":"12525:3:51","nodeType":"YulLiteral","src":"12525:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"12510:3:51","nodeType":"YulIdentifier","src":"12510:3:51"},"nativeSrc":"12510:19:51","nodeType":"YulFunctionCall","src":"12510:19:51"}],"functionName":{"name":"calldataload","nativeSrc":"12497:12:51","nodeType":"YulIdentifier","src":"12497:12:51"},"nativeSrc":"12497:33:51","nodeType":"YulFunctionCall","src":"12497:33:51"},"variableNames":[{"name":"value_5","nativeSrc":"12486:7:51","nodeType":"YulIdentifier","src":"12486:7:51"}]},{"nativeSrc":"12539:17:51","nodeType":"YulAssignment","src":"12539:17:51","value":{"name":"value_5","nativeSrc":"12549:7:51","nodeType":"YulIdentifier","src":"12549:7:51"},"variableNames":[{"name":"value5","nativeSrc":"12539:6:51","nodeType":"YulIdentifier","src":"12539:6:51"}]},{"nativeSrc":"12565:16:51","nodeType":"YulVariableDeclaration","src":"12565:16:51","value":{"kind":"number","nativeSrc":"12580:1:51","nodeType":"YulLiteral","src":"12580:1:51","type":"","value":"0"},"variables":[{"name":"value_6","nativeSrc":"12569:7:51","nodeType":"YulTypedName","src":"12569:7:51","type":""}]},{"nativeSrc":"12590:44:51","nodeType":"YulAssignment","src":"12590:44:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12618:9:51","nodeType":"YulIdentifier","src":"12618:9:51"},{"kind":"number","nativeSrc":"12629:3:51","nodeType":"YulLiteral","src":"12629:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"12614:3:51","nodeType":"YulIdentifier","src":"12614:3:51"},"nativeSrc":"12614:19:51","nodeType":"YulFunctionCall","src":"12614:19:51"}],"functionName":{"name":"calldataload","nativeSrc":"12601:12:51","nodeType":"YulIdentifier","src":"12601:12:51"},"nativeSrc":"12601:33:51","nodeType":"YulFunctionCall","src":"12601:33:51"},"variableNames":[{"name":"value_6","nativeSrc":"12590:7:51","nodeType":"YulIdentifier","src":"12590:7:51"}]},{"nativeSrc":"12643:17:51","nodeType":"YulAssignment","src":"12643:17:51","value":{"name":"value_6","nativeSrc":"12653:7:51","nodeType":"YulIdentifier","src":"12653:7:51"},"variableNames":[{"name":"value6","nativeSrc":"12643:6:51","nodeType":"YulIdentifier","src":"12643:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"11657:1009:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11745:9:51","nodeType":"YulTypedName","src":"11745:9:51","type":""},{"name":"dataEnd","nativeSrc":"11756:7:51","nodeType":"YulTypedName","src":"11756:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11768:6:51","nodeType":"YulTypedName","src":"11768:6:51","type":""},{"name":"value1","nativeSrc":"11776:6:51","nodeType":"YulTypedName","src":"11776:6:51","type":""},{"name":"value2","nativeSrc":"11784:6:51","nodeType":"YulTypedName","src":"11784:6:51","type":""},{"name":"value3","nativeSrc":"11792:6:51","nodeType":"YulTypedName","src":"11792:6:51","type":""},{"name":"value4","nativeSrc":"11800:6:51","nodeType":"YulTypedName","src":"11800:6:51","type":""},{"name":"value5","nativeSrc":"11808:6:51","nodeType":"YulTypedName","src":"11808:6:51","type":""},{"name":"value6","nativeSrc":"11816:6:51","nodeType":"YulTypedName","src":"11816:6:51","type":""}],"src":"11657:1009:51"},{"body":{"nativeSrc":"12777:417:51","nodeType":"YulBlock","src":"12777:417:51","statements":[{"body":{"nativeSrc":"12823:16:51","nodeType":"YulBlock","src":"12823:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12832:1:51","nodeType":"YulLiteral","src":"12832:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"12835:1:51","nodeType":"YulLiteral","src":"12835:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12825:6:51","nodeType":"YulIdentifier","src":"12825:6:51"},"nativeSrc":"12825:12:51","nodeType":"YulFunctionCall","src":"12825:12:51"},"nativeSrc":"12825:12:51","nodeType":"YulExpressionStatement","src":"12825:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12798:7:51","nodeType":"YulIdentifier","src":"12798:7:51"},{"name":"headStart","nativeSrc":"12807:9:51","nodeType":"YulIdentifier","src":"12807:9:51"}],"functionName":{"name":"sub","nativeSrc":"12794:3:51","nodeType":"YulIdentifier","src":"12794:3:51"},"nativeSrc":"12794:23:51","nodeType":"YulFunctionCall","src":"12794:23:51"},{"kind":"number","nativeSrc":"12819:2:51","nodeType":"YulLiteral","src":"12819:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"12790:3:51","nodeType":"YulIdentifier","src":"12790:3:51"},"nativeSrc":"12790:32:51","nodeType":"YulFunctionCall","src":"12790:32:51"},"nativeSrc":"12787:52:51","nodeType":"YulIf","src":"12787:52:51"},{"nativeSrc":"12848:14:51","nodeType":"YulVariableDeclaration","src":"12848:14:51","value":{"kind":"number","nativeSrc":"12861:1:51","nodeType":"YulLiteral","src":"12861:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"12852:5:51","nodeType":"YulTypedName","src":"12852:5:51","type":""}]},{"nativeSrc":"12871:32:51","nodeType":"YulAssignment","src":"12871:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"12893:9:51","nodeType":"YulIdentifier","src":"12893:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"12880:12:51","nodeType":"YulIdentifier","src":"12880:12:51"},"nativeSrc":"12880:23:51","nodeType":"YulFunctionCall","src":"12880:23:51"},"variableNames":[{"name":"value","nativeSrc":"12871:5:51","nodeType":"YulIdentifier","src":"12871:5:51"}]},{"nativeSrc":"12912:15:51","nodeType":"YulAssignment","src":"12912:15:51","value":{"name":"value","nativeSrc":"12922:5:51","nodeType":"YulIdentifier","src":"12922:5:51"},"variableNames":[{"name":"value0","nativeSrc":"12912:6:51","nodeType":"YulIdentifier","src":"12912:6:51"}]},{"nativeSrc":"12936:46:51","nodeType":"YulVariableDeclaration","src":"12936:46:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12967:9:51","nodeType":"YulIdentifier","src":"12967:9:51"},{"kind":"number","nativeSrc":"12978:2:51","nodeType":"YulLiteral","src":"12978:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12963:3:51","nodeType":"YulIdentifier","src":"12963:3:51"},"nativeSrc":"12963:18:51","nodeType":"YulFunctionCall","src":"12963:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"12950:12:51","nodeType":"YulIdentifier","src":"12950:12:51"},"nativeSrc":"12950:32:51","nodeType":"YulFunctionCall","src":"12950:32:51"},"variables":[{"name":"offset","nativeSrc":"12940:6:51","nodeType":"YulTypedName","src":"12940:6:51","type":""}]},{"body":{"nativeSrc":"13025:16:51","nodeType":"YulBlock","src":"13025:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13034:1:51","nodeType":"YulLiteral","src":"13034:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"13037:1:51","nodeType":"YulLiteral","src":"13037:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13027:6:51","nodeType":"YulIdentifier","src":"13027:6:51"},"nativeSrc":"13027:12:51","nodeType":"YulFunctionCall","src":"13027:12:51"},"nativeSrc":"13027:12:51","nodeType":"YulExpressionStatement","src":"13027:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"12997:6:51","nodeType":"YulIdentifier","src":"12997:6:51"},{"kind":"number","nativeSrc":"13005:18:51","nodeType":"YulLiteral","src":"13005:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"12994:2:51","nodeType":"YulIdentifier","src":"12994:2:51"},"nativeSrc":"12994:30:51","nodeType":"YulFunctionCall","src":"12994:30:51"},"nativeSrc":"12991:50:51","nodeType":"YulIf","src":"12991:50:51"},{"nativeSrc":"13050:84:51","nodeType":"YulVariableDeclaration","src":"13050:84:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13106:9:51","nodeType":"YulIdentifier","src":"13106:9:51"},{"name":"offset","nativeSrc":"13117:6:51","nodeType":"YulIdentifier","src":"13117:6:51"}],"functionName":{"name":"add","nativeSrc":"13102:3:51","nodeType":"YulIdentifier","src":"13102:3:51"},"nativeSrc":"13102:22:51","nodeType":"YulFunctionCall","src":"13102:22:51"},{"name":"dataEnd","nativeSrc":"13126:7:51","nodeType":"YulIdentifier","src":"13126:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"13076:25:51","nodeType":"YulIdentifier","src":"13076:25:51"},"nativeSrc":"13076:58:51","nodeType":"YulFunctionCall","src":"13076:58:51"},"variables":[{"name":"value1_1","nativeSrc":"13054:8:51","nodeType":"YulTypedName","src":"13054:8:51","type":""},{"name":"value2_1","nativeSrc":"13064:8:51","nodeType":"YulTypedName","src":"13064:8:51","type":""}]},{"nativeSrc":"13143:18:51","nodeType":"YulAssignment","src":"13143:18:51","value":{"name":"value1_1","nativeSrc":"13153:8:51","nodeType":"YulIdentifier","src":"13153:8:51"},"variableNames":[{"name":"value1","nativeSrc":"13143:6:51","nodeType":"YulIdentifier","src":"13143:6:51"}]},{"nativeSrc":"13170:18:51","nodeType":"YulAssignment","src":"13170:18:51","value":{"name":"value2_1","nativeSrc":"13180:8:51","nodeType":"YulIdentifier","src":"13180:8:51"},"variableNames":[{"name":"value2","nativeSrc":"13170:6:51","nodeType":"YulIdentifier","src":"13170:6:51"}]}]},"name":"abi_decode_tuple_t_uint256t_bytes_calldata_ptr","nativeSrc":"12671:523:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12727:9:51","nodeType":"YulTypedName","src":"12727:9:51","type":""},{"name":"dataEnd","nativeSrc":"12738:7:51","nodeType":"YulTypedName","src":"12738:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12750:6:51","nodeType":"YulTypedName","src":"12750:6:51","type":""},{"name":"value1","nativeSrc":"12758:6:51","nodeType":"YulTypedName","src":"12758:6:51","type":""},{"name":"value2","nativeSrc":"12766:6:51","nodeType":"YulTypedName","src":"12766:6:51","type":""}],"src":"12671:523:51"},{"body":{"nativeSrc":"13286:301:51","nodeType":"YulBlock","src":"13286:301:51","statements":[{"body":{"nativeSrc":"13332:16:51","nodeType":"YulBlock","src":"13332:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13341:1:51","nodeType":"YulLiteral","src":"13341:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"13344:1:51","nodeType":"YulLiteral","src":"13344:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13334:6:51","nodeType":"YulIdentifier","src":"13334:6:51"},"nativeSrc":"13334:12:51","nodeType":"YulFunctionCall","src":"13334:12:51"},"nativeSrc":"13334:12:51","nodeType":"YulExpressionStatement","src":"13334:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13307:7:51","nodeType":"YulIdentifier","src":"13307:7:51"},{"name":"headStart","nativeSrc":"13316:9:51","nodeType":"YulIdentifier","src":"13316:9:51"}],"functionName":{"name":"sub","nativeSrc":"13303:3:51","nodeType":"YulIdentifier","src":"13303:3:51"},"nativeSrc":"13303:23:51","nodeType":"YulFunctionCall","src":"13303:23:51"},{"kind":"number","nativeSrc":"13328:2:51","nodeType":"YulLiteral","src":"13328:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"13299:3:51","nodeType":"YulIdentifier","src":"13299:3:51"},"nativeSrc":"13299:32:51","nodeType":"YulFunctionCall","src":"13299:32:51"},"nativeSrc":"13296:52:51","nodeType":"YulIf","src":"13296:52:51"},{"nativeSrc":"13357:36:51","nodeType":"YulVariableDeclaration","src":"13357:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"13383:9:51","nodeType":"YulIdentifier","src":"13383:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"13370:12:51","nodeType":"YulIdentifier","src":"13370:12:51"},"nativeSrc":"13370:23:51","nodeType":"YulFunctionCall","src":"13370:23:51"},"variables":[{"name":"value","nativeSrc":"13361:5:51","nodeType":"YulTypedName","src":"13361:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13427:5:51","nodeType":"YulIdentifier","src":"13427:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13402:24:51","nodeType":"YulIdentifier","src":"13402:24:51"},"nativeSrc":"13402:31:51","nodeType":"YulFunctionCall","src":"13402:31:51"},"nativeSrc":"13402:31:51","nodeType":"YulExpressionStatement","src":"13402:31:51"},{"nativeSrc":"13442:15:51","nodeType":"YulAssignment","src":"13442:15:51","value":{"name":"value","nativeSrc":"13452:5:51","nodeType":"YulIdentifier","src":"13452:5:51"},"variableNames":[{"name":"value0","nativeSrc":"13442:6:51","nodeType":"YulIdentifier","src":"13442:6:51"}]},{"nativeSrc":"13466:47:51","nodeType":"YulVariableDeclaration","src":"13466:47:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13498:9:51","nodeType":"YulIdentifier","src":"13498:9:51"},{"kind":"number","nativeSrc":"13509:2:51","nodeType":"YulLiteral","src":"13509:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13494:3:51","nodeType":"YulIdentifier","src":"13494:3:51"},"nativeSrc":"13494:18:51","nodeType":"YulFunctionCall","src":"13494:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"13481:12:51","nodeType":"YulIdentifier","src":"13481:12:51"},"nativeSrc":"13481:32:51","nodeType":"YulFunctionCall","src":"13481:32:51"},"variables":[{"name":"value_1","nativeSrc":"13470:7:51","nodeType":"YulTypedName","src":"13470:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"13547:7:51","nodeType":"YulIdentifier","src":"13547:7:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13522:24:51","nodeType":"YulIdentifier","src":"13522:24:51"},"nativeSrc":"13522:33:51","nodeType":"YulFunctionCall","src":"13522:33:51"},"nativeSrc":"13522:33:51","nodeType":"YulExpressionStatement","src":"13522:33:51"},{"nativeSrc":"13564:17:51","nodeType":"YulAssignment","src":"13564:17:51","value":{"name":"value_1","nativeSrc":"13574:7:51","nodeType":"YulIdentifier","src":"13574:7:51"},"variableNames":[{"name":"value1","nativeSrc":"13564:6:51","nodeType":"YulIdentifier","src":"13564:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"13199:388:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13244:9:51","nodeType":"YulTypedName","src":"13244:9:51","type":""},{"name":"dataEnd","nativeSrc":"13255:7:51","nodeType":"YulTypedName","src":"13255:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13267:6:51","nodeType":"YulTypedName","src":"13267:6:51","type":""},{"name":"value1","nativeSrc":"13275:6:51","nodeType":"YulTypedName","src":"13275:6:51","type":""}],"src":"13199:388:51"},{"body":{"nativeSrc":"13662:156:51","nodeType":"YulBlock","src":"13662:156:51","statements":[{"body":{"nativeSrc":"13708:16:51","nodeType":"YulBlock","src":"13708:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13717:1:51","nodeType":"YulLiteral","src":"13717:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"13720:1:51","nodeType":"YulLiteral","src":"13720:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13710:6:51","nodeType":"YulIdentifier","src":"13710:6:51"},"nativeSrc":"13710:12:51","nodeType":"YulFunctionCall","src":"13710:12:51"},"nativeSrc":"13710:12:51","nodeType":"YulExpressionStatement","src":"13710:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13683:7:51","nodeType":"YulIdentifier","src":"13683:7:51"},{"name":"headStart","nativeSrc":"13692:9:51","nodeType":"YulIdentifier","src":"13692:9:51"}],"functionName":{"name":"sub","nativeSrc":"13679:3:51","nodeType":"YulIdentifier","src":"13679:3:51"},"nativeSrc":"13679:23:51","nodeType":"YulFunctionCall","src":"13679:23:51"},{"kind":"number","nativeSrc":"13704:2:51","nodeType":"YulLiteral","src":"13704:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"13675:3:51","nodeType":"YulIdentifier","src":"13675:3:51"},"nativeSrc":"13675:32:51","nodeType":"YulFunctionCall","src":"13675:32:51"},"nativeSrc":"13672:52:51","nodeType":"YulIf","src":"13672:52:51"},{"nativeSrc":"13733:14:51","nodeType":"YulVariableDeclaration","src":"13733:14:51","value":{"kind":"number","nativeSrc":"13746:1:51","nodeType":"YulLiteral","src":"13746:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"13737:5:51","nodeType":"YulTypedName","src":"13737:5:51","type":""}]},{"nativeSrc":"13756:32:51","nodeType":"YulAssignment","src":"13756:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"13778:9:51","nodeType":"YulIdentifier","src":"13778:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"13765:12:51","nodeType":"YulIdentifier","src":"13765:12:51"},"nativeSrc":"13765:23:51","nodeType":"YulFunctionCall","src":"13765:23:51"},"variableNames":[{"name":"value","nativeSrc":"13756:5:51","nodeType":"YulIdentifier","src":"13756:5:51"}]},{"nativeSrc":"13797:15:51","nodeType":"YulAssignment","src":"13797:15:51","value":{"name":"value","nativeSrc":"13807:5:51","nodeType":"YulIdentifier","src":"13807:5:51"},"variableNames":[{"name":"value0","nativeSrc":"13797:6:51","nodeType":"YulIdentifier","src":"13797:6:51"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"13592:226:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13628:9:51","nodeType":"YulTypedName","src":"13628:9:51","type":""},{"name":"dataEnd","nativeSrc":"13639:7:51","nodeType":"YulTypedName","src":"13639:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13651:6:51","nodeType":"YulTypedName","src":"13651:6:51","type":""}],"src":"13592:226:51"},{"body":{"nativeSrc":"13930:438:51","nodeType":"YulBlock","src":"13930:438:51","statements":[{"body":{"nativeSrc":"13976:16:51","nodeType":"YulBlock","src":"13976:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13985:1:51","nodeType":"YulLiteral","src":"13985:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"13988:1:51","nodeType":"YulLiteral","src":"13988:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13978:6:51","nodeType":"YulIdentifier","src":"13978:6:51"},"nativeSrc":"13978:12:51","nodeType":"YulFunctionCall","src":"13978:12:51"},"nativeSrc":"13978:12:51","nodeType":"YulExpressionStatement","src":"13978:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13951:7:51","nodeType":"YulIdentifier","src":"13951:7:51"},{"name":"headStart","nativeSrc":"13960:9:51","nodeType":"YulIdentifier","src":"13960:9:51"}],"functionName":{"name":"sub","nativeSrc":"13947:3:51","nodeType":"YulIdentifier","src":"13947:3:51"},"nativeSrc":"13947:23:51","nodeType":"YulFunctionCall","src":"13947:23:51"},{"kind":"number","nativeSrc":"13972:2:51","nodeType":"YulLiteral","src":"13972:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"13943:3:51","nodeType":"YulIdentifier","src":"13943:3:51"},"nativeSrc":"13943:32:51","nodeType":"YulFunctionCall","src":"13943:32:51"},"nativeSrc":"13940:52:51","nodeType":"YulIf","src":"13940:52:51"},{"nativeSrc":"14001:36:51","nodeType":"YulVariableDeclaration","src":"14001:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"14027:9:51","nodeType":"YulIdentifier","src":"14027:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"14014:12:51","nodeType":"YulIdentifier","src":"14014:12:51"},"nativeSrc":"14014:23:51","nodeType":"YulFunctionCall","src":"14014:23:51"},"variables":[{"name":"value","nativeSrc":"14005:5:51","nodeType":"YulTypedName","src":"14005:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14071:5:51","nodeType":"YulIdentifier","src":"14071:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"14046:24:51","nodeType":"YulIdentifier","src":"14046:24:51"},"nativeSrc":"14046:31:51","nodeType":"YulFunctionCall","src":"14046:31:51"},"nativeSrc":"14046:31:51","nodeType":"YulExpressionStatement","src":"14046:31:51"},{"nativeSrc":"14086:15:51","nodeType":"YulAssignment","src":"14086:15:51","value":{"name":"value","nativeSrc":"14096:5:51","nodeType":"YulIdentifier","src":"14096:5:51"},"variableNames":[{"name":"value0","nativeSrc":"14086:6:51","nodeType":"YulIdentifier","src":"14086:6:51"}]},{"nativeSrc":"14110:46:51","nodeType":"YulVariableDeclaration","src":"14110:46:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14141:9:51","nodeType":"YulIdentifier","src":"14141:9:51"},{"kind":"number","nativeSrc":"14152:2:51","nodeType":"YulLiteral","src":"14152:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14137:3:51","nodeType":"YulIdentifier","src":"14137:3:51"},"nativeSrc":"14137:18:51","nodeType":"YulFunctionCall","src":"14137:18:51"}],"functionName":{"name":"calldataload","nativeSrc":"14124:12:51","nodeType":"YulIdentifier","src":"14124:12:51"},"nativeSrc":"14124:32:51","nodeType":"YulFunctionCall","src":"14124:32:51"},"variables":[{"name":"offset","nativeSrc":"14114:6:51","nodeType":"YulTypedName","src":"14114:6:51","type":""}]},{"body":{"nativeSrc":"14199:16:51","nodeType":"YulBlock","src":"14199:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14208:1:51","nodeType":"YulLiteral","src":"14208:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"14211:1:51","nodeType":"YulLiteral","src":"14211:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14201:6:51","nodeType":"YulIdentifier","src":"14201:6:51"},"nativeSrc":"14201:12:51","nodeType":"YulFunctionCall","src":"14201:12:51"},"nativeSrc":"14201:12:51","nodeType":"YulExpressionStatement","src":"14201:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"14171:6:51","nodeType":"YulIdentifier","src":"14171:6:51"},{"kind":"number","nativeSrc":"14179:18:51","nodeType":"YulLiteral","src":"14179:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"14168:2:51","nodeType":"YulIdentifier","src":"14168:2:51"},"nativeSrc":"14168:30:51","nodeType":"YulFunctionCall","src":"14168:30:51"},"nativeSrc":"14165:50:51","nodeType":"YulIf","src":"14165:50:51"},{"nativeSrc":"14224:84:51","nodeType":"YulVariableDeclaration","src":"14224:84:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14280:9:51","nodeType":"YulIdentifier","src":"14280:9:51"},{"name":"offset","nativeSrc":"14291:6:51","nodeType":"YulIdentifier","src":"14291:6:51"}],"functionName":{"name":"add","nativeSrc":"14276:3:51","nodeType":"YulIdentifier","src":"14276:3:51"},"nativeSrc":"14276:22:51","nodeType":"YulFunctionCall","src":"14276:22:51"},{"name":"dataEnd","nativeSrc":"14300:7:51","nodeType":"YulIdentifier","src":"14300:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"14250:25:51","nodeType":"YulIdentifier","src":"14250:25:51"},"nativeSrc":"14250:58:51","nodeType":"YulFunctionCall","src":"14250:58:51"},"variables":[{"name":"value1_1","nativeSrc":"14228:8:51","nodeType":"YulTypedName","src":"14228:8:51","type":""},{"name":"value2_1","nativeSrc":"14238:8:51","nodeType":"YulTypedName","src":"14238:8:51","type":""}]},{"nativeSrc":"14317:18:51","nodeType":"YulAssignment","src":"14317:18:51","value":{"name":"value1_1","nativeSrc":"14327:8:51","nodeType":"YulIdentifier","src":"14327:8:51"},"variableNames":[{"name":"value1","nativeSrc":"14317:6:51","nodeType":"YulIdentifier","src":"14317:6:51"}]},{"nativeSrc":"14344:18:51","nodeType":"YulAssignment","src":"14344:18:51","value":{"name":"value2_1","nativeSrc":"14354:8:51","nodeType":"YulIdentifier","src":"14354:8:51"},"variableNames":[{"name":"value2","nativeSrc":"14344:6:51","nodeType":"YulIdentifier","src":"14344:6:51"}]}]},"name":"abi_decode_tuple_t_addresst_string_calldata_ptr","nativeSrc":"13823:545:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13880:9:51","nodeType":"YulTypedName","src":"13880:9:51","type":""},{"name":"dataEnd","nativeSrc":"13891:7:51","nodeType":"YulTypedName","src":"13891:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13903:6:51","nodeType":"YulTypedName","src":"13903:6:51","type":""},{"name":"value1","nativeSrc":"13911:6:51","nodeType":"YulTypedName","src":"13911:6:51","type":""},{"name":"value2","nativeSrc":"13919:6:51","nodeType":"YulTypedName","src":"13919:6:51","type":""}],"src":"13823:545:51"},{"body":{"nativeSrc":"14463:320:51","nodeType":"YulBlock","src":"14463:320:51","statements":[{"body":{"nativeSrc":"14509:16:51","nodeType":"YulBlock","src":"14509:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14518:1:51","nodeType":"YulLiteral","src":"14518:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"14521:1:51","nodeType":"YulLiteral","src":"14521:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14511:6:51","nodeType":"YulIdentifier","src":"14511:6:51"},"nativeSrc":"14511:12:51","nodeType":"YulFunctionCall","src":"14511:12:51"},"nativeSrc":"14511:12:51","nodeType":"YulExpressionStatement","src":"14511:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14484:7:51","nodeType":"YulIdentifier","src":"14484:7:51"},{"name":"headStart","nativeSrc":"14493:9:51","nodeType":"YulIdentifier","src":"14493:9:51"}],"functionName":{"name":"sub","nativeSrc":"14480:3:51","nodeType":"YulIdentifier","src":"14480:3:51"},"nativeSrc":"14480:23:51","nodeType":"YulFunctionCall","src":"14480:23:51"},{"kind":"number","nativeSrc":"14505:2:51","nodeType":"YulLiteral","src":"14505:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"14476:3:51","nodeType":"YulIdentifier","src":"14476:3:51"},"nativeSrc":"14476:32:51","nodeType":"YulFunctionCall","src":"14476:32:51"},"nativeSrc":"14473:52:51","nodeType":"YulIf","src":"14473:52:51"},{"nativeSrc":"14534:37:51","nodeType":"YulVariableDeclaration","src":"14534:37:51","value":{"arguments":[{"name":"headStart","nativeSrc":"14561:9:51","nodeType":"YulIdentifier","src":"14561:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"14548:12:51","nodeType":"YulIdentifier","src":"14548:12:51"},"nativeSrc":"14548:23:51","nodeType":"YulFunctionCall","src":"14548:23:51"},"variables":[{"name":"offset","nativeSrc":"14538:6:51","nodeType":"YulTypedName","src":"14538:6:51","type":""}]},{"body":{"nativeSrc":"14614:16:51","nodeType":"YulBlock","src":"14614:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14623:1:51","nodeType":"YulLiteral","src":"14623:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"14626:1:51","nodeType":"YulLiteral","src":"14626:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14616:6:51","nodeType":"YulIdentifier","src":"14616:6:51"},"nativeSrc":"14616:12:51","nodeType":"YulFunctionCall","src":"14616:12:51"},"nativeSrc":"14616:12:51","nodeType":"YulExpressionStatement","src":"14616:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"14586:6:51","nodeType":"YulIdentifier","src":"14586:6:51"},{"kind":"number","nativeSrc":"14594:18:51","nodeType":"YulLiteral","src":"14594:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"14583:2:51","nodeType":"YulIdentifier","src":"14583:2:51"},"nativeSrc":"14583:30:51","nodeType":"YulFunctionCall","src":"14583:30:51"},"nativeSrc":"14580:50:51","nodeType":"YulIf","src":"14580:50:51"},{"nativeSrc":"14639:84:51","nodeType":"YulVariableDeclaration","src":"14639:84:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14695:9:51","nodeType":"YulIdentifier","src":"14695:9:51"},{"name":"offset","nativeSrc":"14706:6:51","nodeType":"YulIdentifier","src":"14706:6:51"}],"functionName":{"name":"add","nativeSrc":"14691:3:51","nodeType":"YulIdentifier","src":"14691:3:51"},"nativeSrc":"14691:22:51","nodeType":"YulFunctionCall","src":"14691:22:51"},{"name":"dataEnd","nativeSrc":"14715:7:51","nodeType":"YulIdentifier","src":"14715:7:51"}],"functionName":{"name":"abi_decode_bytes_calldata","nativeSrc":"14665:25:51","nodeType":"YulIdentifier","src":"14665:25:51"},"nativeSrc":"14665:58:51","nodeType":"YulFunctionCall","src":"14665:58:51"},"variables":[{"name":"value0_1","nativeSrc":"14643:8:51","nodeType":"YulTypedName","src":"14643:8:51","type":""},{"name":"value1_1","nativeSrc":"14653:8:51","nodeType":"YulTypedName","src":"14653:8:51","type":""}]},{"nativeSrc":"14732:18:51","nodeType":"YulAssignment","src":"14732:18:51","value":{"name":"value0_1","nativeSrc":"14742:8:51","nodeType":"YulIdentifier","src":"14742:8:51"},"variableNames":[{"name":"value0","nativeSrc":"14732:6:51","nodeType":"YulIdentifier","src":"14732:6:51"}]},{"nativeSrc":"14759:18:51","nodeType":"YulAssignment","src":"14759:18:51","value":{"name":"value1_1","nativeSrc":"14769:8:51","nodeType":"YulIdentifier","src":"14769:8:51"},"variableNames":[{"name":"value1","nativeSrc":"14759:6:51","nodeType":"YulIdentifier","src":"14759:6:51"}]}]},"name":"abi_decode_tuple_t_string_calldata_ptr","nativeSrc":"14373:410:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14421:9:51","nodeType":"YulTypedName","src":"14421:9:51","type":""},{"name":"dataEnd","nativeSrc":"14432:7:51","nodeType":"YulTypedName","src":"14432:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14444:6:51","nodeType":"YulTypedName","src":"14444:6:51","type":""},{"name":"value1","nativeSrc":"14452:6:51","nodeType":"YulTypedName","src":"14452:6:51","type":""}],"src":"14373:410:51"},{"body":{"nativeSrc":"14843:325:51","nodeType":"YulBlock","src":"14843:325:51","statements":[{"nativeSrc":"14853:22:51","nodeType":"YulAssignment","src":"14853:22:51","value":{"arguments":[{"kind":"number","nativeSrc":"14867:1:51","nodeType":"YulLiteral","src":"14867:1:51","type":"","value":"1"},{"name":"data","nativeSrc":"14870:4:51","nodeType":"YulIdentifier","src":"14870:4:51"}],"functionName":{"name":"shr","nativeSrc":"14863:3:51","nodeType":"YulIdentifier","src":"14863:3:51"},"nativeSrc":"14863:12:51","nodeType":"YulFunctionCall","src":"14863:12:51"},"variableNames":[{"name":"length","nativeSrc":"14853:6:51","nodeType":"YulIdentifier","src":"14853:6:51"}]},{"nativeSrc":"14884:38:51","nodeType":"YulVariableDeclaration","src":"14884:38:51","value":{"arguments":[{"name":"data","nativeSrc":"14914:4:51","nodeType":"YulIdentifier","src":"14914:4:51"},{"kind":"number","nativeSrc":"14920:1:51","nodeType":"YulLiteral","src":"14920:1:51","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"14910:3:51","nodeType":"YulIdentifier","src":"14910:3:51"},"nativeSrc":"14910:12:51","nodeType":"YulFunctionCall","src":"14910:12:51"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"14888:18:51","nodeType":"YulTypedName","src":"14888:18:51","type":""}]},{"body":{"nativeSrc":"14961:31:51","nodeType":"YulBlock","src":"14961:31:51","statements":[{"nativeSrc":"14963:27:51","nodeType":"YulAssignment","src":"14963:27:51","value":{"arguments":[{"name":"length","nativeSrc":"14977:6:51","nodeType":"YulIdentifier","src":"14977:6:51"},{"kind":"number","nativeSrc":"14985:4:51","nodeType":"YulLiteral","src":"14985:4:51","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"14973:3:51","nodeType":"YulIdentifier","src":"14973:3:51"},"nativeSrc":"14973:17:51","nodeType":"YulFunctionCall","src":"14973:17:51"},"variableNames":[{"name":"length","nativeSrc":"14963:6:51","nodeType":"YulIdentifier","src":"14963:6:51"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"14941:18:51","nodeType":"YulIdentifier","src":"14941:18:51"}],"functionName":{"name":"iszero","nativeSrc":"14934:6:51","nodeType":"YulIdentifier","src":"14934:6:51"},"nativeSrc":"14934:26:51","nodeType":"YulFunctionCall","src":"14934:26:51"},"nativeSrc":"14931:61:51","nodeType":"YulIf","src":"14931:61:51"},{"body":{"nativeSrc":"15051:111:51","nodeType":"YulBlock","src":"15051:111:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15072:1:51","nodeType":"YulLiteral","src":"15072:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"15079:3:51","nodeType":"YulLiteral","src":"15079:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"15084:10:51","nodeType":"YulLiteral","src":"15084:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"15075:3:51","nodeType":"YulIdentifier","src":"15075:3:51"},"nativeSrc":"15075:20:51","nodeType":"YulFunctionCall","src":"15075:20:51"}],"functionName":{"name":"mstore","nativeSrc":"15065:6:51","nodeType":"YulIdentifier","src":"15065:6:51"},"nativeSrc":"15065:31:51","nodeType":"YulFunctionCall","src":"15065:31:51"},"nativeSrc":"15065:31:51","nodeType":"YulExpressionStatement","src":"15065:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"15116:1:51","nodeType":"YulLiteral","src":"15116:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"15119:4:51","nodeType":"YulLiteral","src":"15119:4:51","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"15109:6:51","nodeType":"YulIdentifier","src":"15109:6:51"},"nativeSrc":"15109:15:51","nodeType":"YulFunctionCall","src":"15109:15:51"},"nativeSrc":"15109:15:51","nodeType":"YulExpressionStatement","src":"15109:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"15144:1:51","nodeType":"YulLiteral","src":"15144:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"15147:4:51","nodeType":"YulLiteral","src":"15147:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"15137:6:51","nodeType":"YulIdentifier","src":"15137:6:51"},"nativeSrc":"15137:15:51","nodeType":"YulFunctionCall","src":"15137:15:51"},"nativeSrc":"15137:15:51","nodeType":"YulExpressionStatement","src":"15137:15:51"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"15007:18:51","nodeType":"YulIdentifier","src":"15007:18:51"},{"arguments":[{"name":"length","nativeSrc":"15030:6:51","nodeType":"YulIdentifier","src":"15030:6:51"},{"kind":"number","nativeSrc":"15038:2:51","nodeType":"YulLiteral","src":"15038:2:51","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"15027:2:51","nodeType":"YulIdentifier","src":"15027:2:51"},"nativeSrc":"15027:14:51","nodeType":"YulFunctionCall","src":"15027:14:51"}],"functionName":{"name":"eq","nativeSrc":"15004:2:51","nodeType":"YulIdentifier","src":"15004:2:51"},"nativeSrc":"15004:38:51","nodeType":"YulFunctionCall","src":"15004:38:51"},"nativeSrc":"15001:161:51","nodeType":"YulIf","src":"15001:161:51"}]},"name":"extract_byte_array_length","nativeSrc":"14788:380:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"14823:4:51","nodeType":"YulTypedName","src":"14823:4:51","type":""}],"returnVariables":[{"name":"length","nativeSrc":"14832:6:51","nodeType":"YulTypedName","src":"14832:6:51","type":""}],"src":"14788:380:51"},{"body":{"nativeSrc":"15430:214:51","nodeType":"YulBlock","src":"15430:214:51","statements":[{"nativeSrc":"15440:26:51","nodeType":"YulAssignment","src":"15440:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"15452:9:51","nodeType":"YulIdentifier","src":"15452:9:51"},{"kind":"number","nativeSrc":"15463:2:51","nodeType":"YulLiteral","src":"15463:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15448:3:51","nodeType":"YulIdentifier","src":"15448:3:51"},"nativeSrc":"15448:18:51","nodeType":"YulFunctionCall","src":"15448:18:51"},"variableNames":[{"name":"tail","nativeSrc":"15440:4:51","nodeType":"YulIdentifier","src":"15440:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15482:9:51","nodeType":"YulIdentifier","src":"15482:9:51"},{"arguments":[{"name":"value0","nativeSrc":"15497:6:51","nodeType":"YulIdentifier","src":"15497:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"15513:3:51","nodeType":"YulLiteral","src":"15513:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"15518:1:51","nodeType":"YulLiteral","src":"15518:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"15509:3:51","nodeType":"YulIdentifier","src":"15509:3:51"},"nativeSrc":"15509:11:51","nodeType":"YulFunctionCall","src":"15509:11:51"},{"kind":"number","nativeSrc":"15522:1:51","nodeType":"YulLiteral","src":"15522:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"15505:3:51","nodeType":"YulIdentifier","src":"15505:3:51"},"nativeSrc":"15505:19:51","nodeType":"YulFunctionCall","src":"15505:19:51"}],"functionName":{"name":"and","nativeSrc":"15493:3:51","nodeType":"YulIdentifier","src":"15493:3:51"},"nativeSrc":"15493:32:51","nodeType":"YulFunctionCall","src":"15493:32:51"}],"functionName":{"name":"mstore","nativeSrc":"15475:6:51","nodeType":"YulIdentifier","src":"15475:6:51"},"nativeSrc":"15475:51:51","nodeType":"YulFunctionCall","src":"15475:51:51"},"nativeSrc":"15475:51:51","nodeType":"YulExpressionStatement","src":"15475:51:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15546:9:51","nodeType":"YulIdentifier","src":"15546:9:51"},{"kind":"number","nativeSrc":"15557:2:51","nodeType":"YulLiteral","src":"15557:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15542:3:51","nodeType":"YulIdentifier","src":"15542:3:51"},"nativeSrc":"15542:18:51","nodeType":"YulFunctionCall","src":"15542:18:51"},{"arguments":[{"name":"value1","nativeSrc":"15566:6:51","nodeType":"YulIdentifier","src":"15566:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"15582:3:51","nodeType":"YulLiteral","src":"15582:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"15587:1:51","nodeType":"YulLiteral","src":"15587:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"15578:3:51","nodeType":"YulIdentifier","src":"15578:3:51"},"nativeSrc":"15578:11:51","nodeType":"YulFunctionCall","src":"15578:11:51"},{"kind":"number","nativeSrc":"15591:1:51","nodeType":"YulLiteral","src":"15591:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"15574:3:51","nodeType":"YulIdentifier","src":"15574:3:51"},"nativeSrc":"15574:19:51","nodeType":"YulFunctionCall","src":"15574:19:51"}],"functionName":{"name":"and","nativeSrc":"15562:3:51","nodeType":"YulIdentifier","src":"15562:3:51"},"nativeSrc":"15562:32:51","nodeType":"YulFunctionCall","src":"15562:32:51"}],"functionName":{"name":"mstore","nativeSrc":"15535:6:51","nodeType":"YulIdentifier","src":"15535:6:51"},"nativeSrc":"15535:60:51","nodeType":"YulFunctionCall","src":"15535:60:51"},"nativeSrc":"15535:60:51","nodeType":"YulExpressionStatement","src":"15535:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15615:9:51","nodeType":"YulIdentifier","src":"15615:9:51"},{"kind":"number","nativeSrc":"15626:2:51","nodeType":"YulLiteral","src":"15626:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15611:3:51","nodeType":"YulIdentifier","src":"15611:3:51"},"nativeSrc":"15611:18:51","nodeType":"YulFunctionCall","src":"15611:18:51"},{"name":"value2","nativeSrc":"15631:6:51","nodeType":"YulIdentifier","src":"15631:6:51"}],"functionName":{"name":"mstore","nativeSrc":"15604:6:51","nodeType":"YulIdentifier","src":"15604:6:51"},"nativeSrc":"15604:34:51","nodeType":"YulFunctionCall","src":"15604:34:51"},"nativeSrc":"15604:34:51","nodeType":"YulExpressionStatement","src":"15604:34:51"}]},"name":"abi_encode_tuple_t_contract$_WitOracle_$9767_t_contract$_IWitOracleRadonRequestModal_$10613_t_userDefinedValueType$_TransactionHash_$13108__to_t_address_t_address_t_bytes32__fromStack_library_reversed","nativeSrc":"15173:471:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15383:9:51","nodeType":"YulTypedName","src":"15383:9:51","type":""},{"name":"value2","nativeSrc":"15394:6:51","nodeType":"YulTypedName","src":"15394:6:51","type":""},{"name":"value1","nativeSrc":"15402:6:51","nodeType":"YulTypedName","src":"15402:6:51","type":""},{"name":"value0","nativeSrc":"15410:6:51","nodeType":"YulTypedName","src":"15410:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15421:4:51","nodeType":"YulTypedName","src":"15421:4:51","type":""}],"src":"15173:471:51"},{"body":{"nativeSrc":"15730:149:51","nodeType":"YulBlock","src":"15730:149:51","statements":[{"body":{"nativeSrc":"15776:16:51","nodeType":"YulBlock","src":"15776:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15785:1:51","nodeType":"YulLiteral","src":"15785:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"15788:1:51","nodeType":"YulLiteral","src":"15788:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"15778:6:51","nodeType":"YulIdentifier","src":"15778:6:51"},"nativeSrc":"15778:12:51","nodeType":"YulFunctionCall","src":"15778:12:51"},"nativeSrc":"15778:12:51","nodeType":"YulExpressionStatement","src":"15778:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"15751:7:51","nodeType":"YulIdentifier","src":"15751:7:51"},{"name":"headStart","nativeSrc":"15760:9:51","nodeType":"YulIdentifier","src":"15760:9:51"}],"functionName":{"name":"sub","nativeSrc":"15747:3:51","nodeType":"YulIdentifier","src":"15747:3:51"},"nativeSrc":"15747:23:51","nodeType":"YulFunctionCall","src":"15747:23:51"},{"kind":"number","nativeSrc":"15772:2:51","nodeType":"YulLiteral","src":"15772:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"15743:3:51","nodeType":"YulIdentifier","src":"15743:3:51"},"nativeSrc":"15743:32:51","nodeType":"YulFunctionCall","src":"15743:32:51"},"nativeSrc":"15740:52:51","nodeType":"YulIf","src":"15740:52:51"},{"nativeSrc":"15801:14:51","nodeType":"YulVariableDeclaration","src":"15801:14:51","value":{"kind":"number","nativeSrc":"15814:1:51","nodeType":"YulLiteral","src":"15814:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"15805:5:51","nodeType":"YulTypedName","src":"15805:5:51","type":""}]},{"nativeSrc":"15824:25:51","nodeType":"YulAssignment","src":"15824:25:51","value":{"arguments":[{"name":"headStart","nativeSrc":"15839:9:51","nodeType":"YulIdentifier","src":"15839:9:51"}],"functionName":{"name":"mload","nativeSrc":"15833:5:51","nodeType":"YulIdentifier","src":"15833:5:51"},"nativeSrc":"15833:16:51","nodeType":"YulFunctionCall","src":"15833:16:51"},"variableNames":[{"name":"value","nativeSrc":"15824:5:51","nodeType":"YulIdentifier","src":"15824:5:51"}]},{"nativeSrc":"15858:15:51","nodeType":"YulAssignment","src":"15858:15:51","value":{"name":"value","nativeSrc":"15868:5:51","nodeType":"YulIdentifier","src":"15868:5:51"},"variableNames":[{"name":"value0","nativeSrc":"15858:6:51","nodeType":"YulIdentifier","src":"15858:6:51"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"15649:230:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15696:9:51","nodeType":"YulTypedName","src":"15696:9:51","type":""},{"name":"dataEnd","nativeSrc":"15707:7:51","nodeType":"YulTypedName","src":"15707:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"15719:6:51","nodeType":"YulTypedName","src":"15719:6:51","type":""}],"src":"15649:230:51"},{"body":{"nativeSrc":"16058:164:51","nodeType":"YulBlock","src":"16058:164:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16075:9:51","nodeType":"YulIdentifier","src":"16075:9:51"},{"kind":"number","nativeSrc":"16086:2:51","nodeType":"YulLiteral","src":"16086:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"16068:6:51","nodeType":"YulIdentifier","src":"16068:6:51"},"nativeSrc":"16068:21:51","nodeType":"YulFunctionCall","src":"16068:21:51"},"nativeSrc":"16068:21:51","nodeType":"YulExpressionStatement","src":"16068:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16109:9:51","nodeType":"YulIdentifier","src":"16109:9:51"},{"kind":"number","nativeSrc":"16120:2:51","nodeType":"YulLiteral","src":"16120:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16105:3:51","nodeType":"YulIdentifier","src":"16105:3:51"},"nativeSrc":"16105:18:51","nodeType":"YulFunctionCall","src":"16105:18:51"},{"kind":"number","nativeSrc":"16125:2:51","nodeType":"YulLiteral","src":"16125:2:51","type":"","value":"14"}],"functionName":{"name":"mstore","nativeSrc":"16098:6:51","nodeType":"YulIdentifier","src":"16098:6:51"},"nativeSrc":"16098:30:51","nodeType":"YulFunctionCall","src":"16098:30:51"},"nativeSrc":"16098:30:51","nodeType":"YulExpressionStatement","src":"16098:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16148:9:51","nodeType":"YulIdentifier","src":"16148:9:51"},{"kind":"number","nativeSrc":"16159:2:51","nodeType":"YulLiteral","src":"16159:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16144:3:51","nodeType":"YulIdentifier","src":"16144:3:51"},"nativeSrc":"16144:18:51","nodeType":"YulFunctionCall","src":"16144:18:51"},{"hexValue":"616c7265616479206d696e746564","kind":"string","nativeSrc":"16164:16:51","nodeType":"YulLiteral","src":"16164:16:51","type":"","value":"already minted"}],"functionName":{"name":"mstore","nativeSrc":"16137:6:51","nodeType":"YulIdentifier","src":"16137:6:51"},"nativeSrc":"16137:44:51","nodeType":"YulFunctionCall","src":"16137:44:51"},"nativeSrc":"16137:44:51","nodeType":"YulExpressionStatement","src":"16137:44:51"},{"nativeSrc":"16190:26:51","nodeType":"YulAssignment","src":"16190:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"16202:9:51","nodeType":"YulIdentifier","src":"16202:9:51"},{"kind":"number","nativeSrc":"16213:2:51","nodeType":"YulLiteral","src":"16213:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16198:3:51","nodeType":"YulIdentifier","src":"16198:3:51"},"nativeSrc":"16198:18:51","nodeType":"YulFunctionCall","src":"16198:18:51"},"variableNames":[{"name":"tail","nativeSrc":"16190:4:51","nodeType":"YulIdentifier","src":"16190:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_fc1d79576d9c1e03d6ff90e81fd853c5eac89b9ed9cb54114db3e1e1ab962297__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"15884:338:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16035:9:51","nodeType":"YulTypedName","src":"16035:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16049:4:51","nodeType":"YulTypedName","src":"16049:4:51","type":""}],"src":"15884:338:51"},{"body":{"nativeSrc":"16271:73:51","nodeType":"YulBlock","src":"16271:73:51","statements":[{"body":{"nativeSrc":"16322:16:51","nodeType":"YulBlock","src":"16322:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16331:1:51","nodeType":"YulLiteral","src":"16331:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"16334:1:51","nodeType":"YulLiteral","src":"16334:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16324:6:51","nodeType":"YulIdentifier","src":"16324:6:51"},"nativeSrc":"16324:12:51","nodeType":"YulFunctionCall","src":"16324:12:51"},"nativeSrc":"16324:12:51","nodeType":"YulExpressionStatement","src":"16324:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"16294:5:51","nodeType":"YulIdentifier","src":"16294:5:51"},{"arguments":[{"name":"value","nativeSrc":"16305:5:51","nodeType":"YulIdentifier","src":"16305:5:51"},{"kind":"number","nativeSrc":"16312:6:51","nodeType":"YulLiteral","src":"16312:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"16301:3:51","nodeType":"YulIdentifier","src":"16301:3:51"},"nativeSrc":"16301:18:51","nodeType":"YulFunctionCall","src":"16301:18:51"}],"functionName":{"name":"eq","nativeSrc":"16291:2:51","nodeType":"YulIdentifier","src":"16291:2:51"},"nativeSrc":"16291:29:51","nodeType":"YulFunctionCall","src":"16291:29:51"}],"functionName":{"name":"iszero","nativeSrc":"16284:6:51","nodeType":"YulIdentifier","src":"16284:6:51"},"nativeSrc":"16284:37:51","nodeType":"YulFunctionCall","src":"16284:37:51"},"nativeSrc":"16281:57:51","nodeType":"YulIf","src":"16281:57:51"}]},"name":"validator_revert_uint16","nativeSrc":"16227:117:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"16260:5:51","nodeType":"YulTypedName","src":"16260:5:51","type":""}],"src":"16227:117:51"},{"body":{"nativeSrc":"16418:176:51","nodeType":"YulBlock","src":"16418:176:51","statements":[{"body":{"nativeSrc":"16464:16:51","nodeType":"YulBlock","src":"16464:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16473:1:51","nodeType":"YulLiteral","src":"16473:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"16476:1:51","nodeType":"YulLiteral","src":"16476:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16466:6:51","nodeType":"YulIdentifier","src":"16466:6:51"},"nativeSrc":"16466:12:51","nodeType":"YulFunctionCall","src":"16466:12:51"},"nativeSrc":"16466:12:51","nodeType":"YulExpressionStatement","src":"16466:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"16439:7:51","nodeType":"YulIdentifier","src":"16439:7:51"},{"name":"headStart","nativeSrc":"16448:9:51","nodeType":"YulIdentifier","src":"16448:9:51"}],"functionName":{"name":"sub","nativeSrc":"16435:3:51","nodeType":"YulIdentifier","src":"16435:3:51"},"nativeSrc":"16435:23:51","nodeType":"YulFunctionCall","src":"16435:23:51"},{"kind":"number","nativeSrc":"16460:2:51","nodeType":"YulLiteral","src":"16460:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"16431:3:51","nodeType":"YulIdentifier","src":"16431:3:51"},"nativeSrc":"16431:32:51","nodeType":"YulFunctionCall","src":"16431:32:51"},"nativeSrc":"16428:52:51","nodeType":"YulIf","src":"16428:52:51"},{"nativeSrc":"16489:36:51","nodeType":"YulVariableDeclaration","src":"16489:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"16515:9:51","nodeType":"YulIdentifier","src":"16515:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"16502:12:51","nodeType":"YulIdentifier","src":"16502:12:51"},"nativeSrc":"16502:23:51","nodeType":"YulFunctionCall","src":"16502:23:51"},"variables":[{"name":"value","nativeSrc":"16493:5:51","nodeType":"YulTypedName","src":"16493:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"16558:5:51","nodeType":"YulIdentifier","src":"16558:5:51"}],"functionName":{"name":"validator_revert_uint16","nativeSrc":"16534:23:51","nodeType":"YulIdentifier","src":"16534:23:51"},"nativeSrc":"16534:30:51","nodeType":"YulFunctionCall","src":"16534:30:51"},"nativeSrc":"16534:30:51","nodeType":"YulExpressionStatement","src":"16534:30:51"},{"nativeSrc":"16573:15:51","nodeType":"YulAssignment","src":"16573:15:51","value":{"name":"value","nativeSrc":"16583:5:51","nodeType":"YulIdentifier","src":"16583:5:51"},"variableNames":[{"name":"value0","nativeSrc":"16573:6:51","nodeType":"YulIdentifier","src":"16573:6:51"}]}]},"name":"abi_decode_tuple_t_uint16","nativeSrc":"16349:245:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16384:9:51","nodeType":"YulTypedName","src":"16384:9:51","type":""},{"name":"dataEnd","nativeSrc":"16395:7:51","nodeType":"YulTypedName","src":"16395:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"16407:6:51","nodeType":"YulTypedName","src":"16407:6:51","type":""}],"src":"16349:245:51"},{"body":{"nativeSrc":"16675:424:51","nodeType":"YulBlock","src":"16675:424:51","statements":[{"nativeSrc":"16685:43:51","nodeType":"YulVariableDeclaration","src":"16685:43:51","value":{"arguments":[{"name":"ptr","nativeSrc":"16724:3:51","nodeType":"YulIdentifier","src":"16724:3:51"}],"functionName":{"name":"calldataload","nativeSrc":"16711:12:51","nodeType":"YulIdentifier","src":"16711:12:51"},"nativeSrc":"16711:17:51","nodeType":"YulFunctionCall","src":"16711:17:51"},"variables":[{"name":"rel_offset_of_tail","nativeSrc":"16689:18:51","nodeType":"YulTypedName","src":"16689:18:51","type":""}]},{"body":{"nativeSrc":"16817:16:51","nodeType":"YulBlock","src":"16817:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16826:1:51","nodeType":"YulLiteral","src":"16826:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"16829:1:51","nodeType":"YulLiteral","src":"16829:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"16819:6:51","nodeType":"YulIdentifier","src":"16819:6:51"},"nativeSrc":"16819:12:51","nodeType":"YulFunctionCall","src":"16819:12:51"},"nativeSrc":"16819:12:51","nodeType":"YulExpressionStatement","src":"16819:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"16751:18:51","nodeType":"YulIdentifier","src":"16751:18:51"},{"arguments":[{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"16779:12:51","nodeType":"YulIdentifier","src":"16779:12:51"},"nativeSrc":"16779:14:51","nodeType":"YulFunctionCall","src":"16779:14:51"},{"name":"base_ref","nativeSrc":"16795:8:51","nodeType":"YulIdentifier","src":"16795:8:51"}],"functionName":{"name":"sub","nativeSrc":"16775:3:51","nodeType":"YulIdentifier","src":"16775:3:51"},"nativeSrc":"16775:29:51","nodeType":"YulFunctionCall","src":"16775:29:51"},{"arguments":[{"kind":"number","nativeSrc":"16810:2:51","nodeType":"YulLiteral","src":"16810:2:51","type":"","value":"30"}],"functionName":{"name":"not","nativeSrc":"16806:3:51","nodeType":"YulIdentifier","src":"16806:3:51"},"nativeSrc":"16806:7:51","nodeType":"YulFunctionCall","src":"16806:7:51"}],"functionName":{"name":"add","nativeSrc":"16771:3:51","nodeType":"YulIdentifier","src":"16771:3:51"},"nativeSrc":"16771:43:51","nodeType":"YulFunctionCall","src":"16771:43:51"}],"functionName":{"name":"slt","nativeSrc":"16747:3:51","nodeType":"YulIdentifier","src":"16747:3:51"},"nativeSrc":"16747:68:51","nodeType":"YulFunctionCall","src":"16747:68:51"}],"functionName":{"name":"iszero","nativeSrc":"16740:6:51","nodeType":"YulIdentifier","src":"16740:6:51"},"nativeSrc":"16740:76:51","nodeType":"YulFunctionCall","src":"16740:76:51"},"nativeSrc":"16737:96:51","nodeType":"YulIf","src":"16737:96:51"},{"nativeSrc":"16842:48:51","nodeType":"YulVariableDeclaration","src":"16842:48:51","value":{"arguments":[{"name":"rel_offset_of_tail","nativeSrc":"16861:18:51","nodeType":"YulIdentifier","src":"16861:18:51"},{"name":"base_ref","nativeSrc":"16881:8:51","nodeType":"YulIdentifier","src":"16881:8:51"}],"functionName":{"name":"add","nativeSrc":"16857:3:51","nodeType":"YulIdentifier","src":"16857:3:51"},"nativeSrc":"16857:33:51","nodeType":"YulFunctionCall","src":"16857:33:51"},"variables":[{"name":"value_1","nativeSrc":"16846:7:51","nodeType":"YulTypedName","src":"16846:7:51","type":""}]},{"nativeSrc":"16899:31:51","nodeType":"YulAssignment","src":"16899:31:51","value":{"arguments":[{"name":"value_1","nativeSrc":"16922:7:51","nodeType":"YulIdentifier","src":"16922:7:51"}],"functionName":{"name":"calldataload","nativeSrc":"16909:12:51","nodeType":"YulIdentifier","src":"16909:12:51"},"nativeSrc":"16909:21:51","nodeType":"YulFunctionCall","src":"16909:21:51"},"variableNames":[{"name":"length","nativeSrc":"16899:6:51","nodeType":"YulIdentifier","src":"16899:6:51"}]},{"nativeSrc":"16939:27:51","nodeType":"YulAssignment","src":"16939:27:51","value":{"arguments":[{"name":"value_1","nativeSrc":"16952:7:51","nodeType":"YulIdentifier","src":"16952:7:51"},{"kind":"number","nativeSrc":"16961:4:51","nodeType":"YulLiteral","src":"16961:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"16948:3:51","nodeType":"YulIdentifier","src":"16948:3:51"},"nativeSrc":"16948:18:51","nodeType":"YulFunctionCall","src":"16948:18:51"},"variableNames":[{"name":"value","nativeSrc":"16939:5:51","nodeType":"YulIdentifier","src":"16939:5:51"}]},{"body":{"nativeSrc":"17009:16:51","nodeType":"YulBlock","src":"17009:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17018:1:51","nodeType":"YulLiteral","src":"17018:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"17021:1:51","nodeType":"YulLiteral","src":"17021:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17011:6:51","nodeType":"YulIdentifier","src":"17011:6:51"},"nativeSrc":"17011:12:51","nodeType":"YulFunctionCall","src":"17011:12:51"},"nativeSrc":"17011:12:51","nodeType":"YulExpressionStatement","src":"17011:12:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"16981:6:51","nodeType":"YulIdentifier","src":"16981:6:51"},{"kind":"number","nativeSrc":"16989:18:51","nodeType":"YulLiteral","src":"16989:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"16978:2:51","nodeType":"YulIdentifier","src":"16978:2:51"},"nativeSrc":"16978:30:51","nodeType":"YulFunctionCall","src":"16978:30:51"},"nativeSrc":"16975:50:51","nodeType":"YulIf","src":"16975:50:51"},{"body":{"nativeSrc":"17077:16:51","nodeType":"YulBlock","src":"17077:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17086:1:51","nodeType":"YulLiteral","src":"17086:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"17089:1:51","nodeType":"YulLiteral","src":"17089:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"17079:6:51","nodeType":"YulIdentifier","src":"17079:6:51"},"nativeSrc":"17079:12:51","nodeType":"YulFunctionCall","src":"17079:12:51"},"nativeSrc":"17079:12:51","nodeType":"YulExpressionStatement","src":"17079:12:51"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"17041:5:51","nodeType":"YulIdentifier","src":"17041:5:51"},{"arguments":[{"arguments":[],"functionName":{"name":"calldatasize","nativeSrc":"17052:12:51","nodeType":"YulIdentifier","src":"17052:12:51"},"nativeSrc":"17052:14:51","nodeType":"YulFunctionCall","src":"17052:14:51"},{"name":"length","nativeSrc":"17068:6:51","nodeType":"YulIdentifier","src":"17068:6:51"}],"functionName":{"name":"sub","nativeSrc":"17048:3:51","nodeType":"YulIdentifier","src":"17048:3:51"},"nativeSrc":"17048:27:51","nodeType":"YulFunctionCall","src":"17048:27:51"}],"functionName":{"name":"sgt","nativeSrc":"17037:3:51","nodeType":"YulIdentifier","src":"17037:3:51"},"nativeSrc":"17037:39:51","nodeType":"YulFunctionCall","src":"17037:39:51"},"nativeSrc":"17034:59:51","nodeType":"YulIf","src":"17034:59:51"}]},"name":"calldata_access_bytes_calldata","nativeSrc":"16599:500:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"base_ref","nativeSrc":"16639:8:51","nodeType":"YulTypedName","src":"16639:8:51","type":""},{"name":"ptr","nativeSrc":"16649:3:51","nodeType":"YulTypedName","src":"16649:3:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"16657:5:51","nodeType":"YulTypedName","src":"16657:5:51","type":""},{"name":"length","nativeSrc":"16664:6:51","nodeType":"YulTypedName","src":"16664:6:51","type":""}],"src":"16599:500:51"},{"body":{"nativeSrc":"17170:200:51","nodeType":"YulBlock","src":"17170:200:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"17187:3:51","nodeType":"YulIdentifier","src":"17187:3:51"},{"name":"length","nativeSrc":"17192:6:51","nodeType":"YulIdentifier","src":"17192:6:51"}],"functionName":{"name":"mstore","nativeSrc":"17180:6:51","nodeType":"YulIdentifier","src":"17180:6:51"},"nativeSrc":"17180:19:51","nodeType":"YulFunctionCall","src":"17180:19:51"},"nativeSrc":"17180:19:51","nodeType":"YulExpressionStatement","src":"17180:19:51"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"17225:3:51","nodeType":"YulIdentifier","src":"17225:3:51"},{"kind":"number","nativeSrc":"17230:4:51","nodeType":"YulLiteral","src":"17230:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17221:3:51","nodeType":"YulIdentifier","src":"17221:3:51"},"nativeSrc":"17221:14:51","nodeType":"YulFunctionCall","src":"17221:14:51"},{"name":"start","nativeSrc":"17237:5:51","nodeType":"YulIdentifier","src":"17237:5:51"},{"name":"length","nativeSrc":"17244:6:51","nodeType":"YulIdentifier","src":"17244:6:51"}],"functionName":{"name":"calldatacopy","nativeSrc":"17208:12:51","nodeType":"YulIdentifier","src":"17208:12:51"},"nativeSrc":"17208:43:51","nodeType":"YulFunctionCall","src":"17208:43:51"},"nativeSrc":"17208:43:51","nodeType":"YulExpressionStatement","src":"17208:43:51"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"17275:3:51","nodeType":"YulIdentifier","src":"17275:3:51"},{"name":"length","nativeSrc":"17280:6:51","nodeType":"YulIdentifier","src":"17280:6:51"}],"functionName":{"name":"add","nativeSrc":"17271:3:51","nodeType":"YulIdentifier","src":"17271:3:51"},"nativeSrc":"17271:16:51","nodeType":"YulFunctionCall","src":"17271:16:51"},{"kind":"number","nativeSrc":"17289:4:51","nodeType":"YulLiteral","src":"17289:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17267:3:51","nodeType":"YulIdentifier","src":"17267:3:51"},"nativeSrc":"17267:27:51","nodeType":"YulFunctionCall","src":"17267:27:51"},{"kind":"number","nativeSrc":"17296:1:51","nodeType":"YulLiteral","src":"17296:1:51","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"17260:6:51","nodeType":"YulIdentifier","src":"17260:6:51"},"nativeSrc":"17260:38:51","nodeType":"YulFunctionCall","src":"17260:38:51"},"nativeSrc":"17260:38:51","nodeType":"YulExpressionStatement","src":"17260:38:51"},{"nativeSrc":"17307:57:51","nodeType":"YulAssignment","src":"17307:57:51","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"17322:3:51","nodeType":"YulIdentifier","src":"17322:3:51"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"17335:6:51","nodeType":"YulIdentifier","src":"17335:6:51"},{"kind":"number","nativeSrc":"17343:2:51","nodeType":"YulLiteral","src":"17343:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"17331:3:51","nodeType":"YulIdentifier","src":"17331:3:51"},"nativeSrc":"17331:15:51","nodeType":"YulFunctionCall","src":"17331:15:51"},{"arguments":[{"kind":"number","nativeSrc":"17352:2:51","nodeType":"YulLiteral","src":"17352:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"17348:3:51","nodeType":"YulIdentifier","src":"17348:3:51"},"nativeSrc":"17348:7:51","nodeType":"YulFunctionCall","src":"17348:7:51"}],"functionName":{"name":"and","nativeSrc":"17327:3:51","nodeType":"YulIdentifier","src":"17327:3:51"},"nativeSrc":"17327:29:51","nodeType":"YulFunctionCall","src":"17327:29:51"}],"functionName":{"name":"add","nativeSrc":"17318:3:51","nodeType":"YulIdentifier","src":"17318:3:51"},"nativeSrc":"17318:39:51","nodeType":"YulFunctionCall","src":"17318:39:51"},{"kind":"number","nativeSrc":"17359:4:51","nodeType":"YulLiteral","src":"17359:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17314:3:51","nodeType":"YulIdentifier","src":"17314:3:51"},"nativeSrc":"17314:50:51","nodeType":"YulFunctionCall","src":"17314:50:51"},"variableNames":[{"name":"end","nativeSrc":"17307:3:51","nodeType":"YulIdentifier","src":"17307:3:51"}]}]},"name":"abi_encode_bytes_calldata","nativeSrc":"17104:266:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"start","nativeSrc":"17139:5:51","nodeType":"YulTypedName","src":"17139:5:51","type":""},{"name":"length","nativeSrc":"17146:6:51","nodeType":"YulTypedName","src":"17146:6:51","type":""},{"name":"pos","nativeSrc":"17154:3:51","nodeType":"YulTypedName","src":"17154:3:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"17162:3:51","nodeType":"YulTypedName","src":"17162:3:51","type":""}],"src":"17104:266:51"},{"body":{"nativeSrc":"17600:1215:51","nodeType":"YulBlock","src":"17600:1215:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17617:9:51","nodeType":"YulIdentifier","src":"17617:9:51"},{"kind":"number","nativeSrc":"17628:2:51","nodeType":"YulLiteral","src":"17628:2:51","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"17610:6:51","nodeType":"YulIdentifier","src":"17610:6:51"},"nativeSrc":"17610:21:51","nodeType":"YulFunctionCall","src":"17610:21:51"},"nativeSrc":"17610:21:51","nodeType":"YulExpressionStatement","src":"17610:21:51"},{"nativeSrc":"17640:14:51","nodeType":"YulVariableDeclaration","src":"17640:14:51","value":{"kind":"number","nativeSrc":"17653:1:51","nodeType":"YulLiteral","src":"17653:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"17644:5:51","nodeType":"YulTypedName","src":"17644:5:51","type":""}]},{"nativeSrc":"17663:29:51","nodeType":"YulAssignment","src":"17663:29:51","value":{"arguments":[{"name":"value0","nativeSrc":"17685:6:51","nodeType":"YulIdentifier","src":"17685:6:51"}],"functionName":{"name":"calldataload","nativeSrc":"17672:12:51","nodeType":"YulIdentifier","src":"17672:12:51"},"nativeSrc":"17672:20:51","nodeType":"YulFunctionCall","src":"17672:20:51"},"variableNames":[{"name":"value","nativeSrc":"17663:5:51","nodeType":"YulIdentifier","src":"17663:5:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17712:9:51","nodeType":"YulIdentifier","src":"17712:9:51"},{"kind":"number","nativeSrc":"17723:2:51","nodeType":"YulLiteral","src":"17723:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17708:3:51","nodeType":"YulIdentifier","src":"17708:3:51"},"nativeSrc":"17708:18:51","nodeType":"YulFunctionCall","src":"17708:18:51"},{"name":"value","nativeSrc":"17728:5:51","nodeType":"YulIdentifier","src":"17728:5:51"}],"functionName":{"name":"mstore","nativeSrc":"17701:6:51","nodeType":"YulIdentifier","src":"17701:6:51"},"nativeSrc":"17701:33:51","nodeType":"YulFunctionCall","src":"17701:33:51"},"nativeSrc":"17701:33:51","nodeType":"YulExpressionStatement","src":"17701:33:51"},{"nativeSrc":"17743:16:51","nodeType":"YulVariableDeclaration","src":"17743:16:51","value":{"kind":"number","nativeSrc":"17758:1:51","nodeType":"YulLiteral","src":"17758:1:51","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"17747:7:51","nodeType":"YulTypedName","src":"17747:7:51","type":""}]},{"nativeSrc":"17768:42:51","nodeType":"YulAssignment","src":"17768:42:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"17796:6:51","nodeType":"YulIdentifier","src":"17796:6:51"},{"kind":"number","nativeSrc":"17804:4:51","nodeType":"YulLiteral","src":"17804:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"17792:3:51","nodeType":"YulIdentifier","src":"17792:3:51"},"nativeSrc":"17792:17:51","nodeType":"YulFunctionCall","src":"17792:17:51"}],"functionName":{"name":"calldataload","nativeSrc":"17779:12:51","nodeType":"YulIdentifier","src":"17779:12:51"},"nativeSrc":"17779:31:51","nodeType":"YulFunctionCall","src":"17779:31:51"},"variableNames":[{"name":"value_1","nativeSrc":"17768:7:51","nodeType":"YulIdentifier","src":"17768:7:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17830:9:51","nodeType":"YulIdentifier","src":"17830:9:51"},{"kind":"number","nativeSrc":"17841:2:51","nodeType":"YulLiteral","src":"17841:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17826:3:51","nodeType":"YulIdentifier","src":"17826:3:51"},"nativeSrc":"17826:18:51","nodeType":"YulFunctionCall","src":"17826:18:51"},{"name":"value_1","nativeSrc":"17846:7:51","nodeType":"YulIdentifier","src":"17846:7:51"}],"functionName":{"name":"mstore","nativeSrc":"17819:6:51","nodeType":"YulIdentifier","src":"17819:6:51"},"nativeSrc":"17819:35:51","nodeType":"YulFunctionCall","src":"17819:35:51"},"nativeSrc":"17819:35:51","nodeType":"YulExpressionStatement","src":"17819:35:51"},{"nativeSrc":"17863:44:51","nodeType":"YulVariableDeclaration","src":"17863:44:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"17895:6:51","nodeType":"YulIdentifier","src":"17895:6:51"},{"kind":"number","nativeSrc":"17903:2:51","nodeType":"YulLiteral","src":"17903:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17891:3:51","nodeType":"YulIdentifier","src":"17891:3:51"},"nativeSrc":"17891:15:51","nodeType":"YulFunctionCall","src":"17891:15:51"}],"functionName":{"name":"calldataload","nativeSrc":"17878:12:51","nodeType":"YulIdentifier","src":"17878:12:51"},"nativeSrc":"17878:29:51","nodeType":"YulFunctionCall","src":"17878:29:51"},"variables":[{"name":"value_2","nativeSrc":"17867:7:51","nodeType":"YulTypedName","src":"17867:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"17940:7:51","nodeType":"YulIdentifier","src":"17940:7:51"}],"functionName":{"name":"validator_revert_uint16","nativeSrc":"17916:23:51","nodeType":"YulIdentifier","src":"17916:23:51"},"nativeSrc":"17916:32:51","nodeType":"YulFunctionCall","src":"17916:32:51"},"nativeSrc":"17916:32:51","nodeType":"YulExpressionStatement","src":"17916:32:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17968:9:51","nodeType":"YulIdentifier","src":"17968:9:51"},{"kind":"number","nativeSrc":"17979:3:51","nodeType":"YulLiteral","src":"17979:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"17964:3:51","nodeType":"YulIdentifier","src":"17964:3:51"},"nativeSrc":"17964:19:51","nodeType":"YulFunctionCall","src":"17964:19:51"},{"arguments":[{"name":"value_2","nativeSrc":"17989:7:51","nodeType":"YulIdentifier","src":"17989:7:51"},{"kind":"number","nativeSrc":"17998:6:51","nodeType":"YulLiteral","src":"17998:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"17985:3:51","nodeType":"YulIdentifier","src":"17985:3:51"},"nativeSrc":"17985:20:51","nodeType":"YulFunctionCall","src":"17985:20:51"}],"functionName":{"name":"mstore","nativeSrc":"17957:6:51","nodeType":"YulIdentifier","src":"17957:6:51"},"nativeSrc":"17957:49:51","nodeType":"YulFunctionCall","src":"17957:49:51"},"nativeSrc":"17957:49:51","nodeType":"YulExpressionStatement","src":"17957:49:51"},{"nativeSrc":"18015:44:51","nodeType":"YulVariableDeclaration","src":"18015:44:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"18047:6:51","nodeType":"YulIdentifier","src":"18047:6:51"},{"kind":"number","nativeSrc":"18055:2:51","nodeType":"YulLiteral","src":"18055:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18043:3:51","nodeType":"YulIdentifier","src":"18043:3:51"},"nativeSrc":"18043:15:51","nodeType":"YulFunctionCall","src":"18043:15:51"}],"functionName":{"name":"calldataload","nativeSrc":"18030:12:51","nodeType":"YulIdentifier","src":"18030:12:51"},"nativeSrc":"18030:29:51","nodeType":"YulFunctionCall","src":"18030:29:51"},"variables":[{"name":"value_3","nativeSrc":"18019:7:51","nodeType":"YulTypedName","src":"18019:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"18092:7:51","nodeType":"YulIdentifier","src":"18092:7:51"}],"functionName":{"name":"validator_revert_uint16","nativeSrc":"18068:23:51","nodeType":"YulIdentifier","src":"18068:23:51"},"nativeSrc":"18068:32:51","nodeType":"YulFunctionCall","src":"18068:32:51"},"nativeSrc":"18068:32:51","nodeType":"YulExpressionStatement","src":"18068:32:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18120:9:51","nodeType":"YulIdentifier","src":"18120:9:51"},{"kind":"number","nativeSrc":"18131:3:51","nodeType":"YulLiteral","src":"18131:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"18116:3:51","nodeType":"YulIdentifier","src":"18116:3:51"},"nativeSrc":"18116:19:51","nodeType":"YulFunctionCall","src":"18116:19:51"},{"arguments":[{"name":"value_3","nativeSrc":"18141:7:51","nodeType":"YulIdentifier","src":"18141:7:51"},{"kind":"number","nativeSrc":"18150:6:51","nodeType":"YulLiteral","src":"18150:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"18137:3:51","nodeType":"YulIdentifier","src":"18137:3:51"},"nativeSrc":"18137:20:51","nodeType":"YulFunctionCall","src":"18137:20:51"}],"functionName":{"name":"mstore","nativeSrc":"18109:6:51","nodeType":"YulIdentifier","src":"18109:6:51"},"nativeSrc":"18109:49:51","nodeType":"YulFunctionCall","src":"18109:49:51"},"nativeSrc":"18109:49:51","nodeType":"YulExpressionStatement","src":"18109:49:51"},{"nativeSrc":"18167:45:51","nodeType":"YulVariableDeclaration","src":"18167:45:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"18199:6:51","nodeType":"YulIdentifier","src":"18199:6:51"},{"kind":"number","nativeSrc":"18207:3:51","nodeType":"YulLiteral","src":"18207:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"18195:3:51","nodeType":"YulIdentifier","src":"18195:3:51"},"nativeSrc":"18195:16:51","nodeType":"YulFunctionCall","src":"18195:16:51"}],"functionName":{"name":"calldataload","nativeSrc":"18182:12:51","nodeType":"YulIdentifier","src":"18182:12:51"},"nativeSrc":"18182:30:51","nodeType":"YulFunctionCall","src":"18182:30:51"},"variables":[{"name":"value_4","nativeSrc":"18171:7:51","nodeType":"YulTypedName","src":"18171:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_4","nativeSrc":"18245:7:51","nodeType":"YulIdentifier","src":"18245:7:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"18221:23:51","nodeType":"YulIdentifier","src":"18221:23:51"},"nativeSrc":"18221:32:51","nodeType":"YulFunctionCall","src":"18221:32:51"},"nativeSrc":"18221:32:51","nodeType":"YulExpressionStatement","src":"18221:32:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18273:9:51","nodeType":"YulIdentifier","src":"18273:9:51"},{"kind":"number","nativeSrc":"18284:3:51","nodeType":"YulLiteral","src":"18284:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"18269:3:51","nodeType":"YulIdentifier","src":"18269:3:51"},"nativeSrc":"18269:19:51","nodeType":"YulFunctionCall","src":"18269:19:51"},{"arguments":[{"name":"value_4","nativeSrc":"18294:7:51","nodeType":"YulIdentifier","src":"18294:7:51"},{"kind":"number","nativeSrc":"18303:18:51","nodeType":"YulLiteral","src":"18303:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"18290:3:51","nodeType":"YulIdentifier","src":"18290:3:51"},"nativeSrc":"18290:32:51","nodeType":"YulFunctionCall","src":"18290:32:51"}],"functionName":{"name":"mstore","nativeSrc":"18262:6:51","nodeType":"YulIdentifier","src":"18262:6:51"},"nativeSrc":"18262:61:51","nodeType":"YulFunctionCall","src":"18262:61:51"},"nativeSrc":"18262:61:51","nodeType":"YulExpressionStatement","src":"18262:61:51"},{"nativeSrc":"18332:55:51","nodeType":"YulVariableDeclaration","src":"18332:55:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"18374:6:51","nodeType":"YulIdentifier","src":"18374:6:51"},{"kind":"number","nativeSrc":"18382:3:51","nodeType":"YulLiteral","src":"18382:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"18370:3:51","nodeType":"YulIdentifier","src":"18370:3:51"},"nativeSrc":"18370:16:51","nodeType":"YulFunctionCall","src":"18370:16:51"}],"functionName":{"name":"abi_decode_uint64","nativeSrc":"18352:17:51","nodeType":"YulIdentifier","src":"18352:17:51"},"nativeSrc":"18352:35:51","nodeType":"YulFunctionCall","src":"18352:35:51"},"variables":[{"name":"memberValue0","nativeSrc":"18336:12:51","nodeType":"YulTypedName","src":"18336:12:51","type":""}]},{"expression":{"arguments":[{"name":"memberValue0","nativeSrc":"18414:12:51","nodeType":"YulIdentifier","src":"18414:12:51"},{"arguments":[{"name":"headStart","nativeSrc":"18432:9:51","nodeType":"YulIdentifier","src":"18432:9:51"},{"kind":"number","nativeSrc":"18443:4:51","nodeType":"YulLiteral","src":"18443:4:51","type":"","value":"0xe0"}],"functionName":{"name":"add","nativeSrc":"18428:3:51","nodeType":"YulIdentifier","src":"18428:3:51"},"nativeSrc":"18428:20:51","nodeType":"YulFunctionCall","src":"18428:20:51"}],"functionName":{"name":"abi_encode_uint64","nativeSrc":"18396:17:51","nodeType":"YulIdentifier","src":"18396:17:51"},"nativeSrc":"18396:53:51","nodeType":"YulFunctionCall","src":"18396:53:51"},"nativeSrc":"18396:53:51","nodeType":"YulExpressionStatement","src":"18396:53:51"},{"nativeSrc":"18458:92:51","nodeType":"YulVariableDeclaration","src":"18458:92:51","value":{"arguments":[{"name":"value0","nativeSrc":"18525:6:51","nodeType":"YulIdentifier","src":"18525:6:51"},{"arguments":[{"name":"value0","nativeSrc":"18537:6:51","nodeType":"YulIdentifier","src":"18537:6:51"},{"kind":"number","nativeSrc":"18545:3:51","nodeType":"YulLiteral","src":"18545:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"18533:3:51","nodeType":"YulIdentifier","src":"18533:3:51"},"nativeSrc":"18533:16:51","nodeType":"YulFunctionCall","src":"18533:16:51"}],"functionName":{"name":"calldata_access_bytes_calldata","nativeSrc":"18494:30:51","nodeType":"YulIdentifier","src":"18494:30:51"},"nativeSrc":"18494:56:51","nodeType":"YulFunctionCall","src":"18494:56:51"},"variables":[{"name":"memberValue0_1","nativeSrc":"18462:14:51","nodeType":"YulTypedName","src":"18462:14:51","type":""},{"name":"memberValue1","nativeSrc":"18478:12:51","nodeType":"YulTypedName","src":"18478:12:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18570:9:51","nodeType":"YulIdentifier","src":"18570:9:51"},{"kind":"number","nativeSrc":"18581:3:51","nodeType":"YulLiteral","src":"18581:3:51","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"18566:3:51","nodeType":"YulIdentifier","src":"18566:3:51"},"nativeSrc":"18566:19:51","nodeType":"YulFunctionCall","src":"18566:19:51"},{"kind":"number","nativeSrc":"18587:4:51","nodeType":"YulLiteral","src":"18587:4:51","type":"","value":"0xe0"}],"functionName":{"name":"mstore","nativeSrc":"18559:6:51","nodeType":"YulIdentifier","src":"18559:6:51"},"nativeSrc":"18559:33:51","nodeType":"YulFunctionCall","src":"18559:33:51"},"nativeSrc":"18559:33:51","nodeType":"YulExpressionStatement","src":"18559:33:51"},{"nativeSrc":"18601:87:51","nodeType":"YulVariableDeclaration","src":"18601:87:51","value":{"arguments":[{"name":"memberValue0_1","nativeSrc":"18638:14:51","nodeType":"YulIdentifier","src":"18638:14:51"},{"name":"memberValue1","nativeSrc":"18654:12:51","nodeType":"YulIdentifier","src":"18654:12:51"},{"arguments":[{"name":"headStart","nativeSrc":"18672:9:51","nodeType":"YulIdentifier","src":"18672:9:51"},{"kind":"number","nativeSrc":"18683:3:51","nodeType":"YulLiteral","src":"18683:3:51","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"18668:3:51","nodeType":"YulIdentifier","src":"18668:3:51"},"nativeSrc":"18668:19:51","nodeType":"YulFunctionCall","src":"18668:19:51"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"18612:25:51","nodeType":"YulIdentifier","src":"18612:25:51"},"nativeSrc":"18612:76:51","nodeType":"YulFunctionCall","src":"18612:76:51"},"variables":[{"name":"end","nativeSrc":"18605:3:51","nodeType":"YulTypedName","src":"18605:3:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18708:9:51","nodeType":"YulIdentifier","src":"18708:9:51"},{"kind":"number","nativeSrc":"18719:4:51","nodeType":"YulLiteral","src":"18719:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"18704:3:51","nodeType":"YulIdentifier","src":"18704:3:51"},"nativeSrc":"18704:20:51","nodeType":"YulFunctionCall","src":"18704:20:51"},{"arguments":[{"name":"end","nativeSrc":"18730:3:51","nodeType":"YulIdentifier","src":"18730:3:51"},{"name":"headStart","nativeSrc":"18735:9:51","nodeType":"YulIdentifier","src":"18735:9:51"}],"functionName":{"name":"sub","nativeSrc":"18726:3:51","nodeType":"YulIdentifier","src":"18726:3:51"},"nativeSrc":"18726:19:51","nodeType":"YulFunctionCall","src":"18726:19:51"}],"functionName":{"name":"mstore","nativeSrc":"18697:6:51","nodeType":"YulIdentifier","src":"18697:6:51"},"nativeSrc":"18697:49:51","nodeType":"YulFunctionCall","src":"18697:49:51"},"nativeSrc":"18697:49:51","nodeType":"YulExpressionStatement","src":"18697:49:51"},{"nativeSrc":"18755:54:51","nodeType":"YulAssignment","src":"18755:54:51","value":{"arguments":[{"name":"value1","nativeSrc":"18789:6:51","nodeType":"YulIdentifier","src":"18789:6:51"},{"name":"value2","nativeSrc":"18797:6:51","nodeType":"YulIdentifier","src":"18797:6:51"},{"name":"end","nativeSrc":"18805:3:51","nodeType":"YulIdentifier","src":"18805:3:51"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"18763:25:51","nodeType":"YulIdentifier","src":"18763:25:51"},"nativeSrc":"18763:46:51","nodeType":"YulFunctionCall","src":"18763:46:51"},"variableNames":[{"name":"tail","nativeSrc":"18755:4:51","nodeType":"YulIdentifier","src":"18755:4:51"}]}]},"name":"abi_encode_tuple_t_struct$_DataPushReport_$13223_calldata_ptr_t_bytes_calldata_ptr__to_t_struct$_DataPushReport_$13223_memory_ptr_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"17375:1440:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17553:9:51","nodeType":"YulTypedName","src":"17553:9:51","type":""},{"name":"value2","nativeSrc":"17564:6:51","nodeType":"YulTypedName","src":"17564:6:51","type":""},{"name":"value1","nativeSrc":"17572:6:51","nodeType":"YulTypedName","src":"17572:6:51","type":""},{"name":"value0","nativeSrc":"17580:6:51","nodeType":"YulTypedName","src":"17580:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17591:4:51","nodeType":"YulTypedName","src":"17591:4:51","type":""}],"src":"17375:1440:51"},{"body":{"nativeSrc":"18892:88:51","nodeType":"YulBlock","src":"18892:88:51","statements":[{"nativeSrc":"18902:22:51","nodeType":"YulAssignment","src":"18902:22:51","value":{"arguments":[{"name":"offset","nativeSrc":"18917:6:51","nodeType":"YulIdentifier","src":"18917:6:51"}],"functionName":{"name":"mload","nativeSrc":"18911:5:51","nodeType":"YulIdentifier","src":"18911:5:51"},"nativeSrc":"18911:13:51","nodeType":"YulFunctionCall","src":"18911:13:51"},"variableNames":[{"name":"value","nativeSrc":"18902:5:51","nodeType":"YulIdentifier","src":"18902:5:51"}]},{"body":{"nativeSrc":"18958:16:51","nodeType":"YulBlock","src":"18958:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18967:1:51","nodeType":"YulLiteral","src":"18967:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"18970:1:51","nodeType":"YulLiteral","src":"18970:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"18960:6:51","nodeType":"YulIdentifier","src":"18960:6:51"},"nativeSrc":"18960:12:51","nodeType":"YulFunctionCall","src":"18960:12:51"},"nativeSrc":"18960:12:51","nodeType":"YulExpressionStatement","src":"18960:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"18946:5:51","nodeType":"YulIdentifier","src":"18946:5:51"},{"kind":"number","nativeSrc":"18953:2:51","nodeType":"YulLiteral","src":"18953:2:51","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"18943:2:51","nodeType":"YulIdentifier","src":"18943:2:51"},"nativeSrc":"18943:13:51","nodeType":"YulFunctionCall","src":"18943:13:51"}],"functionName":{"name":"iszero","nativeSrc":"18936:6:51","nodeType":"YulIdentifier","src":"18936:6:51"},"nativeSrc":"18936:21:51","nodeType":"YulFunctionCall","src":"18936:21:51"},"nativeSrc":"18933:41:51","nodeType":"YulIf","src":"18933:41:51"}]},"name":"abi_decode_enum_RadonDataTypes_fromMemory","nativeSrc":"18820:160:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"18871:6:51","nodeType":"YulTypedName","src":"18871:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"18882:5:51","nodeType":"YulTypedName","src":"18882:5:51","type":""}],"src":"18820:160:51"},{"body":{"nativeSrc":"19068:77:51","nodeType":"YulBlock","src":"19068:77:51","statements":[{"nativeSrc":"19078:22:51","nodeType":"YulAssignment","src":"19078:22:51","value":{"arguments":[{"name":"offset","nativeSrc":"19093:6:51","nodeType":"YulIdentifier","src":"19093:6:51"}],"functionName":{"name":"mload","nativeSrc":"19087:5:51","nodeType":"YulIdentifier","src":"19087:5:51"},"nativeSrc":"19087:13:51","nodeType":"YulFunctionCall","src":"19087:13:51"},"variableNames":[{"name":"value","nativeSrc":"19078:5:51","nodeType":"YulIdentifier","src":"19078:5:51"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"19133:5:51","nodeType":"YulIdentifier","src":"19133:5:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"19109:23:51","nodeType":"YulIdentifier","src":"19109:23:51"},"nativeSrc":"19109:30:51","nodeType":"YulFunctionCall","src":"19109:30:51"},"nativeSrc":"19109:30:51","nodeType":"YulExpressionStatement","src":"19109:30:51"}]},"name":"abi_decode_userDefinedValueType_Timestamp_fromMemory","nativeSrc":"18985:160:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"19047:6:51","nodeType":"YulTypedName","src":"19047:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"19058:5:51","nodeType":"YulTypedName","src":"19058:5:51","type":""}],"src":"18985:160:51"},{"body":{"nativeSrc":"19213:506:51","nodeType":"YulBlock","src":"19213:506:51","statements":[{"body":{"nativeSrc":"19262:16:51","nodeType":"YulBlock","src":"19262:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19271:1:51","nodeType":"YulLiteral","src":"19271:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"19274:1:51","nodeType":"YulLiteral","src":"19274:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19264:6:51","nodeType":"YulIdentifier","src":"19264:6:51"},"nativeSrc":"19264:12:51","nodeType":"YulFunctionCall","src":"19264:12:51"},"nativeSrc":"19264:12:51","nodeType":"YulExpressionStatement","src":"19264:12:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"19241:6:51","nodeType":"YulIdentifier","src":"19241:6:51"},{"kind":"number","nativeSrc":"19249:4:51","nodeType":"YulLiteral","src":"19249:4:51","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"19237:3:51","nodeType":"YulIdentifier","src":"19237:3:51"},"nativeSrc":"19237:17:51","nodeType":"YulFunctionCall","src":"19237:17:51"},{"name":"end","nativeSrc":"19256:3:51","nodeType":"YulIdentifier","src":"19256:3:51"}],"functionName":{"name":"slt","nativeSrc":"19233:3:51","nodeType":"YulIdentifier","src":"19233:3:51"},"nativeSrc":"19233:27:51","nodeType":"YulFunctionCall","src":"19233:27:51"}],"functionName":{"name":"iszero","nativeSrc":"19226:6:51","nodeType":"YulIdentifier","src":"19226:6:51"},"nativeSrc":"19226:35:51","nodeType":"YulFunctionCall","src":"19226:35:51"},"nativeSrc":"19223:55:51","nodeType":"YulIf","src":"19223:55:51"},{"nativeSrc":"19287:27:51","nodeType":"YulVariableDeclaration","src":"19287:27:51","value":{"arguments":[{"name":"offset","nativeSrc":"19307:6:51","nodeType":"YulIdentifier","src":"19307:6:51"}],"functionName":{"name":"mload","nativeSrc":"19301:5:51","nodeType":"YulIdentifier","src":"19301:5:51"},"nativeSrc":"19301:13:51","nodeType":"YulFunctionCall","src":"19301:13:51"},"variables":[{"name":"length","nativeSrc":"19291:6:51","nodeType":"YulTypedName","src":"19291:6:51","type":""}]},{"nativeSrc":"19323:28:51","nodeType":"YulVariableDeclaration","src":"19323:28:51","value":{"arguments":[{"name":"offset","nativeSrc":"19338:6:51","nodeType":"YulIdentifier","src":"19338:6:51"},{"kind":"number","nativeSrc":"19346:4:51","nodeType":"YulLiteral","src":"19346:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19334:3:51","nodeType":"YulIdentifier","src":"19334:3:51"},"nativeSrc":"19334:17:51","nodeType":"YulFunctionCall","src":"19334:17:51"},"variables":[{"name":"src","nativeSrc":"19327:3:51","nodeType":"YulTypedName","src":"19327:3:51","type":""}]},{"nativeSrc":"19360:16:51","nodeType":"YulVariableDeclaration","src":"19360:16:51","value":{"kind":"number","nativeSrc":"19375:1:51","nodeType":"YulLiteral","src":"19375:1:51","type":"","value":"0"},"variables":[{"name":"array_1","nativeSrc":"19364:7:51","nodeType":"YulTypedName","src":"19364:7:51","type":""}]},{"nativeSrc":"19385:46:51","nodeType":"YulVariableDeclaration","src":"19385:46:51","value":{"arguments":[{"name":"length","nativeSrc":"19424:6:51","nodeType":"YulIdentifier","src":"19424:6:51"}],"functionName":{"name":"array_allocation_size_string","nativeSrc":"19395:28:51","nodeType":"YulIdentifier","src":"19395:28:51"},"nativeSrc":"19395:36:51","nodeType":"YulFunctionCall","src":"19395:36:51"},"variables":[{"name":"_1","nativeSrc":"19389:2:51","nodeType":"YulTypedName","src":"19389:2:51","type":""}]},{"nativeSrc":"19440:23:51","nodeType":"YulVariableDeclaration","src":"19440:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"19460:2:51","nodeType":"YulLiteral","src":"19460:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"19454:5:51","nodeType":"YulIdentifier","src":"19454:5:51"},"nativeSrc":"19454:9:51","nodeType":"YulFunctionCall","src":"19454:9:51"},"variables":[{"name":"memPtr","nativeSrc":"19444:6:51","nodeType":"YulTypedName","src":"19444:6:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"19492:6:51","nodeType":"YulIdentifier","src":"19492:6:51"},{"name":"_1","nativeSrc":"19500:2:51","nodeType":"YulIdentifier","src":"19500:2:51"}],"functionName":{"name":"finalize_allocation","nativeSrc":"19472:19:51","nodeType":"YulIdentifier","src":"19472:19:51"},"nativeSrc":"19472:31:51","nodeType":"YulFunctionCall","src":"19472:31:51"},"nativeSrc":"19472:31:51","nodeType":"YulExpressionStatement","src":"19472:31:51"},{"nativeSrc":"19512:17:51","nodeType":"YulAssignment","src":"19512:17:51","value":{"name":"memPtr","nativeSrc":"19523:6:51","nodeType":"YulIdentifier","src":"19523:6:51"},"variableNames":[{"name":"array_1","nativeSrc":"19512:7:51","nodeType":"YulIdentifier","src":"19512:7:51"}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"19545:6:51","nodeType":"YulIdentifier","src":"19545:6:51"},{"name":"length","nativeSrc":"19553:6:51","nodeType":"YulIdentifier","src":"19553:6:51"}],"functionName":{"name":"mstore","nativeSrc":"19538:6:51","nodeType":"YulIdentifier","src":"19538:6:51"},"nativeSrc":"19538:22:51","nodeType":"YulFunctionCall","src":"19538:22:51"},"nativeSrc":"19538:22:51","nodeType":"YulExpressionStatement","src":"19538:22:51"},{"body":{"nativeSrc":"19598:16:51","nodeType":"YulBlock","src":"19598:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19607:1:51","nodeType":"YulLiteral","src":"19607:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"19610:1:51","nodeType":"YulLiteral","src":"19610:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19600:6:51","nodeType":"YulIdentifier","src":"19600:6:51"},"nativeSrc":"19600:12:51","nodeType":"YulFunctionCall","src":"19600:12:51"},"nativeSrc":"19600:12:51","nodeType":"YulExpressionStatement","src":"19600:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"19579:3:51","nodeType":"YulIdentifier","src":"19579:3:51"},{"name":"length","nativeSrc":"19584:6:51","nodeType":"YulIdentifier","src":"19584:6:51"}],"functionName":{"name":"add","nativeSrc":"19575:3:51","nodeType":"YulIdentifier","src":"19575:3:51"},"nativeSrc":"19575:16:51","nodeType":"YulFunctionCall","src":"19575:16:51"},{"name":"end","nativeSrc":"19593:3:51","nodeType":"YulIdentifier","src":"19593:3:51"}],"functionName":{"name":"gt","nativeSrc":"19572:2:51","nodeType":"YulIdentifier","src":"19572:2:51"},"nativeSrc":"19572:25:51","nodeType":"YulFunctionCall","src":"19572:25:51"},"nativeSrc":"19569:45:51","nodeType":"YulIf","src":"19569:45:51"},{"expression":{"arguments":[{"name":"src","nativeSrc":"19658:3:51","nodeType":"YulIdentifier","src":"19658:3:51"},{"arguments":[{"name":"memPtr","nativeSrc":"19667:6:51","nodeType":"YulIdentifier","src":"19667:6:51"},{"kind":"number","nativeSrc":"19675:4:51","nodeType":"YulLiteral","src":"19675:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"19663:3:51","nodeType":"YulIdentifier","src":"19663:3:51"},"nativeSrc":"19663:17:51","nodeType":"YulFunctionCall","src":"19663:17:51"},{"name":"length","nativeSrc":"19682:6:51","nodeType":"YulIdentifier","src":"19682:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"19623:34:51","nodeType":"YulIdentifier","src":"19623:34:51"},"nativeSrc":"19623:66:51","nodeType":"YulFunctionCall","src":"19623:66:51"},"nativeSrc":"19623:66:51","nodeType":"YulExpressionStatement","src":"19623:66:51"},{"nativeSrc":"19698:15:51","nodeType":"YulAssignment","src":"19698:15:51","value":{"name":"memPtr","nativeSrc":"19707:6:51","nodeType":"YulIdentifier","src":"19707:6:51"},"variableNames":[{"name":"array","nativeSrc":"19698:5:51","nodeType":"YulIdentifier","src":"19698:5:51"}]}]},"name":"abi_decode_bytes_fromMemory","nativeSrc":"19150:569:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"19187:6:51","nodeType":"YulTypedName","src":"19187:6:51","type":""},{"name":"end","nativeSrc":"19195:3:51","nodeType":"YulTypedName","src":"19195:3:51","type":""}],"returnVariables":[{"name":"array","nativeSrc":"19203:5:51","nodeType":"YulTypedName","src":"19203:5:51","type":""}],"src":"19150:569:51"},{"body":{"nativeSrc":"19782:76:51","nodeType":"YulBlock","src":"19782:76:51","statements":[{"nativeSrc":"19792:22:51","nodeType":"YulAssignment","src":"19792:22:51","value":{"arguments":[{"name":"offset","nativeSrc":"19807:6:51","nodeType":"YulIdentifier","src":"19807:6:51"}],"functionName":{"name":"mload","nativeSrc":"19801:5:51","nodeType":"YulIdentifier","src":"19801:5:51"},"nativeSrc":"19801:13:51","nodeType":"YulFunctionCall","src":"19801:13:51"},"variableNames":[{"name":"value","nativeSrc":"19792:5:51","nodeType":"YulIdentifier","src":"19792:5:51"}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"19846:5:51","nodeType":"YulIdentifier","src":"19846:5:51"}],"functionName":{"name":"validator_revert_uint8","nativeSrc":"19823:22:51","nodeType":"YulIdentifier","src":"19823:22:51"},"nativeSrc":"19823:29:51","nodeType":"YulFunctionCall","src":"19823:29:51"},"nativeSrc":"19823:29:51","nodeType":"YulExpressionStatement","src":"19823:29:51"}]},"name":"abi_decode_uint8_fromMemory","nativeSrc":"19724:134:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"19761:6:51","nodeType":"YulTypedName","src":"19761:6:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"19772:5:51","nodeType":"YulTypedName","src":"19772:5:51","type":""}],"src":"19724:134:51"},{"body":{"nativeSrc":"19935:1200:51","nodeType":"YulBlock","src":"19935:1200:51","statements":[{"body":{"nativeSrc":"19979:16:51","nodeType":"YulBlock","src":"19979:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"19988:1:51","nodeType":"YulLiteral","src":"19988:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"19991:1:51","nodeType":"YulLiteral","src":"19991:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"19981:6:51","nodeType":"YulIdentifier","src":"19981:6:51"},"nativeSrc":"19981:12:51","nodeType":"YulFunctionCall","src":"19981:12:51"},"nativeSrc":"19981:12:51","nodeType":"YulExpressionStatement","src":"19981:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"19956:3:51","nodeType":"YulIdentifier","src":"19956:3:51"},{"name":"headStart","nativeSrc":"19961:9:51","nodeType":"YulIdentifier","src":"19961:9:51"}],"functionName":{"name":"sub","nativeSrc":"19952:3:51","nodeType":"YulIdentifier","src":"19952:3:51"},"nativeSrc":"19952:19:51","nodeType":"YulFunctionCall","src":"19952:19:51"},{"kind":"number","nativeSrc":"19973:4:51","nodeType":"YulLiteral","src":"19973:4:51","type":"","value":"0xc0"}],"functionName":{"name":"slt","nativeSrc":"19948:3:51","nodeType":"YulIdentifier","src":"19948:3:51"},"nativeSrc":"19948:30:51","nodeType":"YulFunctionCall","src":"19948:30:51"},"nativeSrc":"19945:50:51","nodeType":"YulIf","src":"19945:50:51"},{"nativeSrc":"20004:23:51","nodeType":"YulVariableDeclaration","src":"20004:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"20024:2:51","nodeType":"YulLiteral","src":"20024:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"20018:5:51","nodeType":"YulIdentifier","src":"20018:5:51"},"nativeSrc":"20018:9:51","nodeType":"YulFunctionCall","src":"20018:9:51"},"variables":[{"name":"memPtr","nativeSrc":"20008:6:51","nodeType":"YulTypedName","src":"20008:6:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"20061:6:51","nodeType":"YulIdentifier","src":"20061:6:51"}],"functionName":{"name":"finalize_allocation_5687","nativeSrc":"20036:24:51","nodeType":"YulIdentifier","src":"20036:24:51"},"nativeSrc":"20036:32:51","nodeType":"YulFunctionCall","src":"20036:32:51"},"nativeSrc":"20036:32:51","nodeType":"YulExpressionStatement","src":"20036:32:51"},{"nativeSrc":"20077:15:51","nodeType":"YulAssignment","src":"20077:15:51","value":{"name":"memPtr","nativeSrc":"20086:6:51","nodeType":"YulIdentifier","src":"20086:6:51"},"variableNames":[{"name":"value","nativeSrc":"20077:5:51","nodeType":"YulIdentifier","src":"20077:5:51"}]},{"nativeSrc":"20101:30:51","nodeType":"YulVariableDeclaration","src":"20101:30:51","value":{"arguments":[{"name":"headStart","nativeSrc":"20121:9:51","nodeType":"YulIdentifier","src":"20121:9:51"}],"functionName":{"name":"mload","nativeSrc":"20115:5:51","nodeType":"YulIdentifier","src":"20115:5:51"},"nativeSrc":"20115:16:51","nodeType":"YulFunctionCall","src":"20115:16:51"},"variables":[{"name":"offset","nativeSrc":"20105:6:51","nodeType":"YulTypedName","src":"20105:6:51","type":""}]},{"body":{"nativeSrc":"20174:16:51","nodeType":"YulBlock","src":"20174:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20183:1:51","nodeType":"YulLiteral","src":"20183:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"20186:1:51","nodeType":"YulLiteral","src":"20186:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20176:6:51","nodeType":"YulIdentifier","src":"20176:6:51"},"nativeSrc":"20176:12:51","nodeType":"YulFunctionCall","src":"20176:12:51"},"nativeSrc":"20176:12:51","nodeType":"YulExpressionStatement","src":"20176:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"20146:6:51","nodeType":"YulIdentifier","src":"20146:6:51"},{"kind":"number","nativeSrc":"20154:18:51","nodeType":"YulLiteral","src":"20154:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"20143:2:51","nodeType":"YulIdentifier","src":"20143:2:51"},"nativeSrc":"20143:30:51","nodeType":"YulFunctionCall","src":"20143:30:51"},"nativeSrc":"20140:50:51","nodeType":"YulIf","src":"20140:50:51"},{"nativeSrc":"20199:32:51","nodeType":"YulVariableDeclaration","src":"20199:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"20213:9:51","nodeType":"YulIdentifier","src":"20213:9:51"},{"name":"offset","nativeSrc":"20224:6:51","nodeType":"YulIdentifier","src":"20224:6:51"}],"functionName":{"name":"add","nativeSrc":"20209:3:51","nodeType":"YulIdentifier","src":"20209:3:51"},"nativeSrc":"20209:22:51","nodeType":"YulFunctionCall","src":"20209:22:51"},"variables":[{"name":"_1","nativeSrc":"20203:2:51","nodeType":"YulTypedName","src":"20203:2:51","type":""}]},{"body":{"nativeSrc":"20265:16:51","nodeType":"YulBlock","src":"20265:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20274:1:51","nodeType":"YulLiteral","src":"20274:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"20277:1:51","nodeType":"YulLiteral","src":"20277:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20267:6:51","nodeType":"YulIdentifier","src":"20267:6:51"},"nativeSrc":"20267:12:51","nodeType":"YulFunctionCall","src":"20267:12:51"},"nativeSrc":"20267:12:51","nodeType":"YulExpressionStatement","src":"20267:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"end","nativeSrc":"20251:3:51","nodeType":"YulIdentifier","src":"20251:3:51"},{"name":"_1","nativeSrc":"20256:2:51","nodeType":"YulIdentifier","src":"20256:2:51"}],"functionName":{"name":"sub","nativeSrc":"20247:3:51","nodeType":"YulIdentifier","src":"20247:3:51"},"nativeSrc":"20247:12:51","nodeType":"YulFunctionCall","src":"20247:12:51"},{"kind":"number","nativeSrc":"20261:2:51","nodeType":"YulLiteral","src":"20261:2:51","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"20243:3:51","nodeType":"YulIdentifier","src":"20243:3:51"},"nativeSrc":"20243:21:51","nodeType":"YulFunctionCall","src":"20243:21:51"},"nativeSrc":"20240:41:51","nodeType":"YulIf","src":"20240:41:51"},{"nativeSrc":"20290:25:51","nodeType":"YulVariableDeclaration","src":"20290:25:51","value":{"arguments":[{"kind":"number","nativeSrc":"20312:2:51","nodeType":"YulLiteral","src":"20312:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"20306:5:51","nodeType":"YulIdentifier","src":"20306:5:51"},"nativeSrc":"20306:9:51","nodeType":"YulFunctionCall","src":"20306:9:51"},"variables":[{"name":"memPtr_1","nativeSrc":"20294:8:51","nodeType":"YulTypedName","src":"20294:8:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr_1","nativeSrc":"20349:8:51","nodeType":"YulIdentifier","src":"20349:8:51"}],"functionName":{"name":"finalize_allocation_5688","nativeSrc":"20324:24:51","nodeType":"YulIdentifier","src":"20324:24:51"},"nativeSrc":"20324:34:51","nodeType":"YulFunctionCall","src":"20324:34:51"},"nativeSrc":"20324:34:51","nodeType":"YulExpressionStatement","src":"20324:34:51"},{"nativeSrc":"20367:25:51","nodeType":"YulVariableDeclaration","src":"20367:25:51","value":{"arguments":[{"name":"_1","nativeSrc":"20389:2:51","nodeType":"YulIdentifier","src":"20389:2:51"}],"functionName":{"name":"mload","nativeSrc":"20383:5:51","nodeType":"YulIdentifier","src":"20383:5:51"},"nativeSrc":"20383:9:51","nodeType":"YulFunctionCall","src":"20383:9:51"},"variables":[{"name":"offset_1","nativeSrc":"20371:8:51","nodeType":"YulTypedName","src":"20371:8:51","type":""}]},{"body":{"nativeSrc":"20437:16:51","nodeType":"YulBlock","src":"20437:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20446:1:51","nodeType":"YulLiteral","src":"20446:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"20449:1:51","nodeType":"YulLiteral","src":"20449:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"20439:6:51","nodeType":"YulIdentifier","src":"20439:6:51"},"nativeSrc":"20439:12:51","nodeType":"YulFunctionCall","src":"20439:12:51"},"nativeSrc":"20439:12:51","nodeType":"YulExpressionStatement","src":"20439:12:51"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"20407:8:51","nodeType":"YulIdentifier","src":"20407:8:51"},{"kind":"number","nativeSrc":"20417:18:51","nodeType":"YulLiteral","src":"20417:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"20404:2:51","nodeType":"YulIdentifier","src":"20404:2:51"},"nativeSrc":"20404:32:51","nodeType":"YulFunctionCall","src":"20404:32:51"},"nativeSrc":"20401:52:51","nodeType":"YulIf","src":"20401:52:51"},{"expression":{"arguments":[{"name":"memPtr_1","nativeSrc":"20469:8:51","nodeType":"YulIdentifier","src":"20469:8:51"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"20511:2:51","nodeType":"YulIdentifier","src":"20511:2:51"},{"name":"offset_1","nativeSrc":"20515:8:51","nodeType":"YulIdentifier","src":"20515:8:51"}],"functionName":{"name":"add","nativeSrc":"20507:3:51","nodeType":"YulIdentifier","src":"20507:3:51"},"nativeSrc":"20507:17:51","nodeType":"YulFunctionCall","src":"20507:17:51"},{"name":"end","nativeSrc":"20526:3:51","nodeType":"YulIdentifier","src":"20526:3:51"}],"functionName":{"name":"abi_decode_bytes_fromMemory","nativeSrc":"20479:27:51","nodeType":"YulIdentifier","src":"20479:27:51"},"nativeSrc":"20479:51:51","nodeType":"YulFunctionCall","src":"20479:51:51"}],"functionName":{"name":"mstore","nativeSrc":"20462:6:51","nodeType":"YulIdentifier","src":"20462:6:51"},"nativeSrc":"20462:69:51","nodeType":"YulFunctionCall","src":"20462:69:51"},"nativeSrc":"20462:69:51","nodeType":"YulExpressionStatement","src":"20462:69:51"},{"nativeSrc":"20540:16:51","nodeType":"YulVariableDeclaration","src":"20540:16:51","value":{"kind":"number","nativeSrc":"20555:1:51","nodeType":"YulLiteral","src":"20555:1:51","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"20544:7:51","nodeType":"YulTypedName","src":"20544:7:51","type":""}]},{"nativeSrc":"20565:29:51","nodeType":"YulAssignment","src":"20565:29:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"20586:2:51","nodeType":"YulIdentifier","src":"20586:2:51"},{"kind":"number","nativeSrc":"20590:2:51","nodeType":"YulLiteral","src":"20590:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20582:3:51","nodeType":"YulIdentifier","src":"20582:3:51"},"nativeSrc":"20582:11:51","nodeType":"YulFunctionCall","src":"20582:11:51"}],"functionName":{"name":"mload","nativeSrc":"20576:5:51","nodeType":"YulIdentifier","src":"20576:5:51"},"nativeSrc":"20576:18:51","nodeType":"YulFunctionCall","src":"20576:18:51"},"variableNames":[{"name":"value_1","nativeSrc":"20565:7:51","nodeType":"YulIdentifier","src":"20565:7:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr_1","nativeSrc":"20614:8:51","nodeType":"YulIdentifier","src":"20614:8:51"},{"kind":"number","nativeSrc":"20624:2:51","nodeType":"YulLiteral","src":"20624:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20610:3:51","nodeType":"YulIdentifier","src":"20610:3:51"},"nativeSrc":"20610:17:51","nodeType":"YulFunctionCall","src":"20610:17:51"},{"name":"value_1","nativeSrc":"20629:7:51","nodeType":"YulIdentifier","src":"20629:7:51"}],"functionName":{"name":"mstore","nativeSrc":"20603:6:51","nodeType":"YulIdentifier","src":"20603:6:51"},"nativeSrc":"20603:34:51","nodeType":"YulFunctionCall","src":"20603:34:51"},"nativeSrc":"20603:34:51","nodeType":"YulExpressionStatement","src":"20603:34:51"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"20653:6:51","nodeType":"YulIdentifier","src":"20653:6:51"},{"name":"memPtr_1","nativeSrc":"20661:8:51","nodeType":"YulIdentifier","src":"20661:8:51"}],"functionName":{"name":"mstore","nativeSrc":"20646:6:51","nodeType":"YulIdentifier","src":"20646:6:51"},"nativeSrc":"20646:24:51","nodeType":"YulFunctionCall","src":"20646:24:51"},"nativeSrc":"20646:24:51","nodeType":"YulExpressionStatement","src":"20646:24:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"20690:6:51","nodeType":"YulIdentifier","src":"20690:6:51"},{"kind":"number","nativeSrc":"20698:2:51","nodeType":"YulLiteral","src":"20698:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20686:3:51","nodeType":"YulIdentifier","src":"20686:3:51"},"nativeSrc":"20686:15:51","nodeType":"YulFunctionCall","src":"20686:15:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20735:9:51","nodeType":"YulIdentifier","src":"20735:9:51"},{"kind":"number","nativeSrc":"20746:2:51","nodeType":"YulLiteral","src":"20746:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20731:3:51","nodeType":"YulIdentifier","src":"20731:3:51"},"nativeSrc":"20731:18:51","nodeType":"YulFunctionCall","src":"20731:18:51"}],"functionName":{"name":"abi_decode_uint8_fromMemory","nativeSrc":"20703:27:51","nodeType":"YulIdentifier","src":"20703:27:51"},"nativeSrc":"20703:47:51","nodeType":"YulFunctionCall","src":"20703:47:51"}],"functionName":{"name":"mstore","nativeSrc":"20679:6:51","nodeType":"YulIdentifier","src":"20679:6:51"},"nativeSrc":"20679:72:51","nodeType":"YulFunctionCall","src":"20679:72:51"},"nativeSrc":"20679:72:51","nodeType":"YulExpressionStatement","src":"20679:72:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"20771:6:51","nodeType":"YulIdentifier","src":"20771:6:51"},{"kind":"number","nativeSrc":"20779:2:51","nodeType":"YulLiteral","src":"20779:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20767:3:51","nodeType":"YulIdentifier","src":"20767:3:51"},"nativeSrc":"20767:15:51","nodeType":"YulFunctionCall","src":"20767:15:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20816:9:51","nodeType":"YulIdentifier","src":"20816:9:51"},{"kind":"number","nativeSrc":"20827:2:51","nodeType":"YulLiteral","src":"20827:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20812:3:51","nodeType":"YulIdentifier","src":"20812:3:51"},"nativeSrc":"20812:18:51","nodeType":"YulFunctionCall","src":"20812:18:51"}],"functionName":{"name":"abi_decode_uint8_fromMemory","nativeSrc":"20784:27:51","nodeType":"YulIdentifier","src":"20784:27:51"},"nativeSrc":"20784:47:51","nodeType":"YulFunctionCall","src":"20784:47:51"}],"functionName":{"name":"mstore","nativeSrc":"20760:6:51","nodeType":"YulIdentifier","src":"20760:6:51"},"nativeSrc":"20760:72:51","nodeType":"YulFunctionCall","src":"20760:72:51"},"nativeSrc":"20760:72:51","nodeType":"YulExpressionStatement","src":"20760:72:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"20852:6:51","nodeType":"YulIdentifier","src":"20852:6:51"},{"kind":"number","nativeSrc":"20860:2:51","nodeType":"YulLiteral","src":"20860:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20848:3:51","nodeType":"YulIdentifier","src":"20848:3:51"},"nativeSrc":"20848:15:51","nodeType":"YulFunctionCall","src":"20848:15:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20897:9:51","nodeType":"YulIdentifier","src":"20897:9:51"},{"kind":"number","nativeSrc":"20908:2:51","nodeType":"YulLiteral","src":"20908:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20893:3:51","nodeType":"YulIdentifier","src":"20893:3:51"},"nativeSrc":"20893:18:51","nodeType":"YulFunctionCall","src":"20893:18:51"}],"functionName":{"name":"abi_decode_uint8_fromMemory","nativeSrc":"20865:27:51","nodeType":"YulIdentifier","src":"20865:27:51"},"nativeSrc":"20865:47:51","nodeType":"YulFunctionCall","src":"20865:47:51"}],"functionName":{"name":"mstore","nativeSrc":"20841:6:51","nodeType":"YulIdentifier","src":"20841:6:51"},"nativeSrc":"20841:72:51","nodeType":"YulFunctionCall","src":"20841:72:51"},"nativeSrc":"20841:72:51","nodeType":"YulExpressionStatement","src":"20841:72:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"20933:6:51","nodeType":"YulIdentifier","src":"20933:6:51"},{"kind":"number","nativeSrc":"20941:3:51","nodeType":"YulLiteral","src":"20941:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"20929:3:51","nodeType":"YulIdentifier","src":"20929:3:51"},"nativeSrc":"20929:16:51","nodeType":"YulFunctionCall","src":"20929:16:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21004:9:51","nodeType":"YulIdentifier","src":"21004:9:51"},{"kind":"number","nativeSrc":"21015:3:51","nodeType":"YulLiteral","src":"21015:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"21000:3:51","nodeType":"YulIdentifier","src":"21000:3:51"},"nativeSrc":"21000:19:51","nodeType":"YulFunctionCall","src":"21000:19:51"}],"functionName":{"name":"abi_decode_userDefinedValueType_Timestamp_fromMemory","nativeSrc":"20947:52:51","nodeType":"YulIdentifier","src":"20947:52:51"},"nativeSrc":"20947:73:51","nodeType":"YulFunctionCall","src":"20947:73:51"}],"functionName":{"name":"mstore","nativeSrc":"20922:6:51","nodeType":"YulIdentifier","src":"20922:6:51"},"nativeSrc":"20922:99:51","nodeType":"YulFunctionCall","src":"20922:99:51"},"nativeSrc":"20922:99:51","nodeType":"YulExpressionStatement","src":"20922:99:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"21041:6:51","nodeType":"YulIdentifier","src":"21041:6:51"},{"kind":"number","nativeSrc":"21049:3:51","nodeType":"YulLiteral","src":"21049:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"21037:3:51","nodeType":"YulIdentifier","src":"21037:3:51"},"nativeSrc":"21037:16:51","nodeType":"YulFunctionCall","src":"21037:16:51"},{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21112:9:51","nodeType":"YulIdentifier","src":"21112:9:51"},{"kind":"number","nativeSrc":"21123:3:51","nodeType":"YulLiteral","src":"21123:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"21108:3:51","nodeType":"YulIdentifier","src":"21108:3:51"},"nativeSrc":"21108:19:51","nodeType":"YulFunctionCall","src":"21108:19:51"}],"functionName":{"name":"abi_decode_userDefinedValueType_Timestamp_fromMemory","nativeSrc":"21055:52:51","nodeType":"YulIdentifier","src":"21055:52:51"},"nativeSrc":"21055:73:51","nodeType":"YulFunctionCall","src":"21055:73:51"}],"functionName":{"name":"mstore","nativeSrc":"21030:6:51","nodeType":"YulIdentifier","src":"21030:6:51"},"nativeSrc":"21030:99:51","nodeType":"YulFunctionCall","src":"21030:99:51"},"nativeSrc":"21030:99:51","nodeType":"YulExpressionStatement","src":"21030:99:51"}]},"name":"abi_decode_struct_CBOR_fromMemory","nativeSrc":"19863:1272:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19906:9:51","nodeType":"YulTypedName","src":"19906:9:51","type":""},{"name":"end","nativeSrc":"19917:3:51","nodeType":"YulTypedName","src":"19917:3:51","type":""}],"returnVariables":[{"name":"value","nativeSrc":"19925:5:51","nodeType":"YulTypedName","src":"19925:5:51","type":""}],"src":"19863:1272:51"},{"body":{"nativeSrc":"21250:965:51","nodeType":"YulBlock","src":"21250:965:51","statements":[{"body":{"nativeSrc":"21296:16:51","nodeType":"YulBlock","src":"21296:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21305:1:51","nodeType":"YulLiteral","src":"21305:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"21308:1:51","nodeType":"YulLiteral","src":"21308:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21298:6:51","nodeType":"YulIdentifier","src":"21298:6:51"},"nativeSrc":"21298:12:51","nodeType":"YulFunctionCall","src":"21298:12:51"},"nativeSrc":"21298:12:51","nodeType":"YulExpressionStatement","src":"21298:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21271:7:51","nodeType":"YulIdentifier","src":"21271:7:51"},{"name":"headStart","nativeSrc":"21280:9:51","nodeType":"YulIdentifier","src":"21280:9:51"}],"functionName":{"name":"sub","nativeSrc":"21267:3:51","nodeType":"YulIdentifier","src":"21267:3:51"},"nativeSrc":"21267:23:51","nodeType":"YulFunctionCall","src":"21267:23:51"},{"kind":"number","nativeSrc":"21292:2:51","nodeType":"YulLiteral","src":"21292:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"21263:3:51","nodeType":"YulIdentifier","src":"21263:3:51"},"nativeSrc":"21263:32:51","nodeType":"YulFunctionCall","src":"21263:32:51"},"nativeSrc":"21260:52:51","nodeType":"YulIf","src":"21260:52:51"},{"nativeSrc":"21321:30:51","nodeType":"YulVariableDeclaration","src":"21321:30:51","value":{"arguments":[{"name":"headStart","nativeSrc":"21341:9:51","nodeType":"YulIdentifier","src":"21341:9:51"}],"functionName":{"name":"mload","nativeSrc":"21335:5:51","nodeType":"YulIdentifier","src":"21335:5:51"},"nativeSrc":"21335:16:51","nodeType":"YulFunctionCall","src":"21335:16:51"},"variables":[{"name":"offset","nativeSrc":"21325:6:51","nodeType":"YulTypedName","src":"21325:6:51","type":""}]},{"body":{"nativeSrc":"21394:16:51","nodeType":"YulBlock","src":"21394:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21403:1:51","nodeType":"YulLiteral","src":"21403:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"21406:1:51","nodeType":"YulLiteral","src":"21406:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21396:6:51","nodeType":"YulIdentifier","src":"21396:6:51"},"nativeSrc":"21396:12:51","nodeType":"YulFunctionCall","src":"21396:12:51"},"nativeSrc":"21396:12:51","nodeType":"YulExpressionStatement","src":"21396:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"21366:6:51","nodeType":"YulIdentifier","src":"21366:6:51"},{"kind":"number","nativeSrc":"21374:18:51","nodeType":"YulLiteral","src":"21374:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"21363:2:51","nodeType":"YulIdentifier","src":"21363:2:51"},"nativeSrc":"21363:30:51","nodeType":"YulFunctionCall","src":"21363:30:51"},"nativeSrc":"21360:50:51","nodeType":"YulIf","src":"21360:50:51"},{"nativeSrc":"21419:32:51","nodeType":"YulVariableDeclaration","src":"21419:32:51","value":{"arguments":[{"name":"headStart","nativeSrc":"21433:9:51","nodeType":"YulIdentifier","src":"21433:9:51"},{"name":"offset","nativeSrc":"21444:6:51","nodeType":"YulIdentifier","src":"21444:6:51"}],"functionName":{"name":"add","nativeSrc":"21429:3:51","nodeType":"YulIdentifier","src":"21429:3:51"},"nativeSrc":"21429:22:51","nodeType":"YulFunctionCall","src":"21429:22:51"},"variables":[{"name":"_1","nativeSrc":"21423:2:51","nodeType":"YulTypedName","src":"21423:2:51","type":""}]},{"body":{"nativeSrc":"21491:16:51","nodeType":"YulBlock","src":"21491:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21500:1:51","nodeType":"YulLiteral","src":"21500:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"21503:1:51","nodeType":"YulLiteral","src":"21503:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21493:6:51","nodeType":"YulIdentifier","src":"21493:6:51"},"nativeSrc":"21493:12:51","nodeType":"YulFunctionCall","src":"21493:12:51"},"nativeSrc":"21493:12:51","nodeType":"YulExpressionStatement","src":"21493:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21471:7:51","nodeType":"YulIdentifier","src":"21471:7:51"},{"name":"_1","nativeSrc":"21480:2:51","nodeType":"YulIdentifier","src":"21480:2:51"}],"functionName":{"name":"sub","nativeSrc":"21467:3:51","nodeType":"YulIdentifier","src":"21467:3:51"},"nativeSrc":"21467:16:51","nodeType":"YulFunctionCall","src":"21467:16:51"},{"kind":"number","nativeSrc":"21485:4:51","nodeType":"YulLiteral","src":"21485:4:51","type":"","value":"0xa0"}],"functionName":{"name":"slt","nativeSrc":"21463:3:51","nodeType":"YulIdentifier","src":"21463:3:51"},"nativeSrc":"21463:27:51","nodeType":"YulFunctionCall","src":"21463:27:51"},"nativeSrc":"21460:47:51","nodeType":"YulIf","src":"21460:47:51"},{"nativeSrc":"21516:23:51","nodeType":"YulVariableDeclaration","src":"21516:23:51","value":{"arguments":[{"kind":"number","nativeSrc":"21536:2:51","nodeType":"YulLiteral","src":"21536:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"21530:5:51","nodeType":"YulIdentifier","src":"21530:5:51"},"nativeSrc":"21530:9:51","nodeType":"YulFunctionCall","src":"21530:9:51"},"variables":[{"name":"memPtr","nativeSrc":"21520:6:51","nodeType":"YulTypedName","src":"21520:6:51","type":""}]},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"21573:6:51","nodeType":"YulIdentifier","src":"21573:6:51"}],"functionName":{"name":"finalize_allocation_5690","nativeSrc":"21548:24:51","nodeType":"YulIdentifier","src":"21548:24:51"},"nativeSrc":"21548:32:51","nodeType":"YulFunctionCall","src":"21548:32:51"},"nativeSrc":"21548:32:51","nodeType":"YulExpressionStatement","src":"21548:32:51"},{"nativeSrc":"21589:22:51","nodeType":"YulVariableDeclaration","src":"21589:22:51","value":{"arguments":[{"name":"_1","nativeSrc":"21608:2:51","nodeType":"YulIdentifier","src":"21608:2:51"}],"functionName":{"name":"mload","nativeSrc":"21602:5:51","nodeType":"YulIdentifier","src":"21602:5:51"},"nativeSrc":"21602:9:51","nodeType":"YulFunctionCall","src":"21602:9:51"},"variables":[{"name":"value","nativeSrc":"21593:5:51","nodeType":"YulTypedName","src":"21593:5:51","type":""}]},{"body":{"nativeSrc":"21646:16:51","nodeType":"YulBlock","src":"21646:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21655:1:51","nodeType":"YulLiteral","src":"21655:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"21658:1:51","nodeType":"YulLiteral","src":"21658:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21648:6:51","nodeType":"YulIdentifier","src":"21648:6:51"},"nativeSrc":"21648:12:51","nodeType":"YulFunctionCall","src":"21648:12:51"},"nativeSrc":"21648:12:51","nodeType":"YulExpressionStatement","src":"21648:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"21633:5:51","nodeType":"YulIdentifier","src":"21633:5:51"},{"kind":"number","nativeSrc":"21640:3:51","nodeType":"YulLiteral","src":"21640:3:51","type":"","value":"256"}],"functionName":{"name":"lt","nativeSrc":"21630:2:51","nodeType":"YulIdentifier","src":"21630:2:51"},"nativeSrc":"21630:14:51","nodeType":"YulFunctionCall","src":"21630:14:51"}],"functionName":{"name":"iszero","nativeSrc":"21623:6:51","nodeType":"YulIdentifier","src":"21623:6:51"},"nativeSrc":"21623:22:51","nodeType":"YulFunctionCall","src":"21623:22:51"},"nativeSrc":"21620:42:51","nodeType":"YulIf","src":"21620:42:51"},{"expression":{"arguments":[{"name":"memPtr","nativeSrc":"21678:6:51","nodeType":"YulIdentifier","src":"21678:6:51"},{"name":"value","nativeSrc":"21686:5:51","nodeType":"YulIdentifier","src":"21686:5:51"}],"functionName":{"name":"mstore","nativeSrc":"21671:6:51","nodeType":"YulIdentifier","src":"21671:6:51"},"nativeSrc":"21671:21:51","nodeType":"YulFunctionCall","src":"21671:21:51"},"nativeSrc":"21671:21:51","nodeType":"YulExpressionStatement","src":"21671:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"21712:6:51","nodeType":"YulIdentifier","src":"21712:6:51"},{"kind":"number","nativeSrc":"21720:2:51","nodeType":"YulLiteral","src":"21720:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21708:3:51","nodeType":"YulIdentifier","src":"21708:3:51"},"nativeSrc":"21708:15:51","nodeType":"YulFunctionCall","src":"21708:15:51"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"21771:2:51","nodeType":"YulIdentifier","src":"21771:2:51"},{"kind":"number","nativeSrc":"21775:2:51","nodeType":"YulLiteral","src":"21775:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21767:3:51","nodeType":"YulIdentifier","src":"21767:3:51"},"nativeSrc":"21767:11:51","nodeType":"YulFunctionCall","src":"21767:11:51"}],"functionName":{"name":"abi_decode_enum_RadonDataTypes_fromMemory","nativeSrc":"21725:41:51","nodeType":"YulIdentifier","src":"21725:41:51"},"nativeSrc":"21725:54:51","nodeType":"YulFunctionCall","src":"21725:54:51"}],"functionName":{"name":"mstore","nativeSrc":"21701:6:51","nodeType":"YulIdentifier","src":"21701:6:51"},"nativeSrc":"21701:79:51","nodeType":"YulFunctionCall","src":"21701:79:51"},"nativeSrc":"21701:79:51","nodeType":"YulExpressionStatement","src":"21701:79:51"},{"nativeSrc":"21789:16:51","nodeType":"YulVariableDeclaration","src":"21789:16:51","value":{"kind":"number","nativeSrc":"21804:1:51","nodeType":"YulLiteral","src":"21804:1:51","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"21793:7:51","nodeType":"YulTypedName","src":"21793:7:51","type":""}]},{"nativeSrc":"21814:29:51","nodeType":"YulAssignment","src":"21814:29:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"21835:2:51","nodeType":"YulIdentifier","src":"21835:2:51"},{"kind":"number","nativeSrc":"21839:2:51","nodeType":"YulLiteral","src":"21839:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21831:3:51","nodeType":"YulIdentifier","src":"21831:3:51"},"nativeSrc":"21831:11:51","nodeType":"YulFunctionCall","src":"21831:11:51"}],"functionName":{"name":"mload","nativeSrc":"21825:5:51","nodeType":"YulIdentifier","src":"21825:5:51"},"nativeSrc":"21825:18:51","nodeType":"YulFunctionCall","src":"21825:18:51"},"variableNames":[{"name":"value_1","nativeSrc":"21814:7:51","nodeType":"YulIdentifier","src":"21814:7:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"21863:6:51","nodeType":"YulIdentifier","src":"21863:6:51"},{"kind":"number","nativeSrc":"21871:2:51","nodeType":"YulLiteral","src":"21871:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21859:3:51","nodeType":"YulIdentifier","src":"21859:3:51"},"nativeSrc":"21859:15:51","nodeType":"YulFunctionCall","src":"21859:15:51"},{"name":"value_1","nativeSrc":"21876:7:51","nodeType":"YulIdentifier","src":"21876:7:51"}],"functionName":{"name":"mstore","nativeSrc":"21852:6:51","nodeType":"YulIdentifier","src":"21852:6:51"},"nativeSrc":"21852:32:51","nodeType":"YulFunctionCall","src":"21852:32:51"},"nativeSrc":"21852:32:51","nodeType":"YulExpressionStatement","src":"21852:32:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"21904:6:51","nodeType":"YulIdentifier","src":"21904:6:51"},{"kind":"number","nativeSrc":"21912:2:51","nodeType":"YulLiteral","src":"21912:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"21900:3:51","nodeType":"YulIdentifier","src":"21900:3:51"},"nativeSrc":"21900:15:51","nodeType":"YulFunctionCall","src":"21900:15:51"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"21974:2:51","nodeType":"YulIdentifier","src":"21974:2:51"},{"kind":"number","nativeSrc":"21978:2:51","nodeType":"YulLiteral","src":"21978:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"21970:3:51","nodeType":"YulIdentifier","src":"21970:3:51"},"nativeSrc":"21970:11:51","nodeType":"YulFunctionCall","src":"21970:11:51"}],"functionName":{"name":"abi_decode_userDefinedValueType_Timestamp_fromMemory","nativeSrc":"21917:52:51","nodeType":"YulIdentifier","src":"21917:52:51"},"nativeSrc":"21917:65:51","nodeType":"YulFunctionCall","src":"21917:65:51"}],"functionName":{"name":"mstore","nativeSrc":"21893:6:51","nodeType":"YulIdentifier","src":"21893:6:51"},"nativeSrc":"21893:90:51","nodeType":"YulFunctionCall","src":"21893:90:51"},"nativeSrc":"21893:90:51","nodeType":"YulExpressionStatement","src":"21893:90:51"},{"nativeSrc":"21992:35:51","nodeType":"YulVariableDeclaration","src":"21992:35:51","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"22018:2:51","nodeType":"YulIdentifier","src":"22018:2:51"},{"kind":"number","nativeSrc":"22022:3:51","nodeType":"YulLiteral","src":"22022:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"22014:3:51","nodeType":"YulIdentifier","src":"22014:3:51"},"nativeSrc":"22014:12:51","nodeType":"YulFunctionCall","src":"22014:12:51"}],"functionName":{"name":"mload","nativeSrc":"22008:5:51","nodeType":"YulIdentifier","src":"22008:5:51"},"nativeSrc":"22008:19:51","nodeType":"YulFunctionCall","src":"22008:19:51"},"variables":[{"name":"offset_1","nativeSrc":"21996:8:51","nodeType":"YulTypedName","src":"21996:8:51","type":""}]},{"body":{"nativeSrc":"22072:16:51","nodeType":"YulBlock","src":"22072:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"22081:1:51","nodeType":"YulLiteral","src":"22081:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"22084:1:51","nodeType":"YulLiteral","src":"22084:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"22074:6:51","nodeType":"YulIdentifier","src":"22074:6:51"},"nativeSrc":"22074:12:51","nodeType":"YulFunctionCall","src":"22074:12:51"},"nativeSrc":"22074:12:51","nodeType":"YulExpressionStatement","src":"22074:12:51"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"22042:8:51","nodeType":"YulIdentifier","src":"22042:8:51"},{"kind":"number","nativeSrc":"22052:18:51","nodeType":"YulLiteral","src":"22052:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"22039:2:51","nodeType":"YulIdentifier","src":"22039:2:51"},"nativeSrc":"22039:32:51","nodeType":"YulFunctionCall","src":"22039:32:51"},"nativeSrc":"22036:52:51","nodeType":"YulIf","src":"22036:52:51"},{"expression":{"arguments":[{"arguments":[{"name":"memPtr","nativeSrc":"22108:6:51","nodeType":"YulIdentifier","src":"22108:6:51"},{"kind":"number","nativeSrc":"22116:3:51","nodeType":"YulLiteral","src":"22116:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"22104:3:51","nodeType":"YulIdentifier","src":"22104:3:51"},"nativeSrc":"22104:16:51","nodeType":"YulFunctionCall","src":"22104:16:51"},{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"22160:2:51","nodeType":"YulIdentifier","src":"22160:2:51"},{"name":"offset_1","nativeSrc":"22164:8:51","nodeType":"YulIdentifier","src":"22164:8:51"}],"functionName":{"name":"add","nativeSrc":"22156:3:51","nodeType":"YulIdentifier","src":"22156:3:51"},"nativeSrc":"22156:17:51","nodeType":"YulFunctionCall","src":"22156:17:51"},{"name":"dataEnd","nativeSrc":"22175:7:51","nodeType":"YulIdentifier","src":"22175:7:51"}],"functionName":{"name":"abi_decode_struct_CBOR_fromMemory","nativeSrc":"22122:33:51","nodeType":"YulIdentifier","src":"22122:33:51"},"nativeSrc":"22122:61:51","nodeType":"YulFunctionCall","src":"22122:61:51"}],"functionName":{"name":"mstore","nativeSrc":"22097:6:51","nodeType":"YulIdentifier","src":"22097:6:51"},"nativeSrc":"22097:87:51","nodeType":"YulFunctionCall","src":"22097:87:51"},"nativeSrc":"22097:87:51","nodeType":"YulExpressionStatement","src":"22097:87:51"},{"nativeSrc":"22193:16:51","nodeType":"YulAssignment","src":"22193:16:51","value":{"name":"memPtr","nativeSrc":"22203:6:51","nodeType":"YulIdentifier","src":"22203:6:51"},"variableNames":[{"name":"value0","nativeSrc":"22193:6:51","nodeType":"YulIdentifier","src":"22193:6:51"}]}]},"name":"abi_decode_tuple_t_struct$_DataResult_$13240_memory_ptr_fromMemory","nativeSrc":"21140:1075:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21216:9:51","nodeType":"YulTypedName","src":"21216:9:51","type":""},{"name":"dataEnd","nativeSrc":"21227:7:51","nodeType":"YulTypedName","src":"21227:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21239:6:51","nodeType":"YulTypedName","src":"21239:6:51","type":""}],"src":"21140:1075:51"},{"body":{"nativeSrc":"22387:1495:51","nodeType":"YulBlock","src":"22387:1495:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22404:9:51","nodeType":"YulIdentifier","src":"22404:9:51"},{"kind":"number","nativeSrc":"22415:2:51","nodeType":"YulLiteral","src":"22415:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"22397:6:51","nodeType":"YulIdentifier","src":"22397:6:51"},"nativeSrc":"22397:21:51","nodeType":"YulFunctionCall","src":"22397:21:51"},"nativeSrc":"22397:21:51","nodeType":"YulExpressionStatement","src":"22397:21:51"},{"nativeSrc":"22427:23:51","nodeType":"YulVariableDeclaration","src":"22427:23:51","value":{"arguments":[{"name":"value0","nativeSrc":"22443:6:51","nodeType":"YulIdentifier","src":"22443:6:51"}],"functionName":{"name":"mload","nativeSrc":"22437:5:51","nodeType":"YulIdentifier","src":"22437:5:51"},"nativeSrc":"22437:13:51","nodeType":"YulFunctionCall","src":"22437:13:51"},"variables":[{"name":"_1","nativeSrc":"22431:2:51","nodeType":"YulTypedName","src":"22431:2:51","type":""}]},{"body":{"nativeSrc":"22482:22:51","nodeType":"YulBlock","src":"22482:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x21","nativeSrc":"22484:16:51","nodeType":"YulIdentifier","src":"22484:16:51"},"nativeSrc":"22484:18:51","nodeType":"YulFunctionCall","src":"22484:18:51"},"nativeSrc":"22484:18:51","nodeType":"YulExpressionStatement","src":"22484:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"22472:2:51","nodeType":"YulIdentifier","src":"22472:2:51"},{"kind":"number","nativeSrc":"22476:3:51","nodeType":"YulLiteral","src":"22476:3:51","type":"","value":"256"}],"functionName":{"name":"lt","nativeSrc":"22469:2:51","nodeType":"YulIdentifier","src":"22469:2:51"},"nativeSrc":"22469:11:51","nodeType":"YulFunctionCall","src":"22469:11:51"}],"functionName":{"name":"iszero","nativeSrc":"22462:6:51","nodeType":"YulIdentifier","src":"22462:6:51"},"nativeSrc":"22462:19:51","nodeType":"YulFunctionCall","src":"22462:19:51"},"nativeSrc":"22459:45:51","nodeType":"YulIf","src":"22459:45:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22524:9:51","nodeType":"YulIdentifier","src":"22524:9:51"},{"kind":"number","nativeSrc":"22535:2:51","nodeType":"YulLiteral","src":"22535:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22520:3:51","nodeType":"YulIdentifier","src":"22520:3:51"},"nativeSrc":"22520:18:51","nodeType":"YulFunctionCall","src":"22520:18:51"},{"name":"_1","nativeSrc":"22540:2:51","nodeType":"YulIdentifier","src":"22540:2:51"}],"functionName":{"name":"mstore","nativeSrc":"22513:6:51","nodeType":"YulIdentifier","src":"22513:6:51"},"nativeSrc":"22513:30:51","nodeType":"YulFunctionCall","src":"22513:30:51"},"nativeSrc":"22513:30:51","nodeType":"YulExpressionStatement","src":"22513:30:51"},{"nativeSrc":"22552:42:51","nodeType":"YulVariableDeclaration","src":"22552:42:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"22582:6:51","nodeType":"YulIdentifier","src":"22582:6:51"},{"kind":"number","nativeSrc":"22590:2:51","nodeType":"YulLiteral","src":"22590:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22578:3:51","nodeType":"YulIdentifier","src":"22578:3:51"},"nativeSrc":"22578:15:51","nodeType":"YulFunctionCall","src":"22578:15:51"}],"functionName":{"name":"mload","nativeSrc":"22572:5:51","nodeType":"YulIdentifier","src":"22572:5:51"},"nativeSrc":"22572:22:51","nodeType":"YulFunctionCall","src":"22572:22:51"},"variables":[{"name":"memberValue0","nativeSrc":"22556:12:51","nodeType":"YulTypedName","src":"22556:12:51","type":""}]},{"body":{"nativeSrc":"22635:22:51","nodeType":"YulBlock","src":"22635:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x21","nativeSrc":"22637:16:51","nodeType":"YulIdentifier","src":"22637:16:51"},"nativeSrc":"22637:18:51","nodeType":"YulFunctionCall","src":"22637:18:51"},"nativeSrc":"22637:18:51","nodeType":"YulExpressionStatement","src":"22637:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"memberValue0","nativeSrc":"22616:12:51","nodeType":"YulIdentifier","src":"22616:12:51"},{"kind":"number","nativeSrc":"22630:2:51","nodeType":"YulLiteral","src":"22630:2:51","type":"","value":"20"}],"functionName":{"name":"lt","nativeSrc":"22613:2:51","nodeType":"YulIdentifier","src":"22613:2:51"},"nativeSrc":"22613:20:51","nodeType":"YulFunctionCall","src":"22613:20:51"}],"functionName":{"name":"iszero","nativeSrc":"22606:6:51","nodeType":"YulIdentifier","src":"22606:6:51"},"nativeSrc":"22606:28:51","nodeType":"YulFunctionCall","src":"22606:28:51"},"nativeSrc":"22603:54:51","nodeType":"YulIf","src":"22603:54:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22677:9:51","nodeType":"YulIdentifier","src":"22677:9:51"},{"kind":"number","nativeSrc":"22688:2:51","nodeType":"YulLiteral","src":"22688:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22673:3:51","nodeType":"YulIdentifier","src":"22673:3:51"},"nativeSrc":"22673:18:51","nodeType":"YulFunctionCall","src":"22673:18:51"},{"name":"memberValue0","nativeSrc":"22693:12:51","nodeType":"YulIdentifier","src":"22693:12:51"}],"functionName":{"name":"mstore","nativeSrc":"22666:6:51","nodeType":"YulIdentifier","src":"22666:6:51"},"nativeSrc":"22666:40:51","nodeType":"YulFunctionCall","src":"22666:40:51"},"nativeSrc":"22666:40:51","nodeType":"YulExpressionStatement","src":"22666:40:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22726:9:51","nodeType":"YulIdentifier","src":"22726:9:51"},{"kind":"number","nativeSrc":"22737:2:51","nodeType":"YulLiteral","src":"22737:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22722:3:51","nodeType":"YulIdentifier","src":"22722:3:51"},"nativeSrc":"22722:18:51","nodeType":"YulFunctionCall","src":"22722:18:51"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"22752:6:51","nodeType":"YulIdentifier","src":"22752:6:51"},{"kind":"number","nativeSrc":"22760:2:51","nodeType":"YulLiteral","src":"22760:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22748:3:51","nodeType":"YulIdentifier","src":"22748:3:51"},"nativeSrc":"22748:15:51","nodeType":"YulFunctionCall","src":"22748:15:51"}],"functionName":{"name":"mload","nativeSrc":"22742:5:51","nodeType":"YulIdentifier","src":"22742:5:51"},"nativeSrc":"22742:22:51","nodeType":"YulFunctionCall","src":"22742:22:51"}],"functionName":{"name":"mstore","nativeSrc":"22715:6:51","nodeType":"YulIdentifier","src":"22715:6:51"},"nativeSrc":"22715:50:51","nodeType":"YulFunctionCall","src":"22715:50:51"},"nativeSrc":"22715:50:51","nodeType":"YulExpressionStatement","src":"22715:50:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22785:9:51","nodeType":"YulIdentifier","src":"22785:9:51"},{"kind":"number","nativeSrc":"22796:3:51","nodeType":"YulLiteral","src":"22796:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"22781:3:51","nodeType":"YulIdentifier","src":"22781:3:51"},"nativeSrc":"22781:19:51","nodeType":"YulFunctionCall","src":"22781:19:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"22816:6:51","nodeType":"YulIdentifier","src":"22816:6:51"},{"kind":"number","nativeSrc":"22824:2:51","nodeType":"YulLiteral","src":"22824:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22812:3:51","nodeType":"YulIdentifier","src":"22812:3:51"},"nativeSrc":"22812:15:51","nodeType":"YulFunctionCall","src":"22812:15:51"}],"functionName":{"name":"mload","nativeSrc":"22806:5:51","nodeType":"YulIdentifier","src":"22806:5:51"},"nativeSrc":"22806:22:51","nodeType":"YulFunctionCall","src":"22806:22:51"},{"kind":"number","nativeSrc":"22830:18:51","nodeType":"YulLiteral","src":"22830:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"22802:3:51","nodeType":"YulIdentifier","src":"22802:3:51"},"nativeSrc":"22802:47:51","nodeType":"YulFunctionCall","src":"22802:47:51"}],"functionName":{"name":"mstore","nativeSrc":"22774:6:51","nodeType":"YulIdentifier","src":"22774:6:51"},"nativeSrc":"22774:76:51","nodeType":"YulFunctionCall","src":"22774:76:51"},"nativeSrc":"22774:76:51","nodeType":"YulExpressionStatement","src":"22774:76:51"},{"nativeSrc":"22859:45:51","nodeType":"YulVariableDeclaration","src":"22859:45:51","value":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"22891:6:51","nodeType":"YulIdentifier","src":"22891:6:51"},{"kind":"number","nativeSrc":"22899:3:51","nodeType":"YulLiteral","src":"22899:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"22887:3:51","nodeType":"YulIdentifier","src":"22887:3:51"},"nativeSrc":"22887:16:51","nodeType":"YulFunctionCall","src":"22887:16:51"}],"functionName":{"name":"mload","nativeSrc":"22881:5:51","nodeType":"YulIdentifier","src":"22881:5:51"},"nativeSrc":"22881:23:51","nodeType":"YulFunctionCall","src":"22881:23:51"},"variables":[{"name":"memberValue0_1","nativeSrc":"22863:14:51","nodeType":"YulTypedName","src":"22863:14:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22924:9:51","nodeType":"YulIdentifier","src":"22924:9:51"},{"kind":"number","nativeSrc":"22935:4:51","nodeType":"YulLiteral","src":"22935:4:51","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"22920:3:51","nodeType":"YulIdentifier","src":"22920:3:51"},"nativeSrc":"22920:20:51","nodeType":"YulFunctionCall","src":"22920:20:51"},{"kind":"number","nativeSrc":"22942:4:51","nodeType":"YulLiteral","src":"22942:4:51","type":"","value":"0xa0"}],"functionName":{"name":"mstore","nativeSrc":"22913:6:51","nodeType":"YulIdentifier","src":"22913:6:51"},"nativeSrc":"22913:34:51","nodeType":"YulFunctionCall","src":"22913:34:51"},"nativeSrc":"22913:34:51","nodeType":"YulExpressionStatement","src":"22913:34:51"},{"nativeSrc":"22956:43:51","nodeType":"YulVariableDeclaration","src":"22956:43:51","value":{"arguments":[{"name":"memberValue0_1","nativeSrc":"22984:14:51","nodeType":"YulIdentifier","src":"22984:14:51"}],"functionName":{"name":"mload","nativeSrc":"22978:5:51","nodeType":"YulIdentifier","src":"22978:5:51"},"nativeSrc":"22978:21:51","nodeType":"YulFunctionCall","src":"22978:21:51"},"variables":[{"name":"memberValue0_2","nativeSrc":"22960:14:51","nodeType":"YulTypedName","src":"22960:14:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23019:9:51","nodeType":"YulIdentifier","src":"23019:9:51"},{"kind":"number","nativeSrc":"23030:3:51","nodeType":"YulLiteral","src":"23030:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"23015:3:51","nodeType":"YulIdentifier","src":"23015:3:51"},"nativeSrc":"23015:19:51","nodeType":"YulFunctionCall","src":"23015:19:51"},{"kind":"number","nativeSrc":"23036:3:51","nodeType":"YulLiteral","src":"23036:3:51","type":"","value":"192"}],"functionName":{"name":"mstore","nativeSrc":"23008:6:51","nodeType":"YulIdentifier","src":"23008:6:51"},"nativeSrc":"23008:32:51","nodeType":"YulFunctionCall","src":"23008:32:51"},"nativeSrc":"23008:32:51","nodeType":"YulExpressionStatement","src":"23008:32:51"},{"nativeSrc":"23049:43:51","nodeType":"YulVariableDeclaration","src":"23049:43:51","value":{"arguments":[{"name":"memberValue0_2","nativeSrc":"23077:14:51","nodeType":"YulIdentifier","src":"23077:14:51"}],"functionName":{"name":"mload","nativeSrc":"23071:5:51","nodeType":"YulIdentifier","src":"23071:5:51"},"nativeSrc":"23071:21:51","nodeType":"YulFunctionCall","src":"23071:21:51"},"variables":[{"name":"memberValue0_3","nativeSrc":"23053:14:51","nodeType":"YulTypedName","src":"23053:14:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23112:9:51","nodeType":"YulIdentifier","src":"23112:9:51"},{"kind":"number","nativeSrc":"23123:3:51","nodeType":"YulLiteral","src":"23123:3:51","type":"","value":"384"}],"functionName":{"name":"add","nativeSrc":"23108:3:51","nodeType":"YulIdentifier","src":"23108:3:51"},"nativeSrc":"23108:19:51","nodeType":"YulFunctionCall","src":"23108:19:51"},{"kind":"number","nativeSrc":"23129:2:51","nodeType":"YulLiteral","src":"23129:2:51","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"23101:6:51","nodeType":"YulIdentifier","src":"23101:6:51"},"nativeSrc":"23101:31:51","nodeType":"YulFunctionCall","src":"23101:31:51"},"nativeSrc":"23101:31:51","nodeType":"YulExpressionStatement","src":"23101:31:51"},{"nativeSrc":"23141:68:51","nodeType":"YulVariableDeclaration","src":"23141:68:51","value":{"arguments":[{"name":"memberValue0_3","nativeSrc":"23173:14:51","nodeType":"YulIdentifier","src":"23173:14:51"},{"arguments":[{"name":"headStart","nativeSrc":"23193:9:51","nodeType":"YulIdentifier","src":"23193:9:51"},{"kind":"number","nativeSrc":"23204:3:51","nodeType":"YulLiteral","src":"23204:3:51","type":"","value":"448"}],"functionName":{"name":"add","nativeSrc":"23189:3:51","nodeType":"YulIdentifier","src":"23189:3:51"},"nativeSrc":"23189:19:51","nodeType":"YulFunctionCall","src":"23189:19:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"23155:17:51","nodeType":"YulIdentifier","src":"23155:17:51"},"nativeSrc":"23155:54:51","nodeType":"YulFunctionCall","src":"23155:54:51"},"variables":[{"name":"tail_1","nativeSrc":"23145:6:51","nodeType":"YulTypedName","src":"23145:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23229:9:51","nodeType":"YulIdentifier","src":"23229:9:51"},{"kind":"number","nativeSrc":"23240:3:51","nodeType":"YulLiteral","src":"23240:3:51","type":"","value":"416"}],"functionName":{"name":"add","nativeSrc":"23225:3:51","nodeType":"YulIdentifier","src":"23225:3:51"},"nativeSrc":"23225:19:51","nodeType":"YulFunctionCall","src":"23225:19:51"},{"arguments":[{"arguments":[{"name":"memberValue0_2","nativeSrc":"23256:14:51","nodeType":"YulIdentifier","src":"23256:14:51"},{"kind":"number","nativeSrc":"23272:2:51","nodeType":"YulLiteral","src":"23272:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23252:3:51","nodeType":"YulIdentifier","src":"23252:3:51"},"nativeSrc":"23252:23:51","nodeType":"YulFunctionCall","src":"23252:23:51"}],"functionName":{"name":"mload","nativeSrc":"23246:5:51","nodeType":"YulIdentifier","src":"23246:5:51"},"nativeSrc":"23246:30:51","nodeType":"YulFunctionCall","src":"23246:30:51"}],"functionName":{"name":"mstore","nativeSrc":"23218:6:51","nodeType":"YulIdentifier","src":"23218:6:51"},"nativeSrc":"23218:59:51","nodeType":"YulFunctionCall","src":"23218:59:51"},"nativeSrc":"23218:59:51","nodeType":"YulExpressionStatement","src":"23218:59:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23297:9:51","nodeType":"YulIdentifier","src":"23297:9:51"},{"kind":"number","nativeSrc":"23308:3:51","nodeType":"YulLiteral","src":"23308:3:51","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"23293:3:51","nodeType":"YulIdentifier","src":"23293:3:51"},"nativeSrc":"23293:19:51","nodeType":"YulFunctionCall","src":"23293:19:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"memberValue0_1","nativeSrc":"23328:14:51","nodeType":"YulIdentifier","src":"23328:14:51"},{"kind":"number","nativeSrc":"23344:2:51","nodeType":"YulLiteral","src":"23344:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23324:3:51","nodeType":"YulIdentifier","src":"23324:3:51"},"nativeSrc":"23324:23:51","nodeType":"YulFunctionCall","src":"23324:23:51"}],"functionName":{"name":"mload","nativeSrc":"23318:5:51","nodeType":"YulIdentifier","src":"23318:5:51"},"nativeSrc":"23318:30:51","nodeType":"YulFunctionCall","src":"23318:30:51"},{"kind":"number","nativeSrc":"23350:4:51","nodeType":"YulLiteral","src":"23350:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"23314:3:51","nodeType":"YulIdentifier","src":"23314:3:51"},"nativeSrc":"23314:41:51","nodeType":"YulFunctionCall","src":"23314:41:51"}],"functionName":{"name":"mstore","nativeSrc":"23286:6:51","nodeType":"YulIdentifier","src":"23286:6:51"},"nativeSrc":"23286:70:51","nodeType":"YulFunctionCall","src":"23286:70:51"},"nativeSrc":"23286:70:51","nodeType":"YulExpressionStatement","src":"23286:70:51"},{"nativeSrc":"23365:52:51","nodeType":"YulVariableDeclaration","src":"23365:52:51","value":{"arguments":[{"arguments":[{"name":"memberValue0_1","nativeSrc":"23397:14:51","nodeType":"YulIdentifier","src":"23397:14:51"},{"kind":"number","nativeSrc":"23413:2:51","nodeType":"YulLiteral","src":"23413:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23393:3:51","nodeType":"YulIdentifier","src":"23393:3:51"},"nativeSrc":"23393:23:51","nodeType":"YulFunctionCall","src":"23393:23:51"}],"functionName":{"name":"mload","nativeSrc":"23387:5:51","nodeType":"YulIdentifier","src":"23387:5:51"},"nativeSrc":"23387:30:51","nodeType":"YulFunctionCall","src":"23387:30:51"},"variables":[{"name":"memberValue0_4","nativeSrc":"23369:14:51","nodeType":"YulTypedName","src":"23369:14:51","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_4","nativeSrc":"23443:14:51","nodeType":"YulIdentifier","src":"23443:14:51"},{"arguments":[{"name":"headStart","nativeSrc":"23463:9:51","nodeType":"YulIdentifier","src":"23463:9:51"},{"kind":"number","nativeSrc":"23474:3:51","nodeType":"YulLiteral","src":"23474:3:51","type":"","value":"256"}],"functionName":{"name":"add","nativeSrc":"23459:3:51","nodeType":"YulIdentifier","src":"23459:3:51"},"nativeSrc":"23459:19:51","nodeType":"YulFunctionCall","src":"23459:19:51"}],"functionName":{"name":"abi_encode_uint8","nativeSrc":"23426:16:51","nodeType":"YulIdentifier","src":"23426:16:51"},"nativeSrc":"23426:53:51","nodeType":"YulFunctionCall","src":"23426:53:51"},"nativeSrc":"23426:53:51","nodeType":"YulExpressionStatement","src":"23426:53:51"},{"nativeSrc":"23488:52:51","nodeType":"YulVariableDeclaration","src":"23488:52:51","value":{"arguments":[{"arguments":[{"name":"memberValue0_1","nativeSrc":"23520:14:51","nodeType":"YulIdentifier","src":"23520:14:51"},{"kind":"number","nativeSrc":"23536:2:51","nodeType":"YulLiteral","src":"23536:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23516:3:51","nodeType":"YulIdentifier","src":"23516:3:51"},"nativeSrc":"23516:23:51","nodeType":"YulFunctionCall","src":"23516:23:51"}],"functionName":{"name":"mload","nativeSrc":"23510:5:51","nodeType":"YulIdentifier","src":"23510:5:51"},"nativeSrc":"23510:30:51","nodeType":"YulFunctionCall","src":"23510:30:51"},"variables":[{"name":"memberValue0_5","nativeSrc":"23492:14:51","nodeType":"YulTypedName","src":"23492:14:51","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_5","nativeSrc":"23566:14:51","nodeType":"YulIdentifier","src":"23566:14:51"},{"arguments":[{"name":"headStart","nativeSrc":"23586:9:51","nodeType":"YulIdentifier","src":"23586:9:51"},{"kind":"number","nativeSrc":"23597:3:51","nodeType":"YulLiteral","src":"23597:3:51","type":"","value":"288"}],"functionName":{"name":"add","nativeSrc":"23582:3:51","nodeType":"YulIdentifier","src":"23582:3:51"},"nativeSrc":"23582:19:51","nodeType":"YulFunctionCall","src":"23582:19:51"}],"functionName":{"name":"abi_encode_uint8","nativeSrc":"23549:16:51","nodeType":"YulIdentifier","src":"23549:16:51"},"nativeSrc":"23549:53:51","nodeType":"YulFunctionCall","src":"23549:53:51"},"nativeSrc":"23549:53:51","nodeType":"YulExpressionStatement","src":"23549:53:51"},{"nativeSrc":"23611:53:51","nodeType":"YulVariableDeclaration","src":"23611:53:51","value":{"arguments":[{"arguments":[{"name":"memberValue0_1","nativeSrc":"23643:14:51","nodeType":"YulIdentifier","src":"23643:14:51"},{"kind":"number","nativeSrc":"23659:3:51","nodeType":"YulLiteral","src":"23659:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"23639:3:51","nodeType":"YulIdentifier","src":"23639:3:51"},"nativeSrc":"23639:24:51","nodeType":"YulFunctionCall","src":"23639:24:51"}],"functionName":{"name":"mload","nativeSrc":"23633:5:51","nodeType":"YulIdentifier","src":"23633:5:51"},"nativeSrc":"23633:31:51","nodeType":"YulFunctionCall","src":"23633:31:51"},"variables":[{"name":"memberValue0_6","nativeSrc":"23615:14:51","nodeType":"YulTypedName","src":"23615:14:51","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_6","nativeSrc":"23691:14:51","nodeType":"YulIdentifier","src":"23691:14:51"},{"arguments":[{"name":"headStart","nativeSrc":"23711:9:51","nodeType":"YulIdentifier","src":"23711:9:51"},{"kind":"number","nativeSrc":"23722:3:51","nodeType":"YulLiteral","src":"23722:3:51","type":"","value":"320"}],"functionName":{"name":"add","nativeSrc":"23707:3:51","nodeType":"YulIdentifier","src":"23707:3:51"},"nativeSrc":"23707:19:51","nodeType":"YulFunctionCall","src":"23707:19:51"}],"functionName":{"name":"abi_encode_uint64","nativeSrc":"23673:17:51","nodeType":"YulIdentifier","src":"23673:17:51"},"nativeSrc":"23673:54:51","nodeType":"YulFunctionCall","src":"23673:54:51"},"nativeSrc":"23673:54:51","nodeType":"YulExpressionStatement","src":"23673:54:51"},{"nativeSrc":"23736:54:51","nodeType":"YulVariableDeclaration","src":"23736:54:51","value":{"arguments":[{"arguments":[{"name":"memberValue0_1","nativeSrc":"23768:14:51","nodeType":"YulIdentifier","src":"23768:14:51"},{"kind":"number","nativeSrc":"23784:4:51","nodeType":"YulLiteral","src":"23784:4:51","type":"","value":"0xa0"}],"functionName":{"name":"add","nativeSrc":"23764:3:51","nodeType":"YulIdentifier","src":"23764:3:51"},"nativeSrc":"23764:25:51","nodeType":"YulFunctionCall","src":"23764:25:51"}],"functionName":{"name":"mload","nativeSrc":"23758:5:51","nodeType":"YulIdentifier","src":"23758:5:51"},"nativeSrc":"23758:32:51","nodeType":"YulFunctionCall","src":"23758:32:51"},"variables":[{"name":"memberValue0_7","nativeSrc":"23740:14:51","nodeType":"YulTypedName","src":"23740:14:51","type":""}]},{"expression":{"arguments":[{"name":"memberValue0_7","nativeSrc":"23817:14:51","nodeType":"YulIdentifier","src":"23817:14:51"},{"arguments":[{"name":"headStart","nativeSrc":"23837:9:51","nodeType":"YulIdentifier","src":"23837:9:51"},{"kind":"number","nativeSrc":"23848:3:51","nodeType":"YulLiteral","src":"23848:3:51","type":"","value":"352"}],"functionName":{"name":"add","nativeSrc":"23833:3:51","nodeType":"YulIdentifier","src":"23833:3:51"},"nativeSrc":"23833:19:51","nodeType":"YulFunctionCall","src":"23833:19:51"}],"functionName":{"name":"abi_encode_uint64","nativeSrc":"23799:17:51","nodeType":"YulIdentifier","src":"23799:17:51"},"nativeSrc":"23799:54:51","nodeType":"YulFunctionCall","src":"23799:54:51"},"nativeSrc":"23799:54:51","nodeType":"YulExpressionStatement","src":"23799:54:51"},{"nativeSrc":"23862:14:51","nodeType":"YulAssignment","src":"23862:14:51","value":{"name":"tail_1","nativeSrc":"23870:6:51","nodeType":"YulIdentifier","src":"23870:6:51"},"variableNames":[{"name":"tail","nativeSrc":"23862:4:51","nodeType":"YulIdentifier","src":"23862:4:51"}]}]},"name":"abi_encode_tuple_t_struct$_DataResult_$13240_memory_ptr__to_t_struct$_DataResult_$13240_memory_ptr__fromStack_library_reversed","nativeSrc":"22220:1662:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22356:9:51","nodeType":"YulTypedName","src":"22356:9:51","type":""},{"name":"value0","nativeSrc":"22367:6:51","nodeType":"YulTypedName","src":"22367:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22378:4:51","nodeType":"YulTypedName","src":"22378:4:51","type":""}],"src":"22220:1662:51"},{"body":{"nativeSrc":"23967:169:51","nodeType":"YulBlock","src":"23967:169:51","statements":[{"body":{"nativeSrc":"24013:16:51","nodeType":"YulBlock","src":"24013:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24022:1:51","nodeType":"YulLiteral","src":"24022:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"24025:1:51","nodeType":"YulLiteral","src":"24025:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"24015:6:51","nodeType":"YulIdentifier","src":"24015:6:51"},"nativeSrc":"24015:12:51","nodeType":"YulFunctionCall","src":"24015:12:51"},"nativeSrc":"24015:12:51","nodeType":"YulExpressionStatement","src":"24015:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"23988:7:51","nodeType":"YulIdentifier","src":"23988:7:51"},{"name":"headStart","nativeSrc":"23997:9:51","nodeType":"YulIdentifier","src":"23997:9:51"}],"functionName":{"name":"sub","nativeSrc":"23984:3:51","nodeType":"YulIdentifier","src":"23984:3:51"},"nativeSrc":"23984:23:51","nodeType":"YulFunctionCall","src":"23984:23:51"},{"kind":"number","nativeSrc":"24009:2:51","nodeType":"YulLiteral","src":"24009:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"23980:3:51","nodeType":"YulIdentifier","src":"23980:3:51"},"nativeSrc":"23980:32:51","nodeType":"YulFunctionCall","src":"23980:32:51"},"nativeSrc":"23977:52:51","nodeType":"YulIf","src":"23977:52:51"},{"nativeSrc":"24038:29:51","nodeType":"YulVariableDeclaration","src":"24038:29:51","value":{"arguments":[{"name":"headStart","nativeSrc":"24057:9:51","nodeType":"YulIdentifier","src":"24057:9:51"}],"functionName":{"name":"mload","nativeSrc":"24051:5:51","nodeType":"YulIdentifier","src":"24051:5:51"},"nativeSrc":"24051:16:51","nodeType":"YulFunctionCall","src":"24051:16:51"},"variables":[{"name":"value","nativeSrc":"24042:5:51","nodeType":"YulTypedName","src":"24042:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"24100:5:51","nodeType":"YulIdentifier","src":"24100:5:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"24076:23:51","nodeType":"YulIdentifier","src":"24076:23:51"},"nativeSrc":"24076:30:51","nodeType":"YulFunctionCall","src":"24076:30:51"},"nativeSrc":"24076:30:51","nodeType":"YulExpressionStatement","src":"24076:30:51"},{"nativeSrc":"24115:15:51","nodeType":"YulAssignment","src":"24115:15:51","value":{"name":"value","nativeSrc":"24125:5:51","nodeType":"YulIdentifier","src":"24125:5:51"},"variableNames":[{"name":"value0","nativeSrc":"24115:6:51","nodeType":"YulIdentifier","src":"24115:6:51"}]}]},"name":"abi_decode_tuple_t_uint64_fromMemory","nativeSrc":"23887:249:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23933:9:51","nodeType":"YulTypedName","src":"23933:9:51","type":""},{"name":"dataEnd","nativeSrc":"23944:7:51","nodeType":"YulTypedName","src":"23944:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"23956:6:51","nodeType":"YulTypedName","src":"23956:6:51","type":""}],"src":"23887:249:51"},{"body":{"nativeSrc":"24184:136:51","nodeType":"YulBlock","src":"24184:136:51","statements":[{"body":{"nativeSrc":"24229:85:51","nodeType":"YulBlock","src":"24229:85:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"24258:1:51","nodeType":"YulLiteral","src":"24258:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"24261:1:51","nodeType":"YulLiteral","src":"24261:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"24264:1:51","nodeType":"YulLiteral","src":"24264:1:51","type":"","value":"4"}],"functionName":{"name":"returndatacopy","nativeSrc":"24243:14:51","nodeType":"YulIdentifier","src":"24243:14:51"},"nativeSrc":"24243:23:51","nodeType":"YulFunctionCall","src":"24243:23:51"},"nativeSrc":"24243:23:51","nodeType":"YulExpressionStatement","src":"24243:23:51"},{"nativeSrc":"24279:25:51","nodeType":"YulAssignment","src":"24279:25:51","value":{"arguments":[{"kind":"number","nativeSrc":"24290:3:51","nodeType":"YulLiteral","src":"24290:3:51","type":"","value":"224"},{"arguments":[{"kind":"number","nativeSrc":"24301:1:51","nodeType":"YulLiteral","src":"24301:1:51","type":"","value":"0"}],"functionName":{"name":"mload","nativeSrc":"24295:5:51","nodeType":"YulIdentifier","src":"24295:5:51"},"nativeSrc":"24295:8:51","nodeType":"YulFunctionCall","src":"24295:8:51"}],"functionName":{"name":"shr","nativeSrc":"24286:3:51","nodeType":"YulIdentifier","src":"24286:3:51"},"nativeSrc":"24286:18:51","nodeType":"YulFunctionCall","src":"24286:18:51"},"variableNames":[{"name":"sig","nativeSrc":"24279:3:51","nodeType":"YulIdentifier","src":"24279:3:51"}]}]},"condition":{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"24200:14:51","nodeType":"YulIdentifier","src":"24200:14:51"},"nativeSrc":"24200:16:51","nodeType":"YulFunctionCall","src":"24200:16:51"},{"kind":"number","nativeSrc":"24218:1:51","nodeType":"YulLiteral","src":"24218:1:51","type":"","value":"3"}],"functionName":{"name":"gt","nativeSrc":"24197:2:51","nodeType":"YulIdentifier","src":"24197:2:51"},"nativeSrc":"24197:23:51","nodeType":"YulFunctionCall","src":"24197:23:51"},"nativeSrc":"24194:120:51","nodeType":"YulIf","src":"24194:120:51"}]},"name":"return_data_selector","nativeSrc":"24141:179:51","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"sig","nativeSrc":"24176:3:51","nodeType":"YulTypedName","src":"24176:3:51","type":""}],"src":"24141:179:51"},{"body":{"nativeSrc":"24372:581:51","nodeType":"YulBlock","src":"24372:581:51","statements":[{"body":{"nativeSrc":"24412:9:51","nodeType":"YulBlock","src":"24412:9:51","statements":[{"nativeSrc":"24414:5:51","nodeType":"YulLeave","src":"24414:5:51"}]},"condition":{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"24388:14:51","nodeType":"YulIdentifier","src":"24388:14:51"},"nativeSrc":"24388:16:51","nodeType":"YulFunctionCall","src":"24388:16:51"},{"kind":"number","nativeSrc":"24406:4:51","nodeType":"YulLiteral","src":"24406:4:51","type":"","value":"0x44"}],"functionName":{"name":"lt","nativeSrc":"24385:2:51","nodeType":"YulIdentifier","src":"24385:2:51"},"nativeSrc":"24385:26:51","nodeType":"YulFunctionCall","src":"24385:26:51"},"nativeSrc":"24382:39:51","nodeType":"YulIf","src":"24382:39:51"},{"nativeSrc":"24430:21:51","nodeType":"YulVariableDeclaration","src":"24430:21:51","value":{"arguments":[{"kind":"number","nativeSrc":"24448:2:51","nodeType":"YulLiteral","src":"24448:2:51","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"24442:5:51","nodeType":"YulIdentifier","src":"24442:5:51"},"nativeSrc":"24442:9:51","nodeType":"YulFunctionCall","src":"24442:9:51"},"variables":[{"name":"data","nativeSrc":"24434:4:51","nodeType":"YulTypedName","src":"24434:4:51","type":""}]},{"expression":{"arguments":[{"name":"data","nativeSrc":"24475:4:51","nodeType":"YulIdentifier","src":"24475:4:51"},{"kind":"number","nativeSrc":"24481:1:51","nodeType":"YulLiteral","src":"24481:1:51","type":"","value":"4"},{"arguments":[{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"24488:14:51","nodeType":"YulIdentifier","src":"24488:14:51"},"nativeSrc":"24488:16:51","nodeType":"YulFunctionCall","src":"24488:16:51"},{"arguments":[{"kind":"number","nativeSrc":"24510:1:51","nodeType":"YulLiteral","src":"24510:1:51","type":"","value":"3"}],"functionName":{"name":"not","nativeSrc":"24506:3:51","nodeType":"YulIdentifier","src":"24506:3:51"},"nativeSrc":"24506:6:51","nodeType":"YulFunctionCall","src":"24506:6:51"}],"functionName":{"name":"add","nativeSrc":"24484:3:51","nodeType":"YulIdentifier","src":"24484:3:51"},"nativeSrc":"24484:29:51","nodeType":"YulFunctionCall","src":"24484:29:51"}],"functionName":{"name":"returndatacopy","nativeSrc":"24460:14:51","nodeType":"YulIdentifier","src":"24460:14:51"},"nativeSrc":"24460:54:51","nodeType":"YulFunctionCall","src":"24460:54:51"},"nativeSrc":"24460:54:51","nodeType":"YulExpressionStatement","src":"24460:54:51"},{"nativeSrc":"24523:25:51","nodeType":"YulVariableDeclaration","src":"24523:25:51","value":{"arguments":[{"name":"data","nativeSrc":"24543:4:51","nodeType":"YulIdentifier","src":"24543:4:51"}],"functionName":{"name":"mload","nativeSrc":"24537:5:51","nodeType":"YulIdentifier","src":"24537:5:51"},"nativeSrc":"24537:11:51","nodeType":"YulFunctionCall","src":"24537:11:51"},"variables":[{"name":"offset","nativeSrc":"24527:6:51","nodeType":"YulTypedName","src":"24527:6:51","type":""}]},{"body":{"nativeSrc":"24636:9:51","nodeType":"YulBlock","src":"24636:9:51","statements":[{"nativeSrc":"24638:5:51","nodeType":"YulLeave","src":"24638:5:51"}]},"condition":{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"24566:6:51","nodeType":"YulIdentifier","src":"24566:6:51"},{"kind":"number","nativeSrc":"24574:18:51","nodeType":"YulLiteral","src":"24574:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"24563:2:51","nodeType":"YulIdentifier","src":"24563:2:51"},"nativeSrc":"24563:30:51","nodeType":"YulFunctionCall","src":"24563:30:51"},{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"24602:6:51","nodeType":"YulIdentifier","src":"24602:6:51"},{"kind":"number","nativeSrc":"24610:4:51","nodeType":"YulLiteral","src":"24610:4:51","type":"","value":"0x24"}],"functionName":{"name":"add","nativeSrc":"24598:3:51","nodeType":"YulIdentifier","src":"24598:3:51"},"nativeSrc":"24598:17:51","nodeType":"YulFunctionCall","src":"24598:17:51"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"24617:14:51","nodeType":"YulIdentifier","src":"24617:14:51"},"nativeSrc":"24617:16:51","nodeType":"YulFunctionCall","src":"24617:16:51"}],"functionName":{"name":"gt","nativeSrc":"24595:2:51","nodeType":"YulIdentifier","src":"24595:2:51"},"nativeSrc":"24595:39:51","nodeType":"YulFunctionCall","src":"24595:39:51"}],"functionName":{"name":"or","nativeSrc":"24560:2:51","nodeType":"YulIdentifier","src":"24560:2:51"},"nativeSrc":"24560:75:51","nodeType":"YulFunctionCall","src":"24560:75:51"},"nativeSrc":"24557:88:51","nodeType":"YulIf","src":"24557:88:51"},{"nativeSrc":"24654:28:51","nodeType":"YulVariableDeclaration","src":"24654:28:51","value":{"arguments":[{"name":"data","nativeSrc":"24669:4:51","nodeType":"YulIdentifier","src":"24669:4:51"},{"name":"offset","nativeSrc":"24675:6:51","nodeType":"YulIdentifier","src":"24675:6:51"}],"functionName":{"name":"add","nativeSrc":"24665:3:51","nodeType":"YulIdentifier","src":"24665:3:51"},"nativeSrc":"24665:17:51","nodeType":"YulFunctionCall","src":"24665:17:51"},"variables":[{"name":"msg","nativeSrc":"24658:3:51","nodeType":"YulTypedName","src":"24658:3:51","type":""}]},{"nativeSrc":"24691:24:51","nodeType":"YulVariableDeclaration","src":"24691:24:51","value":{"arguments":[{"name":"msg","nativeSrc":"24711:3:51","nodeType":"YulIdentifier","src":"24711:3:51"}],"functionName":{"name":"mload","nativeSrc":"24705:5:51","nodeType":"YulIdentifier","src":"24705:5:51"},"nativeSrc":"24705:10:51","nodeType":"YulFunctionCall","src":"24705:10:51"},"variables":[{"name":"length","nativeSrc":"24695:6:51","nodeType":"YulTypedName","src":"24695:6:51","type":""}]},{"body":{"nativeSrc":"24758:9:51","nodeType":"YulBlock","src":"24758:9:51","statements":[{"nativeSrc":"24760:5:51","nodeType":"YulLeave","src":"24760:5:51"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"24730:6:51","nodeType":"YulIdentifier","src":"24730:6:51"},{"kind":"number","nativeSrc":"24738:18:51","nodeType":"YulLiteral","src":"24738:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"24727:2:51","nodeType":"YulIdentifier","src":"24727:2:51"},"nativeSrc":"24727:30:51","nodeType":"YulFunctionCall","src":"24727:30:51"},"nativeSrc":"24724:43:51","nodeType":"YulIf","src":"24724:43:51"},{"body":{"nativeSrc":"24853:9:51","nodeType":"YulBlock","src":"24853:9:51","statements":[{"nativeSrc":"24855:5:51","nodeType":"YulLeave","src":"24855:5:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"msg","nativeSrc":"24790:3:51","nodeType":"YulIdentifier","src":"24790:3:51"},{"name":"length","nativeSrc":"24795:6:51","nodeType":"YulIdentifier","src":"24795:6:51"}],"functionName":{"name":"add","nativeSrc":"24786:3:51","nodeType":"YulIdentifier","src":"24786:3:51"},"nativeSrc":"24786:16:51","nodeType":"YulFunctionCall","src":"24786:16:51"},{"kind":"number","nativeSrc":"24804:4:51","nodeType":"YulLiteral","src":"24804:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"24782:3:51","nodeType":"YulIdentifier","src":"24782:3:51"},"nativeSrc":"24782:27:51","nodeType":"YulFunctionCall","src":"24782:27:51"},{"arguments":[{"arguments":[{"name":"data","nativeSrc":"24819:4:51","nodeType":"YulIdentifier","src":"24819:4:51"},{"arguments":[],"functionName":{"name":"returndatasize","nativeSrc":"24825:14:51","nodeType":"YulIdentifier","src":"24825:14:51"},"nativeSrc":"24825:16:51","nodeType":"YulFunctionCall","src":"24825:16:51"}],"functionName":{"name":"add","nativeSrc":"24815:3:51","nodeType":"YulIdentifier","src":"24815:3:51"},"nativeSrc":"24815:27:51","nodeType":"YulFunctionCall","src":"24815:27:51"},{"arguments":[{"kind":"number","nativeSrc":"24848:1:51","nodeType":"YulLiteral","src":"24848:1:51","type":"","value":"3"}],"functionName":{"name":"not","nativeSrc":"24844:3:51","nodeType":"YulIdentifier","src":"24844:3:51"},"nativeSrc":"24844:6:51","nodeType":"YulFunctionCall","src":"24844:6:51"}],"functionName":{"name":"add","nativeSrc":"24811:3:51","nodeType":"YulIdentifier","src":"24811:3:51"},"nativeSrc":"24811:40:51","nodeType":"YulFunctionCall","src":"24811:40:51"}],"functionName":{"name":"gt","nativeSrc":"24779:2:51","nodeType":"YulIdentifier","src":"24779:2:51"},"nativeSrc":"24779:73:51","nodeType":"YulFunctionCall","src":"24779:73:51"},"nativeSrc":"24776:86:51","nodeType":"YulIf","src":"24776:86:51"},{"expression":{"arguments":[{"name":"data","nativeSrc":"24891:4:51","nodeType":"YulIdentifier","src":"24891:4:51"},{"arguments":[{"arguments":[{"name":"offset","nativeSrc":"24905:6:51","nodeType":"YulIdentifier","src":"24905:6:51"},{"name":"length","nativeSrc":"24913:6:51","nodeType":"YulIdentifier","src":"24913:6:51"}],"functionName":{"name":"add","nativeSrc":"24901:3:51","nodeType":"YulIdentifier","src":"24901:3:51"},"nativeSrc":"24901:19:51","nodeType":"YulFunctionCall","src":"24901:19:51"},{"kind":"number","nativeSrc":"24922:4:51","nodeType":"YulLiteral","src":"24922:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"24897:3:51","nodeType":"YulIdentifier","src":"24897:3:51"},"nativeSrc":"24897:30:51","nodeType":"YulFunctionCall","src":"24897:30:51"}],"functionName":{"name":"finalize_allocation","nativeSrc":"24871:19:51","nodeType":"YulIdentifier","src":"24871:19:51"},"nativeSrc":"24871:57:51","nodeType":"YulFunctionCall","src":"24871:57:51"},"nativeSrc":"24871:57:51","nodeType":"YulExpressionStatement","src":"24871:57:51"},{"nativeSrc":"24937:10:51","nodeType":"YulAssignment","src":"24937:10:51","value":{"name":"msg","nativeSrc":"24944:3:51","nodeType":"YulIdentifier","src":"24944:3:51"},"variableNames":[{"name":"ret","nativeSrc":"24937:3:51","nodeType":"YulIdentifier","src":"24937:3:51"}]}]},"name":"try_decode_error_message","nativeSrc":"24325:628:51","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"ret","nativeSrc":"24364:3:51","nodeType":"YulTypedName","src":"24364:3:51","type":""}],"src":"24325:628:51"},{"body":{"nativeSrc":"25181:212:51","nodeType":"YulBlock","src":"25181:212:51","statements":[{"nativeSrc":"25191:26:51","nodeType":"YulAssignment","src":"25191:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"25203:9:51","nodeType":"YulIdentifier","src":"25203:9:51"},{"kind":"number","nativeSrc":"25214:2:51","nodeType":"YulLiteral","src":"25214:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25199:3:51","nodeType":"YulIdentifier","src":"25199:3:51"},"nativeSrc":"25199:18:51","nodeType":"YulFunctionCall","src":"25199:18:51"},"variableNames":[{"name":"tail","nativeSrc":"25191:4:51","nodeType":"YulIdentifier","src":"25191:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25233:9:51","nodeType":"YulIdentifier","src":"25233:9:51"},{"arguments":[{"name":"value0","nativeSrc":"25248:6:51","nodeType":"YulIdentifier","src":"25248:6:51"},{"kind":"number","nativeSrc":"25256:18:51","nodeType":"YulLiteral","src":"25256:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"25244:3:51","nodeType":"YulIdentifier","src":"25244:3:51"},"nativeSrc":"25244:31:51","nodeType":"YulFunctionCall","src":"25244:31:51"}],"functionName":{"name":"mstore","nativeSrc":"25226:6:51","nodeType":"YulIdentifier","src":"25226:6:51"},"nativeSrc":"25226:50:51","nodeType":"YulFunctionCall","src":"25226:50:51"},"nativeSrc":"25226:50:51","nodeType":"YulExpressionStatement","src":"25226:50:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25296:9:51","nodeType":"YulIdentifier","src":"25296:9:51"},{"kind":"number","nativeSrc":"25307:2:51","nodeType":"YulLiteral","src":"25307:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25292:3:51","nodeType":"YulIdentifier","src":"25292:3:51"},"nativeSrc":"25292:18:51","nodeType":"YulFunctionCall","src":"25292:18:51"},{"arguments":[{"name":"value1","nativeSrc":"25316:6:51","nodeType":"YulIdentifier","src":"25316:6:51"},{"kind":"number","nativeSrc":"25324:18:51","nodeType":"YulLiteral","src":"25324:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"25312:3:51","nodeType":"YulIdentifier","src":"25312:3:51"},"nativeSrc":"25312:31:51","nodeType":"YulFunctionCall","src":"25312:31:51"}],"functionName":{"name":"mstore","nativeSrc":"25285:6:51","nodeType":"YulIdentifier","src":"25285:6:51"},"nativeSrc":"25285:59:51","nodeType":"YulFunctionCall","src":"25285:59:51"},"nativeSrc":"25285:59:51","nodeType":"YulExpressionStatement","src":"25285:59:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25364:9:51","nodeType":"YulIdentifier","src":"25364:9:51"},{"kind":"number","nativeSrc":"25375:2:51","nodeType":"YulLiteral","src":"25375:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25360:3:51","nodeType":"YulIdentifier","src":"25360:3:51"},"nativeSrc":"25360:18:51","nodeType":"YulFunctionCall","src":"25360:18:51"},{"name":"value2","nativeSrc":"25380:6:51","nodeType":"YulIdentifier","src":"25380:6:51"}],"functionName":{"name":"mstore","nativeSrc":"25353:6:51","nodeType":"YulIdentifier","src":"25353:6:51"},"nativeSrc":"25353:34:51","nodeType":"YulFunctionCall","src":"25353:34:51"},"nativeSrc":"25353:34:51","nodeType":"YulExpressionStatement","src":"25353:34:51"}]},"name":"abi_encode_tuple_t_uint64_t_userDefinedValueType$_Timestamp_$13106_t_userDefinedValueType$_TransactionHash_$13108__to_t_uint256_t_uint64_t_bytes32__fromStack_reversed","nativeSrc":"24958:435:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25134:9:51","nodeType":"YulTypedName","src":"25134:9:51","type":""},{"name":"value2","nativeSrc":"25145:6:51","nodeType":"YulTypedName","src":"25145:6:51","type":""},{"name":"value1","nativeSrc":"25153:6:51","nodeType":"YulTypedName","src":"25153:6:51","type":""},{"name":"value0","nativeSrc":"25161:6:51","nodeType":"YulTypedName","src":"25161:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25172:4:51","nodeType":"YulTypedName","src":"25172:4:51","type":""}],"src":"24958:435:51"},{"body":{"nativeSrc":"25572:168:51","nodeType":"YulBlock","src":"25572:168:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25589:9:51","nodeType":"YulIdentifier","src":"25589:9:51"},{"kind":"number","nativeSrc":"25600:2:51","nodeType":"YulLiteral","src":"25600:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"25582:6:51","nodeType":"YulIdentifier","src":"25582:6:51"},"nativeSrc":"25582:21:51","nodeType":"YulFunctionCall","src":"25582:21:51"},"nativeSrc":"25582:21:51","nodeType":"YulExpressionStatement","src":"25582:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25623:9:51","nodeType":"YulIdentifier","src":"25623:9:51"},{"kind":"number","nativeSrc":"25634:2:51","nodeType":"YulLiteral","src":"25634:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25619:3:51","nodeType":"YulIdentifier","src":"25619:3:51"},"nativeSrc":"25619:18:51","nodeType":"YulFunctionCall","src":"25619:18:51"},{"kind":"number","nativeSrc":"25639:2:51","nodeType":"YulLiteral","src":"25639:2:51","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"25612:6:51","nodeType":"YulIdentifier","src":"25612:6:51"},"nativeSrc":"25612:30:51","nodeType":"YulFunctionCall","src":"25612:30:51"},"nativeSrc":"25612:30:51","nodeType":"YulExpressionStatement","src":"25612:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25662:9:51","nodeType":"YulIdentifier","src":"25662:9:51"},{"kind":"number","nativeSrc":"25673:2:51","nodeType":"YulLiteral","src":"25673:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25658:3:51","nodeType":"YulIdentifier","src":"25658:3:51"},"nativeSrc":"25658:18:51","nodeType":"YulFunctionCall","src":"25658:18:51"},{"hexValue":"6e6f7420656e6f7567682062616c616e6365","kind":"string","nativeSrc":"25678:20:51","nodeType":"YulLiteral","src":"25678:20:51","type":"","value":"not enough balance"}],"functionName":{"name":"mstore","nativeSrc":"25651:6:51","nodeType":"YulIdentifier","src":"25651:6:51"},"nativeSrc":"25651:48:51","nodeType":"YulFunctionCall","src":"25651:48:51"},"nativeSrc":"25651:48:51","nodeType":"YulExpressionStatement","src":"25651:48:51"},{"nativeSrc":"25708:26:51","nodeType":"YulAssignment","src":"25708:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"25720:9:51","nodeType":"YulIdentifier","src":"25720:9:51"},{"kind":"number","nativeSrc":"25731:2:51","nodeType":"YulLiteral","src":"25731:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25716:3:51","nodeType":"YulIdentifier","src":"25716:3:51"},"nativeSrc":"25716:18:51","nodeType":"YulFunctionCall","src":"25716:18:51"},"variableNames":[{"name":"tail","nativeSrc":"25708:4:51","nodeType":"YulIdentifier","src":"25708:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_596712763af5ad819c1a1c8db05ac93e50918d28937626717ff5e1d919b4454a__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"25398:342:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25549:9:51","nodeType":"YulTypedName","src":"25549:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25563:4:51","nodeType":"YulTypedName","src":"25563:4:51","type":""}],"src":"25398:342:51"},{"body":{"nativeSrc":"25919:173:51","nodeType":"YulBlock","src":"25919:173:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25936:9:51","nodeType":"YulIdentifier","src":"25936:9:51"},{"kind":"number","nativeSrc":"25947:2:51","nodeType":"YulLiteral","src":"25947:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"25929:6:51","nodeType":"YulIdentifier","src":"25929:6:51"},"nativeSrc":"25929:21:51","nodeType":"YulFunctionCall","src":"25929:21:51"},"nativeSrc":"25929:21:51","nodeType":"YulExpressionStatement","src":"25929:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25970:9:51","nodeType":"YulIdentifier","src":"25970:9:51"},{"kind":"number","nativeSrc":"25981:2:51","nodeType":"YulLiteral","src":"25981:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25966:3:51","nodeType":"YulIdentifier","src":"25966:3:51"},"nativeSrc":"25966:18:51","nodeType":"YulFunctionCall","src":"25966:18:51"},{"kind":"number","nativeSrc":"25986:2:51","nodeType":"YulLiteral","src":"25986:2:51","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"25959:6:51","nodeType":"YulIdentifier","src":"25959:6:51"},"nativeSrc":"25959:30:51","nodeType":"YulFunctionCall","src":"25959:30:51"},"nativeSrc":"25959:30:51","nodeType":"YulExpressionStatement","src":"25959:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26009:9:51","nodeType":"YulIdentifier","src":"26009:9:51"},{"kind":"number","nativeSrc":"26020:2:51","nodeType":"YulLiteral","src":"26020:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26005:3:51","nodeType":"YulIdentifier","src":"26005:3:51"},"nativeSrc":"26005:18:51","nodeType":"YulFunctionCall","src":"26005:18:51"},{"hexValue":"63616e6e6f7420756e777261702074686174206d756368","kind":"string","nativeSrc":"26025:25:51","nodeType":"YulLiteral","src":"26025:25:51","type":"","value":"cannot unwrap that much"}],"functionName":{"name":"mstore","nativeSrc":"25998:6:51","nodeType":"YulIdentifier","src":"25998:6:51"},"nativeSrc":"25998:53:51","nodeType":"YulFunctionCall","src":"25998:53:51"},"nativeSrc":"25998:53:51","nodeType":"YulExpressionStatement","src":"25998:53:51"},{"nativeSrc":"26060:26:51","nodeType":"YulAssignment","src":"26060:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"26072:9:51","nodeType":"YulIdentifier","src":"26072:9:51"},{"kind":"number","nativeSrc":"26083:2:51","nodeType":"YulLiteral","src":"26083:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"26068:3:51","nodeType":"YulIdentifier","src":"26068:3:51"},"nativeSrc":"26068:18:51","nodeType":"YulFunctionCall","src":"26068:18:51"},"variableNames":[{"name":"tail","nativeSrc":"26060:4:51","nodeType":"YulIdentifier","src":"26060:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_c2f7d7791943b6f0be2f5c4696e74b461af6db49d575243d9759641d2894e1d5__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"25745:347:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25896:9:51","nodeType":"YulTypedName","src":"25896:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25910:4:51","nodeType":"YulTypedName","src":"25910:4:51","type":""}],"src":"25745:347:51"},{"body":{"nativeSrc":"26271:167:51","nodeType":"YulBlock","src":"26271:167:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"26288:9:51","nodeType":"YulIdentifier","src":"26288:9:51"},{"kind":"number","nativeSrc":"26299:2:51","nodeType":"YulLiteral","src":"26299:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"26281:6:51","nodeType":"YulIdentifier","src":"26281:6:51"},"nativeSrc":"26281:21:51","nodeType":"YulFunctionCall","src":"26281:21:51"},"nativeSrc":"26281:21:51","nodeType":"YulExpressionStatement","src":"26281:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26322:9:51","nodeType":"YulIdentifier","src":"26322:9:51"},{"kind":"number","nativeSrc":"26333:2:51","nodeType":"YulLiteral","src":"26333:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26318:3:51","nodeType":"YulIdentifier","src":"26318:3:51"},"nativeSrc":"26318:18:51","nodeType":"YulFunctionCall","src":"26318:18:51"},{"kind":"number","nativeSrc":"26338:2:51","nodeType":"YulLiteral","src":"26338:2:51","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"26311:6:51","nodeType":"YulIdentifier","src":"26311:6:51"},"nativeSrc":"26311:30:51","nodeType":"YulFunctionCall","src":"26311:30:51"},"nativeSrc":"26311:30:51","nodeType":"YulExpressionStatement","src":"26311:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26361:9:51","nodeType":"YulIdentifier","src":"26361:9:51"},{"kind":"number","nativeSrc":"26372:2:51","nodeType":"YulLiteral","src":"26372:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26357:3:51","nodeType":"YulIdentifier","src":"26357:3:51"},"nativeSrc":"26357:18:51","nodeType":"YulFunctionCall","src":"26357:18:51"},{"hexValue":"696e76616c696420726563697069656e74","kind":"string","nativeSrc":"26377:19:51","nodeType":"YulLiteral","src":"26377:19:51","type":"","value":"invalid recipient"}],"functionName":{"name":"mstore","nativeSrc":"26350:6:51","nodeType":"YulIdentifier","src":"26350:6:51"},"nativeSrc":"26350:47:51","nodeType":"YulFunctionCall","src":"26350:47:51"},"nativeSrc":"26350:47:51","nodeType":"YulExpressionStatement","src":"26350:47:51"},{"nativeSrc":"26406:26:51","nodeType":"YulAssignment","src":"26406:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"26418:9:51","nodeType":"YulIdentifier","src":"26418:9:51"},{"kind":"number","nativeSrc":"26429:2:51","nodeType":"YulLiteral","src":"26429:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"26414:3:51","nodeType":"YulIdentifier","src":"26414:3:51"},"nativeSrc":"26414:18:51","nodeType":"YulFunctionCall","src":"26414:18:51"},"variableNames":[{"name":"tail","nativeSrc":"26406:4:51","nodeType":"YulIdentifier","src":"26406:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_80c95633eb4d36a63978e9d13e657c438c0d395a23eb33de58bf1d9758a73228__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"26097:341:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26248:9:51","nodeType":"YulTypedName","src":"26248:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26262:4:51","nodeType":"YulTypedName","src":"26262:4:51","type":""}],"src":"26097:341:51"},{"body":{"nativeSrc":"26475:95:51","nodeType":"YulBlock","src":"26475:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"26492:1:51","nodeType":"YulLiteral","src":"26492:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"26499:3:51","nodeType":"YulLiteral","src":"26499:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"26504:10:51","nodeType":"YulLiteral","src":"26504:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"26495:3:51","nodeType":"YulIdentifier","src":"26495:3:51"},"nativeSrc":"26495:20:51","nodeType":"YulFunctionCall","src":"26495:20:51"}],"functionName":{"name":"mstore","nativeSrc":"26485:6:51","nodeType":"YulIdentifier","src":"26485:6:51"},"nativeSrc":"26485:31:51","nodeType":"YulFunctionCall","src":"26485:31:51"},"nativeSrc":"26485:31:51","nodeType":"YulExpressionStatement","src":"26485:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"26532:1:51","nodeType":"YulLiteral","src":"26532:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"26535:4:51","nodeType":"YulLiteral","src":"26535:4:51","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"26525:6:51","nodeType":"YulIdentifier","src":"26525:6:51"},"nativeSrc":"26525:15:51","nodeType":"YulFunctionCall","src":"26525:15:51"},"nativeSrc":"26525:15:51","nodeType":"YulExpressionStatement","src":"26525:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"26556:1:51","nodeType":"YulLiteral","src":"26556:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"26559:4:51","nodeType":"YulLiteral","src":"26559:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"26549:6:51","nodeType":"YulIdentifier","src":"26549:6:51"},"nativeSrc":"26549:15:51","nodeType":"YulFunctionCall","src":"26549:15:51"},"nativeSrc":"26549:15:51","nodeType":"YulExpressionStatement","src":"26549:15:51"}]},"name":"panic_error_0x11","nativeSrc":"26443:127:51","nodeType":"YulFunctionDefinition","src":"26443:127:51"},{"body":{"nativeSrc":"26623:146:51","nodeType":"YulBlock","src":"26623:146:51","statements":[{"nativeSrc":"26633:67:51","nodeType":"YulAssignment","src":"26633:67:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"26649:1:51","nodeType":"YulIdentifier","src":"26649:1:51"},{"kind":"number","nativeSrc":"26652:18:51","nodeType":"YulLiteral","src":"26652:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"26645:3:51","nodeType":"YulIdentifier","src":"26645:3:51"},"nativeSrc":"26645:26:51","nodeType":"YulFunctionCall","src":"26645:26:51"},{"arguments":[{"name":"y","nativeSrc":"26677:1:51","nodeType":"YulIdentifier","src":"26677:1:51"},{"kind":"number","nativeSrc":"26680:18:51","nodeType":"YulLiteral","src":"26680:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"26673:3:51","nodeType":"YulIdentifier","src":"26673:3:51"},"nativeSrc":"26673:26:51","nodeType":"YulFunctionCall","src":"26673:26:51"}],"functionName":{"name":"sub","nativeSrc":"26641:3:51","nodeType":"YulIdentifier","src":"26641:3:51"},"nativeSrc":"26641:59:51","nodeType":"YulFunctionCall","src":"26641:59:51"},"variableNames":[{"name":"diff","nativeSrc":"26633:4:51","nodeType":"YulIdentifier","src":"26633:4:51"}]},{"body":{"nativeSrc":"26741:22:51","nodeType":"YulBlock","src":"26741:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"26743:16:51","nodeType":"YulIdentifier","src":"26743:16:51"},"nativeSrc":"26743:18:51","nodeType":"YulFunctionCall","src":"26743:18:51"},"nativeSrc":"26743:18:51","nodeType":"YulExpressionStatement","src":"26743:18:51"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"26715:4:51","nodeType":"YulIdentifier","src":"26715:4:51"},{"kind":"number","nativeSrc":"26721:18:51","nodeType":"YulLiteral","src":"26721:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"26712:2:51","nodeType":"YulIdentifier","src":"26712:2:51"},"nativeSrc":"26712:28:51","nodeType":"YulFunctionCall","src":"26712:28:51"},"nativeSrc":"26709:54:51","nodeType":"YulIf","src":"26709:54:51"}]},"name":"checked_sub_t_uint64","nativeSrc":"26575:194:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"26605:1:51","nodeType":"YulTypedName","src":"26605:1:51","type":""},{"name":"y","nativeSrc":"26608:1:51","nodeType":"YulTypedName","src":"26608:1:51","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"26614:4:51","nodeType":"YulTypedName","src":"26614:4:51","type":""}],"src":"26575:194:51"},{"body":{"nativeSrc":"26820:158:51","nodeType":"YulBlock","src":"26820:158:51","statements":[{"nativeSrc":"26830:45:51","nodeType":"YulVariableDeclaration","src":"26830:45:51","value":{"arguments":[{"name":"value","nativeSrc":"26849:5:51","nodeType":"YulIdentifier","src":"26849:5:51"},{"kind":"number","nativeSrc":"26856:18:51","nodeType":"YulLiteral","src":"26856:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"26845:3:51","nodeType":"YulIdentifier","src":"26845:3:51"},"nativeSrc":"26845:30:51","nodeType":"YulFunctionCall","src":"26845:30:51"},"variables":[{"name":"value_1","nativeSrc":"26834:7:51","nodeType":"YulTypedName","src":"26834:7:51","type":""}]},{"body":{"nativeSrc":"26919:22:51","nodeType":"YulBlock","src":"26919:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"26921:16:51","nodeType":"YulIdentifier","src":"26921:16:51"},"nativeSrc":"26921:18:51","nodeType":"YulFunctionCall","src":"26921:18:51"},"nativeSrc":"26921:18:51","nodeType":"YulExpressionStatement","src":"26921:18:51"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"26890:7:51","nodeType":"YulIdentifier","src":"26890:7:51"},{"kind":"number","nativeSrc":"26899:18:51","nodeType":"YulLiteral","src":"26899:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"eq","nativeSrc":"26887:2:51","nodeType":"YulIdentifier","src":"26887:2:51"},"nativeSrc":"26887:31:51","nodeType":"YulFunctionCall","src":"26887:31:51"},"nativeSrc":"26884:57:51","nodeType":"YulIf","src":"26884:57:51"},{"nativeSrc":"26950:22:51","nodeType":"YulAssignment","src":"26950:22:51","value":{"arguments":[{"name":"value_1","nativeSrc":"26961:7:51","nodeType":"YulIdentifier","src":"26961:7:51"},{"kind":"number","nativeSrc":"26970:1:51","nodeType":"YulLiteral","src":"26970:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"26957:3:51","nodeType":"YulIdentifier","src":"26957:3:51"},"nativeSrc":"26957:15:51","nodeType":"YulFunctionCall","src":"26957:15:51"},"variableNames":[{"name":"ret","nativeSrc":"26950:3:51","nodeType":"YulIdentifier","src":"26950:3:51"}]}]},"name":"increment_t_uint64","nativeSrc":"26774:204:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"26802:5:51","nodeType":"YulTypedName","src":"26802:5:51","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"26812:3:51","nodeType":"YulTypedName","src":"26812:3:51","type":""}],"src":"26774:204:51"},{"body":{"nativeSrc":"27197:297:51","nodeType":"YulBlock","src":"27197:297:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27214:9:51","nodeType":"YulIdentifier","src":"27214:9:51"},{"arguments":[{"name":"value0","nativeSrc":"27229:6:51","nodeType":"YulIdentifier","src":"27229:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27245:3:51","nodeType":"YulLiteral","src":"27245:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"27250:1:51","nodeType":"YulLiteral","src":"27250:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"27241:3:51","nodeType":"YulIdentifier","src":"27241:3:51"},"nativeSrc":"27241:11:51","nodeType":"YulFunctionCall","src":"27241:11:51"},{"kind":"number","nativeSrc":"27254:1:51","nodeType":"YulLiteral","src":"27254:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"27237:3:51","nodeType":"YulIdentifier","src":"27237:3:51"},"nativeSrc":"27237:19:51","nodeType":"YulFunctionCall","src":"27237:19:51"}],"functionName":{"name":"and","nativeSrc":"27225:3:51","nodeType":"YulIdentifier","src":"27225:3:51"},"nativeSrc":"27225:32:51","nodeType":"YulFunctionCall","src":"27225:32:51"}],"functionName":{"name":"mstore","nativeSrc":"27207:6:51","nodeType":"YulIdentifier","src":"27207:6:51"},"nativeSrc":"27207:51:51","nodeType":"YulFunctionCall","src":"27207:51:51"},"nativeSrc":"27207:51:51","nodeType":"YulExpressionStatement","src":"27207:51:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27278:9:51","nodeType":"YulIdentifier","src":"27278:9:51"},{"kind":"number","nativeSrc":"27289:2:51","nodeType":"YulLiteral","src":"27289:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27274:3:51","nodeType":"YulIdentifier","src":"27274:3:51"},"nativeSrc":"27274:18:51","nodeType":"YulFunctionCall","src":"27274:18:51"},{"kind":"number","nativeSrc":"27294:3:51","nodeType":"YulLiteral","src":"27294:3:51","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"27267:6:51","nodeType":"YulIdentifier","src":"27267:6:51"},"nativeSrc":"27267:31:51","nodeType":"YulFunctionCall","src":"27267:31:51"},"nativeSrc":"27267:31:51","nodeType":"YulExpressionStatement","src":"27267:31:51"},{"nativeSrc":"27307:70:51","nodeType":"YulAssignment","src":"27307:70:51","value":{"arguments":[{"name":"value1","nativeSrc":"27341:6:51","nodeType":"YulIdentifier","src":"27341:6:51"},{"name":"value2","nativeSrc":"27349:6:51","nodeType":"YulIdentifier","src":"27349:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"27361:9:51","nodeType":"YulIdentifier","src":"27361:9:51"},{"kind":"number","nativeSrc":"27372:3:51","nodeType":"YulLiteral","src":"27372:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"27357:3:51","nodeType":"YulIdentifier","src":"27357:3:51"},"nativeSrc":"27357:19:51","nodeType":"YulFunctionCall","src":"27357:19:51"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"27315:25:51","nodeType":"YulIdentifier","src":"27315:25:51"},"nativeSrc":"27315:62:51","nodeType":"YulFunctionCall","src":"27315:62:51"},"variableNames":[{"name":"tail","nativeSrc":"27307:4:51","nodeType":"YulIdentifier","src":"27307:4:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27397:9:51","nodeType":"YulIdentifier","src":"27397:9:51"},{"kind":"number","nativeSrc":"27408:2:51","nodeType":"YulLiteral","src":"27408:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27393:3:51","nodeType":"YulIdentifier","src":"27393:3:51"},"nativeSrc":"27393:18:51","nodeType":"YulFunctionCall","src":"27393:18:51"},{"arguments":[{"name":"value3","nativeSrc":"27417:6:51","nodeType":"YulIdentifier","src":"27417:6:51"},{"kind":"number","nativeSrc":"27425:18:51","nodeType":"YulLiteral","src":"27425:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"27413:3:51","nodeType":"YulIdentifier","src":"27413:3:51"},"nativeSrc":"27413:31:51","nodeType":"YulFunctionCall","src":"27413:31:51"}],"functionName":{"name":"mstore","nativeSrc":"27386:6:51","nodeType":"YulIdentifier","src":"27386:6:51"},"nativeSrc":"27386:59:51","nodeType":"YulFunctionCall","src":"27386:59:51"},"nativeSrc":"27386:59:51","nodeType":"YulExpressionStatement","src":"27386:59:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27465:9:51","nodeType":"YulIdentifier","src":"27465:9:51"},{"kind":"number","nativeSrc":"27476:2:51","nodeType":"YulLiteral","src":"27476:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27461:3:51","nodeType":"YulIdentifier","src":"27461:3:51"},"nativeSrc":"27461:18:51","nodeType":"YulFunctionCall","src":"27461:18:51"},{"name":"value4","nativeSrc":"27481:6:51","nodeType":"YulIdentifier","src":"27481:6:51"}],"functionName":{"name":"mstore","nativeSrc":"27454:6:51","nodeType":"YulIdentifier","src":"27454:6:51"},"nativeSrc":"27454:34:51","nodeType":"YulFunctionCall","src":"27454:34:51"},"nativeSrc":"27454:34:51","nodeType":"YulExpressionStatement","src":"27454: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":"26983:511:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27134:9:51","nodeType":"YulTypedName","src":"27134:9:51","type":""},{"name":"value4","nativeSrc":"27145:6:51","nodeType":"YulTypedName","src":"27145:6:51","type":""},{"name":"value3","nativeSrc":"27153:6:51","nodeType":"YulTypedName","src":"27153:6:51","type":""},{"name":"value2","nativeSrc":"27161:6:51","nodeType":"YulTypedName","src":"27161:6:51","type":""},{"name":"value1","nativeSrc":"27169:6:51","nodeType":"YulTypedName","src":"27169:6:51","type":""},{"name":"value0","nativeSrc":"27177:6:51","nodeType":"YulTypedName","src":"27177:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27188:4:51","nodeType":"YulTypedName","src":"27188:4:51","type":""}],"src":"26983:511:51"},{"body":{"nativeSrc":"27531:95:51","nodeType":"YulBlock","src":"27531:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"27548:1:51","nodeType":"YulLiteral","src":"27548:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"27555:3:51","nodeType":"YulLiteral","src":"27555:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"27560:10:51","nodeType":"YulLiteral","src":"27560:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"27551:3:51","nodeType":"YulIdentifier","src":"27551:3:51"},"nativeSrc":"27551:20:51","nodeType":"YulFunctionCall","src":"27551:20:51"}],"functionName":{"name":"mstore","nativeSrc":"27541:6:51","nodeType":"YulIdentifier","src":"27541:6:51"},"nativeSrc":"27541:31:51","nodeType":"YulFunctionCall","src":"27541:31:51"},"nativeSrc":"27541:31:51","nodeType":"YulExpressionStatement","src":"27541:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"27588:1:51","nodeType":"YulLiteral","src":"27588:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"27591:4:51","nodeType":"YulLiteral","src":"27591:4:51","type":"","value":"0x01"}],"functionName":{"name":"mstore","nativeSrc":"27581:6:51","nodeType":"YulIdentifier","src":"27581:6:51"},"nativeSrc":"27581:15:51","nodeType":"YulFunctionCall","src":"27581:15:51"},"nativeSrc":"27581:15:51","nodeType":"YulExpressionStatement","src":"27581:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"27612:1:51","nodeType":"YulLiteral","src":"27612:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"27615:4:51","nodeType":"YulLiteral","src":"27615:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"27605:6:51","nodeType":"YulIdentifier","src":"27605:6:51"},"nativeSrc":"27605:15:51","nodeType":"YulFunctionCall","src":"27605:15:51"},"nativeSrc":"27605:15:51","nodeType":"YulExpressionStatement","src":"27605:15:51"}]},"name":"panic_error_0x01","nativeSrc":"27499:127:51","nodeType":"YulFunctionDefinition","src":"27499:127:51"},{"body":{"nativeSrc":"27729:179:51","nodeType":"YulBlock","src":"27729:179:51","statements":[{"body":{"nativeSrc":"27775:16:51","nodeType":"YulBlock","src":"27775:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"27784:1:51","nodeType":"YulLiteral","src":"27784:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"27787:1:51","nodeType":"YulLiteral","src":"27787:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"27777:6:51","nodeType":"YulIdentifier","src":"27777:6:51"},"nativeSrc":"27777:12:51","nodeType":"YulFunctionCall","src":"27777:12:51"},"nativeSrc":"27777:12:51","nodeType":"YulExpressionStatement","src":"27777:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"27750:7:51","nodeType":"YulIdentifier","src":"27750:7:51"},{"name":"headStart","nativeSrc":"27759:9:51","nodeType":"YulIdentifier","src":"27759:9:51"}],"functionName":{"name":"sub","nativeSrc":"27746:3:51","nodeType":"YulIdentifier","src":"27746:3:51"},"nativeSrc":"27746:23:51","nodeType":"YulFunctionCall","src":"27746:23:51"},{"kind":"number","nativeSrc":"27771:2:51","nodeType":"YulLiteral","src":"27771:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"27742:3:51","nodeType":"YulIdentifier","src":"27742:3:51"},"nativeSrc":"27742:32:51","nodeType":"YulFunctionCall","src":"27742:32:51"},"nativeSrc":"27739:52:51","nodeType":"YulIf","src":"27739:52:51"},{"nativeSrc":"27800:29:51","nodeType":"YulVariableDeclaration","src":"27800:29:51","value":{"arguments":[{"name":"headStart","nativeSrc":"27819:9:51","nodeType":"YulIdentifier","src":"27819:9:51"}],"functionName":{"name":"mload","nativeSrc":"27813:5:51","nodeType":"YulIdentifier","src":"27813:5:51"},"nativeSrc":"27813:16:51","nodeType":"YulFunctionCall","src":"27813:16:51"},"variables":[{"name":"value","nativeSrc":"27804:5:51","nodeType":"YulTypedName","src":"27804:5:51","type":""}]},{"body":{"nativeSrc":"27862:16:51","nodeType":"YulBlock","src":"27862:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"27871:1:51","nodeType":"YulLiteral","src":"27871:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"27874:1:51","nodeType":"YulLiteral","src":"27874:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"27864:6:51","nodeType":"YulIdentifier","src":"27864:6:51"},"nativeSrc":"27864:12:51","nodeType":"YulFunctionCall","src":"27864:12:51"},"nativeSrc":"27864:12:51","nodeType":"YulExpressionStatement","src":"27864:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27851:5:51","nodeType":"YulIdentifier","src":"27851:5:51"},{"kind":"number","nativeSrc":"27858:1:51","nodeType":"YulLiteral","src":"27858:1:51","type":"","value":"7"}],"functionName":{"name":"lt","nativeSrc":"27848:2:51","nodeType":"YulIdentifier","src":"27848:2:51"},"nativeSrc":"27848:12:51","nodeType":"YulFunctionCall","src":"27848:12:51"}],"functionName":{"name":"iszero","nativeSrc":"27841:6:51","nodeType":"YulIdentifier","src":"27841:6:51"},"nativeSrc":"27841:20:51","nodeType":"YulFunctionCall","src":"27841:20:51"},"nativeSrc":"27838:40:51","nodeType":"YulIf","src":"27838:40:51"},{"nativeSrc":"27887:15:51","nodeType":"YulAssignment","src":"27887:15:51","value":{"name":"value","nativeSrc":"27897:5:51","nodeType":"YulIdentifier","src":"27897:5:51"},"variableNames":[{"name":"value0","nativeSrc":"27887:6:51","nodeType":"YulIdentifier","src":"27887:6:51"}]}]},"name":"abi_decode_tuple_t_enum$_QueryStatus_$13282_fromMemory","nativeSrc":"27631:277:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27695:9:51","nodeType":"YulTypedName","src":"27695:9:51","type":""},{"name":"dataEnd","nativeSrc":"27706:7:51","nodeType":"YulTypedName","src":"27706:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"27718:6:51","nodeType":"YulTypedName","src":"27718:6:51","type":""}],"src":"27631:277:51"},{"body":{"nativeSrc":"28027:170:51","nodeType":"YulBlock","src":"28027:170:51","statements":[{"body":{"nativeSrc":"28073:16:51","nodeType":"YulBlock","src":"28073:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28082:1:51","nodeType":"YulLiteral","src":"28082:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"28085:1:51","nodeType":"YulLiteral","src":"28085:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"28075:6:51","nodeType":"YulIdentifier","src":"28075:6:51"},"nativeSrc":"28075:12:51","nodeType":"YulFunctionCall","src":"28075:12:51"},"nativeSrc":"28075:12:51","nodeType":"YulExpressionStatement","src":"28075:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"28048:7:51","nodeType":"YulIdentifier","src":"28048:7:51"},{"name":"headStart","nativeSrc":"28057:9:51","nodeType":"YulIdentifier","src":"28057:9:51"}],"functionName":{"name":"sub","nativeSrc":"28044:3:51","nodeType":"YulIdentifier","src":"28044:3:51"},"nativeSrc":"28044:23:51","nodeType":"YulFunctionCall","src":"28044:23:51"},{"kind":"number","nativeSrc":"28069:2:51","nodeType":"YulLiteral","src":"28069:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"28040:3:51","nodeType":"YulIdentifier","src":"28040:3:51"},"nativeSrc":"28040:32:51","nodeType":"YulFunctionCall","src":"28040:32:51"},"nativeSrc":"28037:52:51","nodeType":"YulIf","src":"28037:52:51"},{"nativeSrc":"28098:29:51","nodeType":"YulVariableDeclaration","src":"28098:29:51","value":{"arguments":[{"name":"headStart","nativeSrc":"28117:9:51","nodeType":"YulIdentifier","src":"28117:9:51"}],"functionName":{"name":"mload","nativeSrc":"28111:5:51","nodeType":"YulIdentifier","src":"28111:5:51"},"nativeSrc":"28111:16:51","nodeType":"YulFunctionCall","src":"28111:16:51"},"variables":[{"name":"value","nativeSrc":"28102:5:51","nodeType":"YulTypedName","src":"28102:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"28161:5:51","nodeType":"YulIdentifier","src":"28161:5:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"28136:24:51","nodeType":"YulIdentifier","src":"28136:24:51"},"nativeSrc":"28136:31:51","nodeType":"YulFunctionCall","src":"28136:31:51"},"nativeSrc":"28136:31:51","nodeType":"YulExpressionStatement","src":"28136:31:51"},{"nativeSrc":"28176:15:51","nodeType":"YulAssignment","src":"28176:15:51","value":{"name":"value","nativeSrc":"28186:5:51","nodeType":"YulIdentifier","src":"28186:5:51"},"variableNames":[{"name":"value0","nativeSrc":"28176:6:51","nodeType":"YulIdentifier","src":"28176:6:51"}]}]},"name":"abi_decode_tuple_t_contract$_IWitOracleRadonRegistry_$10468_fromMemory","nativeSrc":"27913:284:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27993:9:51","nodeType":"YulTypedName","src":"27993:9:51","type":""},{"name":"dataEnd","nativeSrc":"28004:7:51","nodeType":"YulTypedName","src":"28004:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"28016:6:51","nodeType":"YulTypedName","src":"28016:6:51","type":""}],"src":"27913:284:51"},{"body":{"nativeSrc":"28334:76:51","nodeType":"YulBlock","src":"28334:76:51","statements":[{"nativeSrc":"28344:26:51","nodeType":"YulAssignment","src":"28344:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"28356:9:51","nodeType":"YulIdentifier","src":"28356:9:51"},{"kind":"number","nativeSrc":"28367:2:51","nodeType":"YulLiteral","src":"28367:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28352:3:51","nodeType":"YulIdentifier","src":"28352:3:51"},"nativeSrc":"28352:18:51","nodeType":"YulFunctionCall","src":"28352:18:51"},"variableNames":[{"name":"tail","nativeSrc":"28344:4:51","nodeType":"YulIdentifier","src":"28344:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28386:9:51","nodeType":"YulIdentifier","src":"28386:9:51"},{"name":"value0","nativeSrc":"28397:6:51","nodeType":"YulIdentifier","src":"28397:6:51"}],"functionName":{"name":"mstore","nativeSrc":"28379:6:51","nodeType":"YulIdentifier","src":"28379:6:51"},"nativeSrc":"28379:25:51","nodeType":"YulFunctionCall","src":"28379:25:51"},"nativeSrc":"28379:25:51","nodeType":"YulExpressionStatement","src":"28379:25:51"}]},"name":"abi_encode_tuple_t_userDefinedValueType$_RadonHash_$13102__to_t_bytes32__fromStack_reversed","nativeSrc":"28202:208:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28303:9:51","nodeType":"YulTypedName","src":"28303:9:51","type":""},{"name":"value0","nativeSrc":"28314:6:51","nodeType":"YulTypedName","src":"28314:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28325:4:51","nodeType":"YulTypedName","src":"28325:4:51","type":""}],"src":"28202:208:51"},{"body":{"nativeSrc":"28505:245:51","nodeType":"YulBlock","src":"28505:245:51","statements":[{"body":{"nativeSrc":"28551:16:51","nodeType":"YulBlock","src":"28551:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28560:1:51","nodeType":"YulLiteral","src":"28560:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"28563:1:51","nodeType":"YulLiteral","src":"28563:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"28553:6:51","nodeType":"YulIdentifier","src":"28553:6:51"},"nativeSrc":"28553:12:51","nodeType":"YulFunctionCall","src":"28553:12:51"},"nativeSrc":"28553:12:51","nodeType":"YulExpressionStatement","src":"28553:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"28526:7:51","nodeType":"YulIdentifier","src":"28526:7:51"},{"name":"headStart","nativeSrc":"28535:9:51","nodeType":"YulIdentifier","src":"28535:9:51"}],"functionName":{"name":"sub","nativeSrc":"28522:3:51","nodeType":"YulIdentifier","src":"28522:3:51"},"nativeSrc":"28522:23:51","nodeType":"YulFunctionCall","src":"28522:23:51"},{"kind":"number","nativeSrc":"28547:2:51","nodeType":"YulLiteral","src":"28547:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"28518:3:51","nodeType":"YulIdentifier","src":"28518:3:51"},"nativeSrc":"28518:32:51","nodeType":"YulFunctionCall","src":"28518:32:51"},"nativeSrc":"28515:52:51","nodeType":"YulIf","src":"28515:52:51"},{"nativeSrc":"28576:30:51","nodeType":"YulVariableDeclaration","src":"28576:30:51","value":{"arguments":[{"name":"headStart","nativeSrc":"28596:9:51","nodeType":"YulIdentifier","src":"28596:9:51"}],"functionName":{"name":"mload","nativeSrc":"28590:5:51","nodeType":"YulIdentifier","src":"28590:5:51"},"nativeSrc":"28590:16:51","nodeType":"YulFunctionCall","src":"28590:16:51"},"variables":[{"name":"offset","nativeSrc":"28580:6:51","nodeType":"YulTypedName","src":"28580:6:51","type":""}]},{"body":{"nativeSrc":"28649:16:51","nodeType":"YulBlock","src":"28649:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28658:1:51","nodeType":"YulLiteral","src":"28658:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"28661:1:51","nodeType":"YulLiteral","src":"28661:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"28651:6:51","nodeType":"YulIdentifier","src":"28651:6:51"},"nativeSrc":"28651:12:51","nodeType":"YulFunctionCall","src":"28651:12:51"},"nativeSrc":"28651:12:51","nodeType":"YulExpressionStatement","src":"28651:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"28621:6:51","nodeType":"YulIdentifier","src":"28621:6:51"},{"kind":"number","nativeSrc":"28629:18:51","nodeType":"YulLiteral","src":"28629:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"28618:2:51","nodeType":"YulIdentifier","src":"28618:2:51"},"nativeSrc":"28618:30:51","nodeType":"YulFunctionCall","src":"28618:30:51"},"nativeSrc":"28615:50:51","nodeType":"YulIf","src":"28615:50:51"},{"nativeSrc":"28674:70:51","nodeType":"YulAssignment","src":"28674:70:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28716:9:51","nodeType":"YulIdentifier","src":"28716:9:51"},{"name":"offset","nativeSrc":"28727:6:51","nodeType":"YulIdentifier","src":"28727:6:51"}],"functionName":{"name":"add","nativeSrc":"28712:3:51","nodeType":"YulIdentifier","src":"28712:3:51"},"nativeSrc":"28712:22:51","nodeType":"YulFunctionCall","src":"28712:22:51"},{"name":"dataEnd","nativeSrc":"28736:7:51","nodeType":"YulIdentifier","src":"28736:7:51"}],"functionName":{"name":"abi_decode_bytes_fromMemory","nativeSrc":"28684:27:51","nodeType":"YulIdentifier","src":"28684:27:51"},"nativeSrc":"28684:60:51","nodeType":"YulFunctionCall","src":"28684:60:51"},"variableNames":[{"name":"value0","nativeSrc":"28674:6:51","nodeType":"YulIdentifier","src":"28674:6:51"}]}]},"name":"abi_decode_tuple_t_bytes_memory_ptr_fromMemory","nativeSrc":"28415:335:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28471:9:51","nodeType":"YulTypedName","src":"28471:9:51","type":""},{"name":"dataEnd","nativeSrc":"28482:7:51","nodeType":"YulTypedName","src":"28482:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"28494:6:51","nodeType":"YulTypedName","src":"28494:6:51","type":""}],"src":"28415:335:51"},{"body":{"nativeSrc":"28824:176:51","nodeType":"YulBlock","src":"28824:176:51","statements":[{"body":{"nativeSrc":"28870:16:51","nodeType":"YulBlock","src":"28870:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"28879:1:51","nodeType":"YulLiteral","src":"28879:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"28882:1:51","nodeType":"YulLiteral","src":"28882:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"28872:6:51","nodeType":"YulIdentifier","src":"28872:6:51"},"nativeSrc":"28872:12:51","nodeType":"YulFunctionCall","src":"28872:12:51"},"nativeSrc":"28872:12:51","nodeType":"YulExpressionStatement","src":"28872:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"28845:7:51","nodeType":"YulIdentifier","src":"28845:7:51"},{"name":"headStart","nativeSrc":"28854:9:51","nodeType":"YulIdentifier","src":"28854:9:51"}],"functionName":{"name":"sub","nativeSrc":"28841:3:51","nodeType":"YulIdentifier","src":"28841:3:51"},"nativeSrc":"28841:23:51","nodeType":"YulFunctionCall","src":"28841:23:51"},{"kind":"number","nativeSrc":"28866:2:51","nodeType":"YulLiteral","src":"28866:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"28837:3:51","nodeType":"YulIdentifier","src":"28837:3:51"},"nativeSrc":"28837:32:51","nodeType":"YulFunctionCall","src":"28837:32:51"},"nativeSrc":"28834:52:51","nodeType":"YulIf","src":"28834:52:51"},{"nativeSrc":"28895:36:51","nodeType":"YulVariableDeclaration","src":"28895:36:51","value":{"arguments":[{"name":"headStart","nativeSrc":"28921:9:51","nodeType":"YulIdentifier","src":"28921:9:51"}],"functionName":{"name":"calldataload","nativeSrc":"28908:12:51","nodeType":"YulIdentifier","src":"28908:12:51"},"nativeSrc":"28908:23:51","nodeType":"YulFunctionCall","src":"28908:23:51"},"variables":[{"name":"value","nativeSrc":"28899:5:51","nodeType":"YulTypedName","src":"28899:5:51","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"28964:5:51","nodeType":"YulIdentifier","src":"28964:5:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"28940:23:51","nodeType":"YulIdentifier","src":"28940:23:51"},"nativeSrc":"28940:30:51","nodeType":"YulFunctionCall","src":"28940:30:51"},"nativeSrc":"28940:30:51","nodeType":"YulExpressionStatement","src":"28940:30:51"},{"nativeSrc":"28979:15:51","nodeType":"YulAssignment","src":"28979:15:51","value":{"name":"value","nativeSrc":"28989:5:51","nodeType":"YulIdentifier","src":"28989:5:51"},"variableNames":[{"name":"value0","nativeSrc":"28979:6:51","nodeType":"YulIdentifier","src":"28979:6:51"}]}]},"name":"abi_decode_tuple_t_uint64","nativeSrc":"28755:245:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28790:9:51","nodeType":"YulTypedName","src":"28790:9:51","type":""},{"name":"dataEnd","nativeSrc":"28801:7:51","nodeType":"YulTypedName","src":"28801:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"28813:6:51","nodeType":"YulTypedName","src":"28813:6:51","type":""}],"src":"28755:245:51"},{"body":{"nativeSrc":"29153:663:51","nodeType":"YulBlock","src":"29153:663:51","statements":[{"nativeSrc":"29163:34:51","nodeType":"YulVariableDeclaration","src":"29163:34:51","value":{"arguments":[{"name":"value","nativeSrc":"29191:5:51","nodeType":"YulIdentifier","src":"29191:5:51"}],"functionName":{"name":"calldataload","nativeSrc":"29178:12:51","nodeType":"YulIdentifier","src":"29178:12:51"},"nativeSrc":"29178:19:51","nodeType":"YulFunctionCall","src":"29178:19:51"},"variables":[{"name":"value_1","nativeSrc":"29167:7:51","nodeType":"YulTypedName","src":"29167:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"29230:7:51","nodeType":"YulIdentifier","src":"29230:7:51"}],"functionName":{"name":"validator_revert_uint16","nativeSrc":"29206:23:51","nodeType":"YulIdentifier","src":"29206:23:51"},"nativeSrc":"29206:32:51","nodeType":"YulFunctionCall","src":"29206:32:51"},"nativeSrc":"29206:32:51","nodeType":"YulExpressionStatement","src":"29206:32:51"},{"nativeSrc":"29247:30:51","nodeType":"YulVariableDeclaration","src":"29247:30:51","value":{"arguments":[{"name":"value_1","nativeSrc":"29261:7:51","nodeType":"YulIdentifier","src":"29261:7:51"},{"kind":"number","nativeSrc":"29270:6:51","nodeType":"YulLiteral","src":"29270:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"29257:3:51","nodeType":"YulIdentifier","src":"29257:3:51"},"nativeSrc":"29257:20:51","nodeType":"YulFunctionCall","src":"29257:20:51"},"variables":[{"name":"_1","nativeSrc":"29251:2:51","nodeType":"YulTypedName","src":"29251:2:51","type":""}]},{"nativeSrc":"29286:21:51","nodeType":"YulVariableDeclaration","src":"29286:21:51","value":{"arguments":[{"name":"slot","nativeSrc":"29302:4:51","nodeType":"YulIdentifier","src":"29302:4:51"}],"functionName":{"name":"sload","nativeSrc":"29296:5:51","nodeType":"YulIdentifier","src":"29296:5:51"},"nativeSrc":"29296:11:51","nodeType":"YulFunctionCall","src":"29296:11:51"},"variables":[{"name":"_2","nativeSrc":"29290:2:51","nodeType":"YulTypedName","src":"29290:2:51","type":""}]},{"expression":{"arguments":[{"name":"slot","nativeSrc":"29323:4:51","nodeType":"YulIdentifier","src":"29323:4:51"},{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"29336:2:51","nodeType":"YulIdentifier","src":"29336:2:51"},{"arguments":[{"kind":"number","nativeSrc":"29344:5:51","nodeType":"YulLiteral","src":"29344:5:51","type":"","value":"65535"}],"functionName":{"name":"not","nativeSrc":"29340:3:51","nodeType":"YulIdentifier","src":"29340:3:51"},"nativeSrc":"29340:10:51","nodeType":"YulFunctionCall","src":"29340:10:51"}],"functionName":{"name":"and","nativeSrc":"29332:3:51","nodeType":"YulIdentifier","src":"29332:3:51"},"nativeSrc":"29332:19:51","nodeType":"YulFunctionCall","src":"29332:19:51"},{"name":"_1","nativeSrc":"29353:2:51","nodeType":"YulIdentifier","src":"29353:2:51"}],"functionName":{"name":"or","nativeSrc":"29329:2:51","nodeType":"YulIdentifier","src":"29329:2:51"},"nativeSrc":"29329:27:51","nodeType":"YulFunctionCall","src":"29329:27:51"}],"functionName":{"name":"sstore","nativeSrc":"29316:6:51","nodeType":"YulIdentifier","src":"29316:6:51"},"nativeSrc":"29316:41:51","nodeType":"YulFunctionCall","src":"29316:41:51"},"nativeSrc":"29316:41:51","nodeType":"YulExpressionStatement","src":"29316:41:51"},{"nativeSrc":"29366:43:51","nodeType":"YulVariableDeclaration","src":"29366:43:51","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"29398:5:51","nodeType":"YulIdentifier","src":"29398:5:51"},{"kind":"number","nativeSrc":"29405:2:51","nodeType":"YulLiteral","src":"29405:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29394:3:51","nodeType":"YulIdentifier","src":"29394:3:51"},"nativeSrc":"29394:14:51","nodeType":"YulFunctionCall","src":"29394:14:51"}],"functionName":{"name":"calldataload","nativeSrc":"29381:12:51","nodeType":"YulIdentifier","src":"29381:12:51"},"nativeSrc":"29381:28:51","nodeType":"YulFunctionCall","src":"29381:28:51"},"variables":[{"name":"value_2","nativeSrc":"29370:7:51","nodeType":"YulTypedName","src":"29370:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"29442:7:51","nodeType":"YulIdentifier","src":"29442:7:51"}],"functionName":{"name":"validator_revert_uint16","nativeSrc":"29418:23:51","nodeType":"YulIdentifier","src":"29418:23:51"},"nativeSrc":"29418:32:51","nodeType":"YulFunctionCall","src":"29418:32:51"},"nativeSrc":"29418:32:51","nodeType":"YulExpressionStatement","src":"29418:32:51"},{"nativeSrc":"29459:49:51","nodeType":"YulVariableDeclaration","src":"29459:49:51","value":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29483:2:51","nodeType":"YulLiteral","src":"29483:2:51","type":"","value":"16"},{"name":"value_2","nativeSrc":"29487:7:51","nodeType":"YulIdentifier","src":"29487:7:51"}],"functionName":{"name":"shl","nativeSrc":"29479:3:51","nodeType":"YulIdentifier","src":"29479:3:51"},"nativeSrc":"29479:16:51","nodeType":"YulFunctionCall","src":"29479:16:51"},{"kind":"number","nativeSrc":"29497:10:51","nodeType":"YulLiteral","src":"29497:10:51","type":"","value":"0xffff0000"}],"functionName":{"name":"and","nativeSrc":"29475:3:51","nodeType":"YulIdentifier","src":"29475:3:51"},"nativeSrc":"29475:33:51","nodeType":"YulFunctionCall","src":"29475:33:51"},"variables":[{"name":"toInsert","nativeSrc":"29463:8:51","nodeType":"YulTypedName","src":"29463:8:51","type":""}]},{"expression":{"arguments":[{"name":"slot","nativeSrc":"29524:4:51","nodeType":"YulIdentifier","src":"29524:4:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"29540:2:51","nodeType":"YulIdentifier","src":"29540:2:51"},{"arguments":[{"kind":"number","nativeSrc":"29548:10:51","nodeType":"YulLiteral","src":"29548:10:51","type":"","value":"0xffffffff"}],"functionName":{"name":"not","nativeSrc":"29544:3:51","nodeType":"YulIdentifier","src":"29544:3:51"},"nativeSrc":"29544:15:51","nodeType":"YulFunctionCall","src":"29544:15:51"}],"functionName":{"name":"and","nativeSrc":"29536:3:51","nodeType":"YulIdentifier","src":"29536:3:51"},"nativeSrc":"29536:24:51","nodeType":"YulFunctionCall","src":"29536:24:51"},{"name":"_1","nativeSrc":"29562:2:51","nodeType":"YulIdentifier","src":"29562:2:51"}],"functionName":{"name":"or","nativeSrc":"29533:2:51","nodeType":"YulIdentifier","src":"29533:2:51"},"nativeSrc":"29533:32:51","nodeType":"YulFunctionCall","src":"29533:32:51"},{"name":"toInsert","nativeSrc":"29567:8:51","nodeType":"YulIdentifier","src":"29567:8:51"}],"functionName":{"name":"or","nativeSrc":"29530:2:51","nodeType":"YulIdentifier","src":"29530:2:51"},"nativeSrc":"29530:46:51","nodeType":"YulFunctionCall","src":"29530:46:51"}],"functionName":{"name":"sstore","nativeSrc":"29517:6:51","nodeType":"YulIdentifier","src":"29517:6:51"},"nativeSrc":"29517:60:51","nodeType":"YulFunctionCall","src":"29517:60:51"},"nativeSrc":"29517:60:51","nodeType":"YulExpressionStatement","src":"29517:60:51"},{"nativeSrc":"29586:43:51","nodeType":"YulVariableDeclaration","src":"29586:43:51","value":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"29618:5:51","nodeType":"YulIdentifier","src":"29618:5:51"},{"kind":"number","nativeSrc":"29625:2:51","nodeType":"YulLiteral","src":"29625:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29614:3:51","nodeType":"YulIdentifier","src":"29614:3:51"},"nativeSrc":"29614:14:51","nodeType":"YulFunctionCall","src":"29614:14:51"}],"functionName":{"name":"calldataload","nativeSrc":"29601:12:51","nodeType":"YulIdentifier","src":"29601:12:51"},"nativeSrc":"29601:28:51","nodeType":"YulFunctionCall","src":"29601:28:51"},"variables":[{"name":"value_3","nativeSrc":"29590:7:51","nodeType":"YulTypedName","src":"29590:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"29662:7:51","nodeType":"YulIdentifier","src":"29662:7:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"29638:23:51","nodeType":"YulIdentifier","src":"29638:23:51"},"nativeSrc":"29638:32:51","nodeType":"YulFunctionCall","src":"29638:32:51"},"nativeSrc":"29638:32:51","nodeType":"YulExpressionStatement","src":"29638:32:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"29686:4:51","nodeType":"YulIdentifier","src":"29686:4:51"},{"arguments":[{"arguments":[{"name":"toInsert","nativeSrc":"29698:8:51","nodeType":"YulIdentifier","src":"29698:8:51"},{"arguments":[{"arguments":[{"name":"_2","nativeSrc":"29715:2:51","nodeType":"YulIdentifier","src":"29715:2:51"},{"arguments":[{"kind":"number","nativeSrc":"29723:26:51","nodeType":"YulLiteral","src":"29723:26:51","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"29719:3:51","nodeType":"YulIdentifier","src":"29719:3:51"},"nativeSrc":"29719:31:51","nodeType":"YulFunctionCall","src":"29719:31:51"}],"functionName":{"name":"and","nativeSrc":"29711:3:51","nodeType":"YulIdentifier","src":"29711:3:51"},"nativeSrc":"29711:40:51","nodeType":"YulFunctionCall","src":"29711:40:51"},{"name":"_1","nativeSrc":"29753:2:51","nodeType":"YulIdentifier","src":"29753:2:51"}],"functionName":{"name":"or","nativeSrc":"29708:2:51","nodeType":"YulIdentifier","src":"29708:2:51"},"nativeSrc":"29708:48:51","nodeType":"YulFunctionCall","src":"29708:48:51"}],"functionName":{"name":"or","nativeSrc":"29695:2:51","nodeType":"YulIdentifier","src":"29695:2:51"},"nativeSrc":"29695:62:51","nodeType":"YulFunctionCall","src":"29695:62:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29767:2:51","nodeType":"YulLiteral","src":"29767:2:51","type":"","value":"32"},{"name":"value_3","nativeSrc":"29771:7:51","nodeType":"YulIdentifier","src":"29771:7:51"}],"functionName":{"name":"shl","nativeSrc":"29763:3:51","nodeType":"YulIdentifier","src":"29763:3:51"},"nativeSrc":"29763:16:51","nodeType":"YulFunctionCall","src":"29763:16:51"},{"kind":"number","nativeSrc":"29781:26:51","nodeType":"YulLiteral","src":"29781:26:51","type":"","value":"0xffffffffffffffff00000000"}],"functionName":{"name":"and","nativeSrc":"29759:3:51","nodeType":"YulIdentifier","src":"29759:3:51"},"nativeSrc":"29759:49:51","nodeType":"YulFunctionCall","src":"29759:49:51"}],"functionName":{"name":"or","nativeSrc":"29692:2:51","nodeType":"YulIdentifier","src":"29692:2:51"},"nativeSrc":"29692:117:51","nodeType":"YulFunctionCall","src":"29692:117:51"}],"functionName":{"name":"sstore","nativeSrc":"29679:6:51","nodeType":"YulIdentifier","src":"29679:6:51"},"nativeSrc":"29679:131:51","nodeType":"YulFunctionCall","src":"29679:131:51"},"nativeSrc":"29679:131:51","nodeType":"YulExpressionStatement","src":"29679:131:51"}]},"name":"update_storage_value_offset_0_t_struct$_WitOracleSettings_$7939_calldata_ptr_to_t_struct$_WitOracleSettings_$7939_storage","nativeSrc":"29005:811:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"29136:4:51","nodeType":"YulTypedName","src":"29136:4:51","type":""},{"name":"value","nativeSrc":"29142:5:51","nodeType":"YulTypedName","src":"29142:5:51","type":""}],"src":"29005:811:51"},{"body":{"nativeSrc":"30062:346:51","nodeType":"YulBlock","src":"30062:346:51","statements":[{"nativeSrc":"30072:27:51","nodeType":"YulAssignment","src":"30072:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"30084:9:51","nodeType":"YulIdentifier","src":"30084:9:51"},{"kind":"number","nativeSrc":"30095:3:51","nodeType":"YulLiteral","src":"30095:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"30080:3:51","nodeType":"YulIdentifier","src":"30080:3:51"},"nativeSrc":"30080:19:51","nodeType":"YulFunctionCall","src":"30080:19:51"},"variableNames":[{"name":"tail","nativeSrc":"30072:4:51","nodeType":"YulIdentifier","src":"30072:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30115:9:51","nodeType":"YulIdentifier","src":"30115:9:51"},{"name":"value0","nativeSrc":"30126:6:51","nodeType":"YulIdentifier","src":"30126:6:51"}],"functionName":{"name":"mstore","nativeSrc":"30108:6:51","nodeType":"YulIdentifier","src":"30108:6:51"},"nativeSrc":"30108:25:51","nodeType":"YulFunctionCall","src":"30108:25:51"},"nativeSrc":"30108:25:51","nodeType":"YulExpressionStatement","src":"30108:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30153:9:51","nodeType":"YulIdentifier","src":"30153:9:51"},{"kind":"number","nativeSrc":"30164:2:51","nodeType":"YulLiteral","src":"30164:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30149:3:51","nodeType":"YulIdentifier","src":"30149:3:51"},"nativeSrc":"30149:18:51","nodeType":"YulFunctionCall","src":"30149:18:51"},{"arguments":[{"name":"value1","nativeSrc":"30173:6:51","nodeType":"YulIdentifier","src":"30173:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30189:3:51","nodeType":"YulLiteral","src":"30189:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"30194:1:51","nodeType":"YulLiteral","src":"30194:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30185:3:51","nodeType":"YulIdentifier","src":"30185:3:51"},"nativeSrc":"30185:11:51","nodeType":"YulFunctionCall","src":"30185:11:51"},{"kind":"number","nativeSrc":"30198:1:51","nodeType":"YulLiteral","src":"30198:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30181:3:51","nodeType":"YulIdentifier","src":"30181:3:51"},"nativeSrc":"30181:19:51","nodeType":"YulFunctionCall","src":"30181:19:51"}],"functionName":{"name":"and","nativeSrc":"30169:3:51","nodeType":"YulIdentifier","src":"30169:3:51"},"nativeSrc":"30169:32:51","nodeType":"YulFunctionCall","src":"30169:32:51"}],"functionName":{"name":"mstore","nativeSrc":"30142:6:51","nodeType":"YulIdentifier","src":"30142:6:51"},"nativeSrc":"30142:60:51","nodeType":"YulFunctionCall","src":"30142:60:51"},"nativeSrc":"30142:60:51","nodeType":"YulExpressionStatement","src":"30142:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30222:9:51","nodeType":"YulIdentifier","src":"30222:9:51"},{"kind":"number","nativeSrc":"30233:2:51","nodeType":"YulLiteral","src":"30233:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30218:3:51","nodeType":"YulIdentifier","src":"30218:3:51"},"nativeSrc":"30218:18:51","nodeType":"YulFunctionCall","src":"30218:18:51"},{"arguments":[{"name":"value2","nativeSrc":"30242:6:51","nodeType":"YulIdentifier","src":"30242:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30258:3:51","nodeType":"YulLiteral","src":"30258:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"30263:1:51","nodeType":"YulLiteral","src":"30263:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30254:3:51","nodeType":"YulIdentifier","src":"30254:3:51"},"nativeSrc":"30254:11:51","nodeType":"YulFunctionCall","src":"30254:11:51"},{"kind":"number","nativeSrc":"30267:1:51","nodeType":"YulLiteral","src":"30267:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30250:3:51","nodeType":"YulIdentifier","src":"30250:3:51"},"nativeSrc":"30250:19:51","nodeType":"YulFunctionCall","src":"30250:19:51"}],"functionName":{"name":"and","nativeSrc":"30238:3:51","nodeType":"YulIdentifier","src":"30238:3:51"},"nativeSrc":"30238:32:51","nodeType":"YulFunctionCall","src":"30238:32:51"}],"functionName":{"name":"mstore","nativeSrc":"30211:6:51","nodeType":"YulIdentifier","src":"30211:6:51"},"nativeSrc":"30211:60:51","nodeType":"YulFunctionCall","src":"30211:60:51"},"nativeSrc":"30211:60:51","nodeType":"YulExpressionStatement","src":"30211:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30291:9:51","nodeType":"YulIdentifier","src":"30291:9:51"},{"kind":"number","nativeSrc":"30302:2:51","nodeType":"YulLiteral","src":"30302:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30287:3:51","nodeType":"YulIdentifier","src":"30287:3:51"},"nativeSrc":"30287:18:51","nodeType":"YulFunctionCall","src":"30287:18:51"},{"name":"value3","nativeSrc":"30307:6:51","nodeType":"YulIdentifier","src":"30307:6:51"}],"functionName":{"name":"mstore","nativeSrc":"30280:6:51","nodeType":"YulIdentifier","src":"30280:6:51"},"nativeSrc":"30280:34:51","nodeType":"YulFunctionCall","src":"30280:34:51"},"nativeSrc":"30280:34:51","nodeType":"YulExpressionStatement","src":"30280:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30334:9:51","nodeType":"YulIdentifier","src":"30334:9:51"},{"kind":"number","nativeSrc":"30345:3:51","nodeType":"YulLiteral","src":"30345:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"30330:3:51","nodeType":"YulIdentifier","src":"30330:3:51"},"nativeSrc":"30330:19:51","nodeType":"YulFunctionCall","src":"30330:19:51"},{"name":"value4","nativeSrc":"30351:6:51","nodeType":"YulIdentifier","src":"30351:6:51"}],"functionName":{"name":"mstore","nativeSrc":"30323:6:51","nodeType":"YulIdentifier","src":"30323:6:51"},"nativeSrc":"30323:35:51","nodeType":"YulFunctionCall","src":"30323:35:51"},"nativeSrc":"30323:35:51","nodeType":"YulExpressionStatement","src":"30323:35:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30378:9:51","nodeType":"YulIdentifier","src":"30378:9:51"},{"kind":"number","nativeSrc":"30389:3:51","nodeType":"YulLiteral","src":"30389:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"30374:3:51","nodeType":"YulIdentifier","src":"30374:3:51"},"nativeSrc":"30374:19:51","nodeType":"YulFunctionCall","src":"30374:19:51"},{"name":"value5","nativeSrc":"30395:6:51","nodeType":"YulIdentifier","src":"30395:6:51"}],"functionName":{"name":"mstore","nativeSrc":"30367:6:51","nodeType":"YulIdentifier","src":"30367:6:51"},"nativeSrc":"30367:35:51","nodeType":"YulFunctionCall","src":"30367:35:51"},"nativeSrc":"30367:35:51","nodeType":"YulExpressionStatement","src":"30367: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":"29821:587:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29991:9:51","nodeType":"YulTypedName","src":"29991:9:51","type":""},{"name":"value5","nativeSrc":"30002:6:51","nodeType":"YulTypedName","src":"30002:6:51","type":""},{"name":"value4","nativeSrc":"30010:6:51","nodeType":"YulTypedName","src":"30010:6:51","type":""},{"name":"value3","nativeSrc":"30018:6:51","nodeType":"YulTypedName","src":"30018:6:51","type":""},{"name":"value2","nativeSrc":"30026:6:51","nodeType":"YulTypedName","src":"30026:6:51","type":""},{"name":"value1","nativeSrc":"30034:6:51","nodeType":"YulTypedName","src":"30034:6:51","type":""},{"name":"value0","nativeSrc":"30042:6:51","nodeType":"YulTypedName","src":"30042:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30053:4:51","nodeType":"YulTypedName","src":"30053:4:51","type":""}],"src":"29821:587:51"},{"body":{"nativeSrc":"30542:171:51","nodeType":"YulBlock","src":"30542:171:51","statements":[{"nativeSrc":"30552:26:51","nodeType":"YulAssignment","src":"30552:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"30564:9:51","nodeType":"YulIdentifier","src":"30564:9:51"},{"kind":"number","nativeSrc":"30575:2:51","nodeType":"YulLiteral","src":"30575:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30560:3:51","nodeType":"YulIdentifier","src":"30560:3:51"},"nativeSrc":"30560:18:51","nodeType":"YulFunctionCall","src":"30560:18:51"},"variableNames":[{"name":"tail","nativeSrc":"30552:4:51","nodeType":"YulIdentifier","src":"30552:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30594:9:51","nodeType":"YulIdentifier","src":"30594:9:51"},{"arguments":[{"name":"value0","nativeSrc":"30609:6:51","nodeType":"YulIdentifier","src":"30609:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30625:3:51","nodeType":"YulLiteral","src":"30625:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"30630:1:51","nodeType":"YulLiteral","src":"30630:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30621:3:51","nodeType":"YulIdentifier","src":"30621:3:51"},"nativeSrc":"30621:11:51","nodeType":"YulFunctionCall","src":"30621:11:51"},{"kind":"number","nativeSrc":"30634:1:51","nodeType":"YulLiteral","src":"30634:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30617:3:51","nodeType":"YulIdentifier","src":"30617:3:51"},"nativeSrc":"30617:19:51","nodeType":"YulFunctionCall","src":"30617:19:51"}],"functionName":{"name":"and","nativeSrc":"30605:3:51","nodeType":"YulIdentifier","src":"30605:3:51"},"nativeSrc":"30605:32:51","nodeType":"YulFunctionCall","src":"30605:32:51"}],"functionName":{"name":"mstore","nativeSrc":"30587:6:51","nodeType":"YulIdentifier","src":"30587:6:51"},"nativeSrc":"30587:51:51","nodeType":"YulFunctionCall","src":"30587:51:51"},"nativeSrc":"30587:51:51","nodeType":"YulExpressionStatement","src":"30587:51:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30658:9:51","nodeType":"YulIdentifier","src":"30658:9:51"},{"kind":"number","nativeSrc":"30669:2:51","nodeType":"YulLiteral","src":"30669:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30654:3:51","nodeType":"YulIdentifier","src":"30654:3:51"},"nativeSrc":"30654:18:51","nodeType":"YulFunctionCall","src":"30654:18:51"},{"arguments":[{"name":"value1","nativeSrc":"30678:6:51","nodeType":"YulIdentifier","src":"30678:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30694:3:51","nodeType":"YulLiteral","src":"30694:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"30699:1:51","nodeType":"YulLiteral","src":"30699:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30690:3:51","nodeType":"YulIdentifier","src":"30690:3:51"},"nativeSrc":"30690:11:51","nodeType":"YulFunctionCall","src":"30690:11:51"},{"kind":"number","nativeSrc":"30703:1:51","nodeType":"YulLiteral","src":"30703:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30686:3:51","nodeType":"YulIdentifier","src":"30686:3:51"},"nativeSrc":"30686:19:51","nodeType":"YulFunctionCall","src":"30686:19:51"}],"functionName":{"name":"and","nativeSrc":"30674:3:51","nodeType":"YulIdentifier","src":"30674:3:51"},"nativeSrc":"30674:32:51","nodeType":"YulFunctionCall","src":"30674:32:51"}],"functionName":{"name":"mstore","nativeSrc":"30647:6:51","nodeType":"YulIdentifier","src":"30647:6:51"},"nativeSrc":"30647:60:51","nodeType":"YulFunctionCall","src":"30647:60:51"},"nativeSrc":"30647:60:51","nodeType":"YulExpressionStatement","src":"30647:60:51"}]},"name":"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed","nativeSrc":"30413:300:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30503:9:51","nodeType":"YulTypedName","src":"30503:9:51","type":""},{"name":"value1","nativeSrc":"30514:6:51","nodeType":"YulTypedName","src":"30514:6:51","type":""},{"name":"value0","nativeSrc":"30522:6:51","nodeType":"YulTypedName","src":"30522:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30533:4:51","nodeType":"YulTypedName","src":"30533:4:51","type":""}],"src":"30413:300:51"},{"body":{"nativeSrc":"30883:158:51","nodeType":"YulBlock","src":"30883:158:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30900:9:51","nodeType":"YulIdentifier","src":"30900:9:51"},{"name":"value0","nativeSrc":"30911:6:51","nodeType":"YulIdentifier","src":"30911:6:51"}],"functionName":{"name":"mstore","nativeSrc":"30893:6:51","nodeType":"YulIdentifier","src":"30893:6:51"},"nativeSrc":"30893:25:51","nodeType":"YulFunctionCall","src":"30893:25:51"},"nativeSrc":"30893:25:51","nodeType":"YulExpressionStatement","src":"30893:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30938:9:51","nodeType":"YulIdentifier","src":"30938:9:51"},{"kind":"number","nativeSrc":"30949:2:51","nodeType":"YulLiteral","src":"30949:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30934:3:51","nodeType":"YulIdentifier","src":"30934:3:51"},"nativeSrc":"30934:18:51","nodeType":"YulFunctionCall","src":"30934:18:51"},{"kind":"number","nativeSrc":"30954:2:51","nodeType":"YulLiteral","src":"30954:2:51","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"30927:6:51","nodeType":"YulIdentifier","src":"30927:6:51"},"nativeSrc":"30927:30:51","nodeType":"YulFunctionCall","src":"30927:30:51"},"nativeSrc":"30927:30:51","nodeType":"YulExpressionStatement","src":"30927:30:51"},{"nativeSrc":"30966:69:51","nodeType":"YulAssignment","src":"30966:69:51","value":{"arguments":[{"name":"value1","nativeSrc":"31000:6:51","nodeType":"YulIdentifier","src":"31000:6:51"},{"name":"value2","nativeSrc":"31008:6:51","nodeType":"YulIdentifier","src":"31008:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"31020:9:51","nodeType":"YulIdentifier","src":"31020:9:51"},{"kind":"number","nativeSrc":"31031:2:51","nodeType":"YulLiteral","src":"31031:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31016:3:51","nodeType":"YulIdentifier","src":"31016:3:51"},"nativeSrc":"31016:18:51","nodeType":"YulFunctionCall","src":"31016:18:51"}],"functionName":{"name":"abi_encode_bytes_calldata","nativeSrc":"30974:25:51","nodeType":"YulIdentifier","src":"30974:25:51"},"nativeSrc":"30974:61:51","nodeType":"YulFunctionCall","src":"30974:61:51"},"variableNames":[{"name":"tail","nativeSrc":"30966:4:51","nodeType":"YulIdentifier","src":"30966:4:51"}]}]},"name":"abi_encode_tuple_t_uint256_t_bytes_calldata_ptr__to_t_uint256_t_bytes_memory_ptr__fromStack_library_reversed","nativeSrc":"30718:323:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30836:9:51","nodeType":"YulTypedName","src":"30836:9:51","type":""},{"name":"value2","nativeSrc":"30847:6:51","nodeType":"YulTypedName","src":"30847:6:51","type":""},{"name":"value1","nativeSrc":"30855:6:51","nodeType":"YulTypedName","src":"30855:6:51","type":""},{"name":"value0","nativeSrc":"30863:6:51","nodeType":"YulTypedName","src":"30863:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30874:4:51","nodeType":"YulTypedName","src":"30874:4:51","type":""}],"src":"30718:323:51"},{"body":{"nativeSrc":"31251:762:51","nodeType":"YulBlock","src":"31251:762:51","statements":[{"body":{"nativeSrc":"31298:16:51","nodeType":"YulBlock","src":"31298:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"31307:1:51","nodeType":"YulLiteral","src":"31307:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"31310:1:51","nodeType":"YulLiteral","src":"31310:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"31300:6:51","nodeType":"YulIdentifier","src":"31300:6:51"},"nativeSrc":"31300:12:51","nodeType":"YulFunctionCall","src":"31300:12:51"},"nativeSrc":"31300:12:51","nodeType":"YulExpressionStatement","src":"31300:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"31272:7:51","nodeType":"YulIdentifier","src":"31272:7:51"},{"name":"headStart","nativeSrc":"31281:9:51","nodeType":"YulIdentifier","src":"31281:9:51"}],"functionName":{"name":"sub","nativeSrc":"31268:3:51","nodeType":"YulIdentifier","src":"31268:3:51"},"nativeSrc":"31268:23:51","nodeType":"YulFunctionCall","src":"31268:23:51"},{"kind":"number","nativeSrc":"31293:3:51","nodeType":"YulLiteral","src":"31293:3:51","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"31264:3:51","nodeType":"YulIdentifier","src":"31264:3:51"},"nativeSrc":"31264:33:51","nodeType":"YulFunctionCall","src":"31264:33:51"},"nativeSrc":"31261:53:51","nodeType":"YulIf","src":"31261:53:51"},{"nativeSrc":"31323:14:51","nodeType":"YulVariableDeclaration","src":"31323:14:51","value":{"kind":"number","nativeSrc":"31336:1:51","nodeType":"YulLiteral","src":"31336:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"31327:5:51","nodeType":"YulTypedName","src":"31327:5:51","type":""}]},{"nativeSrc":"31346:25:51","nodeType":"YulAssignment","src":"31346:25:51","value":{"arguments":[{"name":"headStart","nativeSrc":"31361:9:51","nodeType":"YulIdentifier","src":"31361:9:51"}],"functionName":{"name":"mload","nativeSrc":"31355:5:51","nodeType":"YulIdentifier","src":"31355:5:51"},"nativeSrc":"31355:16:51","nodeType":"YulFunctionCall","src":"31355:16:51"},"variableNames":[{"name":"value","nativeSrc":"31346:5:51","nodeType":"YulIdentifier","src":"31346:5:51"}]},{"nativeSrc":"31380:15:51","nodeType":"YulAssignment","src":"31380:15:51","value":{"name":"value","nativeSrc":"31390:5:51","nodeType":"YulIdentifier","src":"31390:5:51"},"variableNames":[{"name":"value0","nativeSrc":"31380:6:51","nodeType":"YulIdentifier","src":"31380:6:51"}]},{"nativeSrc":"31404:39:51","nodeType":"YulVariableDeclaration","src":"31404:39:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31428:9:51","nodeType":"YulIdentifier","src":"31428:9:51"},{"kind":"number","nativeSrc":"31439:2:51","nodeType":"YulLiteral","src":"31439:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31424:3:51","nodeType":"YulIdentifier","src":"31424:3:51"},"nativeSrc":"31424:18:51","nodeType":"YulFunctionCall","src":"31424:18:51"}],"functionName":{"name":"mload","nativeSrc":"31418:5:51","nodeType":"YulIdentifier","src":"31418:5:51"},"nativeSrc":"31418:25:51","nodeType":"YulFunctionCall","src":"31418:25:51"},"variables":[{"name":"offset","nativeSrc":"31408:6:51","nodeType":"YulTypedName","src":"31408:6:51","type":""}]},{"body":{"nativeSrc":"31486:16:51","nodeType":"YulBlock","src":"31486:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"31495:1:51","nodeType":"YulLiteral","src":"31495:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"31498:1:51","nodeType":"YulLiteral","src":"31498:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"31488:6:51","nodeType":"YulIdentifier","src":"31488:6:51"},"nativeSrc":"31488:12:51","nodeType":"YulFunctionCall","src":"31488:12:51"},"nativeSrc":"31488:12:51","nodeType":"YulExpressionStatement","src":"31488:12:51"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"31458:6:51","nodeType":"YulIdentifier","src":"31458:6:51"},{"kind":"number","nativeSrc":"31466:18:51","nodeType":"YulLiteral","src":"31466:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"31455:2:51","nodeType":"YulIdentifier","src":"31455:2:51"},"nativeSrc":"31455:30:51","nodeType":"YulFunctionCall","src":"31455:30:51"},"nativeSrc":"31452:50:51","nodeType":"YulIf","src":"31452:50:51"},{"nativeSrc":"31511:70:51","nodeType":"YulAssignment","src":"31511:70:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31553:9:51","nodeType":"YulIdentifier","src":"31553:9:51"},{"name":"offset","nativeSrc":"31564:6:51","nodeType":"YulIdentifier","src":"31564:6:51"}],"functionName":{"name":"add","nativeSrc":"31549:3:51","nodeType":"YulIdentifier","src":"31549:3:51"},"nativeSrc":"31549:22:51","nodeType":"YulFunctionCall","src":"31549:22:51"},{"name":"dataEnd","nativeSrc":"31573:7:51","nodeType":"YulIdentifier","src":"31573:7:51"}],"functionName":{"name":"abi_decode_bytes_fromMemory","nativeSrc":"31521:27:51","nodeType":"YulIdentifier","src":"31521:27:51"},"nativeSrc":"31521:60:51","nodeType":"YulFunctionCall","src":"31521:60:51"},"variableNames":[{"name":"value1","nativeSrc":"31511:6:51","nodeType":"YulIdentifier","src":"31511:6:51"}]},{"nativeSrc":"31590:41:51","nodeType":"YulVariableDeclaration","src":"31590:41:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31616:9:51","nodeType":"YulIdentifier","src":"31616:9:51"},{"kind":"number","nativeSrc":"31627:2:51","nodeType":"YulLiteral","src":"31627:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31612:3:51","nodeType":"YulIdentifier","src":"31612:3:51"},"nativeSrc":"31612:18:51","nodeType":"YulFunctionCall","src":"31612:18:51"}],"functionName":{"name":"mload","nativeSrc":"31606:5:51","nodeType":"YulIdentifier","src":"31606:5:51"},"nativeSrc":"31606:25:51","nodeType":"YulFunctionCall","src":"31606:25:51"},"variables":[{"name":"offset_1","nativeSrc":"31594:8:51","nodeType":"YulTypedName","src":"31594:8:51","type":""}]},{"body":{"nativeSrc":"31676:16:51","nodeType":"YulBlock","src":"31676:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"31685:1:51","nodeType":"YulLiteral","src":"31685:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"31688:1:51","nodeType":"YulLiteral","src":"31688:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"31678:6:51","nodeType":"YulIdentifier","src":"31678:6:51"},"nativeSrc":"31678:12:51","nodeType":"YulFunctionCall","src":"31678:12:51"},"nativeSrc":"31678:12:51","nodeType":"YulExpressionStatement","src":"31678:12:51"}]},"condition":{"arguments":[{"name":"offset_1","nativeSrc":"31646:8:51","nodeType":"YulIdentifier","src":"31646:8:51"},{"kind":"number","nativeSrc":"31656:18:51","nodeType":"YulLiteral","src":"31656:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"31643:2:51","nodeType":"YulIdentifier","src":"31643:2:51"},"nativeSrc":"31643:32:51","nodeType":"YulFunctionCall","src":"31643:32:51"},"nativeSrc":"31640:52:51","nodeType":"YulIf","src":"31640:52:51"},{"nativeSrc":"31701:72:51","nodeType":"YulAssignment","src":"31701:72:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31743:9:51","nodeType":"YulIdentifier","src":"31743:9:51"},{"name":"offset_1","nativeSrc":"31754:8:51","nodeType":"YulIdentifier","src":"31754:8:51"}],"functionName":{"name":"add","nativeSrc":"31739:3:51","nodeType":"YulIdentifier","src":"31739:3:51"},"nativeSrc":"31739:24:51","nodeType":"YulFunctionCall","src":"31739:24:51"},{"name":"dataEnd","nativeSrc":"31765:7:51","nodeType":"YulIdentifier","src":"31765:7:51"}],"functionName":{"name":"abi_decode_bytes_fromMemory","nativeSrc":"31711:27:51","nodeType":"YulIdentifier","src":"31711:27:51"},"nativeSrc":"31711:62:51","nodeType":"YulFunctionCall","src":"31711:62:51"},"variableNames":[{"name":"value2","nativeSrc":"31701:6:51","nodeType":"YulIdentifier","src":"31701:6:51"}]},{"nativeSrc":"31782:40:51","nodeType":"YulVariableDeclaration","src":"31782:40:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31807:9:51","nodeType":"YulIdentifier","src":"31807:9:51"},{"kind":"number","nativeSrc":"31818:2:51","nodeType":"YulLiteral","src":"31818:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"31803:3:51","nodeType":"YulIdentifier","src":"31803:3:51"},"nativeSrc":"31803:18:51","nodeType":"YulFunctionCall","src":"31803:18:51"}],"functionName":{"name":"mload","nativeSrc":"31797:5:51","nodeType":"YulIdentifier","src":"31797:5:51"},"nativeSrc":"31797:25:51","nodeType":"YulFunctionCall","src":"31797:25:51"},"variables":[{"name":"value_1","nativeSrc":"31786:7:51","nodeType":"YulTypedName","src":"31786:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"31856:7:51","nodeType":"YulIdentifier","src":"31856:7:51"}],"functionName":{"name":"validator_revert_address","nativeSrc":"31831:24:51","nodeType":"YulIdentifier","src":"31831:24:51"},"nativeSrc":"31831:33:51","nodeType":"YulFunctionCall","src":"31831:33:51"},"nativeSrc":"31831:33:51","nodeType":"YulExpressionStatement","src":"31831:33:51"},{"nativeSrc":"31873:17:51","nodeType":"YulAssignment","src":"31873:17:51","value":{"name":"value_1","nativeSrc":"31883:7:51","nodeType":"YulIdentifier","src":"31883:7:51"},"variableNames":[{"name":"value3","nativeSrc":"31873:6:51","nodeType":"YulIdentifier","src":"31873:6:51"}]},{"nativeSrc":"31899:41:51","nodeType":"YulVariableDeclaration","src":"31899:41:51","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31924:9:51","nodeType":"YulIdentifier","src":"31924:9:51"},{"kind":"number","nativeSrc":"31935:3:51","nodeType":"YulLiteral","src":"31935:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"31920:3:51","nodeType":"YulIdentifier","src":"31920:3:51"},"nativeSrc":"31920:19:51","nodeType":"YulFunctionCall","src":"31920:19:51"}],"functionName":{"name":"mload","nativeSrc":"31914:5:51","nodeType":"YulIdentifier","src":"31914:5:51"},"nativeSrc":"31914:26:51","nodeType":"YulFunctionCall","src":"31914:26:51"},"variables":[{"name":"value_2","nativeSrc":"31903:7:51","nodeType":"YulTypedName","src":"31903:7:51","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"31973:7:51","nodeType":"YulIdentifier","src":"31973:7:51"}],"functionName":{"name":"validator_revert_uint64","nativeSrc":"31949:23:51","nodeType":"YulIdentifier","src":"31949:23:51"},"nativeSrc":"31949:32:51","nodeType":"YulFunctionCall","src":"31949:32:51"},"nativeSrc":"31949:32:51","nodeType":"YulExpressionStatement","src":"31949:32:51"},{"nativeSrc":"31990:17:51","nodeType":"YulAssignment","src":"31990:17:51","value":{"name":"value_2","nativeSrc":"32000:7:51","nodeType":"YulIdentifier","src":"32000:7:51"},"variableNames":[{"name":"value4","nativeSrc":"31990:6:51","nodeType":"YulIdentifier","src":"31990:6:51"}]}]},"name":"abi_decode_tuple_t_userDefinedValueType$_TransactionHash_$13108t_string_memory_ptrt_string_memory_ptrt_addresst_uint64_fromMemory","nativeSrc":"31046:967:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31185:9:51","nodeType":"YulTypedName","src":"31185:9:51","type":""},{"name":"dataEnd","nativeSrc":"31196:7:51","nodeType":"YulTypedName","src":"31196:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"31208:6:51","nodeType":"YulTypedName","src":"31208:6:51","type":""},{"name":"value1","nativeSrc":"31216:6:51","nodeType":"YulTypedName","src":"31216:6:51","type":""},{"name":"value2","nativeSrc":"31224:6:51","nodeType":"YulTypedName","src":"31224:6:51","type":""},{"name":"value3","nativeSrc":"31232:6:51","nodeType":"YulTypedName","src":"31232:6:51","type":""},{"name":"value4","nativeSrc":"31240:6:51","nodeType":"YulTypedName","src":"31240:6:51","type":""}],"src":"31046:967:51"},{"body":{"nativeSrc":"32259:281:51","nodeType":"YulBlock","src":"32259:281:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32276:9:51","nodeType":"YulIdentifier","src":"32276:9:51"},{"kind":"number","nativeSrc":"32287:3:51","nodeType":"YulLiteral","src":"32287:3:51","type":"","value":"128"}],"functionName":{"name":"mstore","nativeSrc":"32269:6:51","nodeType":"YulIdentifier","src":"32269:6:51"},"nativeSrc":"32269:22:51","nodeType":"YulFunctionCall","src":"32269:22:51"},"nativeSrc":"32269:22:51","nodeType":"YulExpressionStatement","src":"32269:22:51"},{"nativeSrc":"32300:54:51","nodeType":"YulAssignment","src":"32300:54:51","value":{"arguments":[{"name":"value0","nativeSrc":"32326:6:51","nodeType":"YulIdentifier","src":"32326:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"32338:9:51","nodeType":"YulIdentifier","src":"32338:9:51"},{"kind":"number","nativeSrc":"32349:3:51","nodeType":"YulLiteral","src":"32349:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"32334:3:51","nodeType":"YulIdentifier","src":"32334:3:51"},"nativeSrc":"32334:19:51","nodeType":"YulFunctionCall","src":"32334:19:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"32308:17:51","nodeType":"YulIdentifier","src":"32308:17:51"},"nativeSrc":"32308:46:51","nodeType":"YulFunctionCall","src":"32308:46:51"},"variableNames":[{"name":"tail","nativeSrc":"32300:4:51","nodeType":"YulIdentifier","src":"32300:4:51"}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32374:9:51","nodeType":"YulIdentifier","src":"32374:9:51"},{"kind":"number","nativeSrc":"32385:2:51","nodeType":"YulLiteral","src":"32385:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32370:3:51","nodeType":"YulIdentifier","src":"32370:3:51"},"nativeSrc":"32370:18:51","nodeType":"YulFunctionCall","src":"32370:18:51"},{"arguments":[{"name":"value1","nativeSrc":"32394:6:51","nodeType":"YulIdentifier","src":"32394:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"32410:3:51","nodeType":"YulLiteral","src":"32410:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"32415:1:51","nodeType":"YulLiteral","src":"32415:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"32406:3:51","nodeType":"YulIdentifier","src":"32406:3:51"},"nativeSrc":"32406:11:51","nodeType":"YulFunctionCall","src":"32406:11:51"},{"kind":"number","nativeSrc":"32419:1:51","nodeType":"YulLiteral","src":"32419:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"32402:3:51","nodeType":"YulIdentifier","src":"32402:3:51"},"nativeSrc":"32402:19:51","nodeType":"YulFunctionCall","src":"32402:19:51"}],"functionName":{"name":"and","nativeSrc":"32390:3:51","nodeType":"YulIdentifier","src":"32390:3:51"},"nativeSrc":"32390:32:51","nodeType":"YulFunctionCall","src":"32390:32:51"}],"functionName":{"name":"mstore","nativeSrc":"32363:6:51","nodeType":"YulIdentifier","src":"32363:6:51"},"nativeSrc":"32363:60:51","nodeType":"YulFunctionCall","src":"32363:60:51"},"nativeSrc":"32363:60:51","nodeType":"YulExpressionStatement","src":"32363:60:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32443:9:51","nodeType":"YulIdentifier","src":"32443:9:51"},{"kind":"number","nativeSrc":"32454:2:51","nodeType":"YulLiteral","src":"32454:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32439:3:51","nodeType":"YulIdentifier","src":"32439:3:51"},"nativeSrc":"32439:18:51","nodeType":"YulFunctionCall","src":"32439:18:51"},{"arguments":[{"name":"value2","nativeSrc":"32463:6:51","nodeType":"YulIdentifier","src":"32463:6:51"},{"kind":"number","nativeSrc":"32471:18:51","nodeType":"YulLiteral","src":"32471:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"32459:3:51","nodeType":"YulIdentifier","src":"32459:3:51"},"nativeSrc":"32459:31:51","nodeType":"YulFunctionCall","src":"32459:31:51"}],"functionName":{"name":"mstore","nativeSrc":"32432:6:51","nodeType":"YulIdentifier","src":"32432:6:51"},"nativeSrc":"32432:59:51","nodeType":"YulFunctionCall","src":"32432:59:51"},"nativeSrc":"32432:59:51","nodeType":"YulExpressionStatement","src":"32432:59:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32511:9:51","nodeType":"YulIdentifier","src":"32511:9:51"},{"kind":"number","nativeSrc":"32522:2:51","nodeType":"YulLiteral","src":"32522:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"32507:3:51","nodeType":"YulIdentifier","src":"32507:3:51"},"nativeSrc":"32507:18:51","nodeType":"YulFunctionCall","src":"32507:18:51"},{"name":"value3","nativeSrc":"32527:6:51","nodeType":"YulIdentifier","src":"32527:6:51"}],"functionName":{"name":"mstore","nativeSrc":"32500:6:51","nodeType":"YulIdentifier","src":"32500:6:51"},"nativeSrc":"32500:34:51","nodeType":"YulFunctionCall","src":"32500:34:51"},"nativeSrc":"32500:34:51","nodeType":"YulExpressionStatement","src":"32500:34:51"}]},"name":"abi_encode_tuple_t_string_memory_ptr_t_address_t_uint64_t_userDefinedValueType$_TransactionHash_$13108__to_t_string_memory_ptr_t_address_t_uint256_t_bytes32__fromStack_reversed","nativeSrc":"32018:522:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32204:9:51","nodeType":"YulTypedName","src":"32204:9:51","type":""},{"name":"value3","nativeSrc":"32215:6:51","nodeType":"YulTypedName","src":"32215:6:51","type":""},{"name":"value2","nativeSrc":"32223:6:51","nodeType":"YulTypedName","src":"32223:6:51","type":""},{"name":"value1","nativeSrc":"32231:6:51","nodeType":"YulTypedName","src":"32231:6:51","type":""},{"name":"value0","nativeSrc":"32239:6:51","nodeType":"YulTypedName","src":"32239:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32250:4:51","nodeType":"YulTypedName","src":"32250:4:51","type":""}],"src":"32018:522:51"},{"body":{"nativeSrc":"32577:95:51","nodeType":"YulBlock","src":"32577:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32594:1:51","nodeType":"YulLiteral","src":"32594:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"32601:3:51","nodeType":"YulLiteral","src":"32601:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"32606:10:51","nodeType":"YulLiteral","src":"32606:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"32597:3:51","nodeType":"YulIdentifier","src":"32597:3:51"},"nativeSrc":"32597:20:51","nodeType":"YulFunctionCall","src":"32597:20:51"}],"functionName":{"name":"mstore","nativeSrc":"32587:6:51","nodeType":"YulIdentifier","src":"32587:6:51"},"nativeSrc":"32587:31:51","nodeType":"YulFunctionCall","src":"32587:31:51"},"nativeSrc":"32587:31:51","nodeType":"YulExpressionStatement","src":"32587:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"32634:1:51","nodeType":"YulLiteral","src":"32634:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"32637:4:51","nodeType":"YulLiteral","src":"32637:4:51","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"32627:6:51","nodeType":"YulIdentifier","src":"32627:6:51"},"nativeSrc":"32627:15:51","nodeType":"YulFunctionCall","src":"32627:15:51"},"nativeSrc":"32627:15:51","nodeType":"YulExpressionStatement","src":"32627:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"32658:1:51","nodeType":"YulLiteral","src":"32658:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"32661:4:51","nodeType":"YulLiteral","src":"32661:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"32651:6:51","nodeType":"YulIdentifier","src":"32651:6:51"},"nativeSrc":"32651:15:51","nodeType":"YulFunctionCall","src":"32651:15:51"},"nativeSrc":"32651:15:51","nodeType":"YulExpressionStatement","src":"32651:15:51"}]},"name":"panic_error_0x12","nativeSrc":"32545:127:51","nodeType":"YulFunctionDefinition","src":"32545:127:51"},{"body":{"nativeSrc":"32722:125:51","nodeType":"YulBlock","src":"32722:125:51","statements":[{"nativeSrc":"32732:25:51","nodeType":"YulVariableDeclaration","src":"32732:25:51","value":{"arguments":[{"name":"y","nativeSrc":"32747:1:51","nodeType":"YulIdentifier","src":"32747:1:51"},{"kind":"number","nativeSrc":"32750:6:51","nodeType":"YulLiteral","src":"32750:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"32743:3:51","nodeType":"YulIdentifier","src":"32743:3:51"},"nativeSrc":"32743:14:51","nodeType":"YulFunctionCall","src":"32743:14:51"},"variables":[{"name":"y_1","nativeSrc":"32736:3:51","nodeType":"YulTypedName","src":"32736:3:51","type":""}]},{"body":{"nativeSrc":"32781:22:51","nodeType":"YulBlock","src":"32781:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"32783:16:51","nodeType":"YulIdentifier","src":"32783:16:51"},"nativeSrc":"32783:18:51","nodeType":"YulFunctionCall","src":"32783:18:51"},"nativeSrc":"32783:18:51","nodeType":"YulExpressionStatement","src":"32783:18:51"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"32776:3:51","nodeType":"YulIdentifier","src":"32776:3:51"}],"functionName":{"name":"iszero","nativeSrc":"32769:6:51","nodeType":"YulIdentifier","src":"32769:6:51"},"nativeSrc":"32769:11:51","nodeType":"YulFunctionCall","src":"32769:11:51"},"nativeSrc":"32766:37:51","nodeType":"YulIf","src":"32766:37:51"},{"nativeSrc":"32812:29:51","nodeType":"YulAssignment","src":"32812:29:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"32825:1:51","nodeType":"YulIdentifier","src":"32825:1:51"},{"kind":"number","nativeSrc":"32828:6:51","nodeType":"YulLiteral","src":"32828:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"32821:3:51","nodeType":"YulIdentifier","src":"32821:3:51"},"nativeSrc":"32821:14:51","nodeType":"YulFunctionCall","src":"32821:14:51"},{"name":"y_1","nativeSrc":"32837:3:51","nodeType":"YulIdentifier","src":"32837:3:51"}],"functionName":{"name":"div","nativeSrc":"32817:3:51","nodeType":"YulIdentifier","src":"32817:3:51"},"nativeSrc":"32817:24:51","nodeType":"YulFunctionCall","src":"32817:24:51"},"variableNames":[{"name":"r","nativeSrc":"32812:1:51","nodeType":"YulIdentifier","src":"32812:1:51"}]}]},"name":"checked_div_t_uint16","nativeSrc":"32677:170:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"32707:1:51","nodeType":"YulTypedName","src":"32707:1:51","type":""},{"name":"y","nativeSrc":"32710:1:51","nodeType":"YulTypedName","src":"32710:1:51","type":""}],"returnVariables":[{"name":"r","nativeSrc":"32716:1:51","nodeType":"YulTypedName","src":"32716:1:51","type":""}],"src":"32677:170:51"},{"body":{"nativeSrc":"32884:95:51","nodeType":"YulBlock","src":"32884:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"32901:1:51","nodeType":"YulLiteral","src":"32901:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"32908:3:51","nodeType":"YulLiteral","src":"32908:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"32913:10:51","nodeType":"YulLiteral","src":"32913:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"32904:3:51","nodeType":"YulIdentifier","src":"32904:3:51"},"nativeSrc":"32904:20:51","nodeType":"YulFunctionCall","src":"32904:20:51"}],"functionName":{"name":"mstore","nativeSrc":"32894:6:51","nodeType":"YulIdentifier","src":"32894:6:51"},"nativeSrc":"32894:31:51","nodeType":"YulFunctionCall","src":"32894:31:51"},"nativeSrc":"32894:31:51","nodeType":"YulExpressionStatement","src":"32894:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"32941:1:51","nodeType":"YulLiteral","src":"32941:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"32944:4:51","nodeType":"YulLiteral","src":"32944:4:51","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"32934:6:51","nodeType":"YulIdentifier","src":"32934:6:51"},"nativeSrc":"32934:15:51","nodeType":"YulFunctionCall","src":"32934:15:51"},"nativeSrc":"32934:15:51","nodeType":"YulExpressionStatement","src":"32934:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"32965:1:51","nodeType":"YulLiteral","src":"32965:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"32968:4:51","nodeType":"YulLiteral","src":"32968:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"32958:6:51","nodeType":"YulIdentifier","src":"32958:6:51"},"nativeSrc":"32958:15:51","nodeType":"YulFunctionCall","src":"32958:15:51"},"nativeSrc":"32958:15:51","nodeType":"YulExpressionStatement","src":"32958:15:51"}]},"name":"panic_error_0x32","nativeSrc":"32852:127:51","nodeType":"YulFunctionDefinition","src":"32852:127:51"},{"body":{"nativeSrc":"33092:101:51","nodeType":"YulBlock","src":"33092:101:51","statements":[{"nativeSrc":"33102:26:51","nodeType":"YulAssignment","src":"33102:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"33114:9:51","nodeType":"YulIdentifier","src":"33114:9:51"},{"kind":"number","nativeSrc":"33125:2:51","nodeType":"YulLiteral","src":"33125:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33110:3:51","nodeType":"YulIdentifier","src":"33110:3:51"},"nativeSrc":"33110:18:51","nodeType":"YulFunctionCall","src":"33110:18:51"},"variableNames":[{"name":"tail","nativeSrc":"33102:4:51","nodeType":"YulIdentifier","src":"33102:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33144:9:51","nodeType":"YulIdentifier","src":"33144:9:51"},{"arguments":[{"name":"value0","nativeSrc":"33159:6:51","nodeType":"YulIdentifier","src":"33159:6:51"},{"kind":"number","nativeSrc":"33167:18:51","nodeType":"YulLiteral","src":"33167:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"33155:3:51","nodeType":"YulIdentifier","src":"33155:3:51"},"nativeSrc":"33155:31:51","nodeType":"YulFunctionCall","src":"33155:31:51"}],"functionName":{"name":"mstore","nativeSrc":"33137:6:51","nodeType":"YulIdentifier","src":"33137:6:51"},"nativeSrc":"33137:50:51","nodeType":"YulFunctionCall","src":"33137:50:51"},"nativeSrc":"33137:50:51","nodeType":"YulExpressionStatement","src":"33137:50:51"}]},"name":"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed","nativeSrc":"32984:209:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33061:9:51","nodeType":"YulTypedName","src":"33061:9:51","type":""},{"name":"value0","nativeSrc":"33072:6:51","nodeType":"YulTypedName","src":"33072:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33083:4:51","nodeType":"YulTypedName","src":"33083:4:51","type":""}],"src":"32984:209:51"},{"body":{"nativeSrc":"33355:188:51","nodeType":"YulBlock","src":"33355:188:51","statements":[{"nativeSrc":"33365:26:51","nodeType":"YulAssignment","src":"33365:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"33377:9:51","nodeType":"YulIdentifier","src":"33377:9:51"},{"kind":"number","nativeSrc":"33388:2:51","nodeType":"YulLiteral","src":"33388:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"33373:3:51","nodeType":"YulIdentifier","src":"33373:3:51"},"nativeSrc":"33373:18:51","nodeType":"YulFunctionCall","src":"33373:18:51"},"variableNames":[{"name":"tail","nativeSrc":"33365:4:51","nodeType":"YulIdentifier","src":"33365:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33407:9:51","nodeType":"YulIdentifier","src":"33407:9:51"},{"arguments":[{"name":"value0","nativeSrc":"33422:6:51","nodeType":"YulIdentifier","src":"33422:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"33438:3:51","nodeType":"YulLiteral","src":"33438:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"33443:1:51","nodeType":"YulLiteral","src":"33443:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"33434:3:51","nodeType":"YulIdentifier","src":"33434:3:51"},"nativeSrc":"33434:11:51","nodeType":"YulFunctionCall","src":"33434:11:51"},{"kind":"number","nativeSrc":"33447:1:51","nodeType":"YulLiteral","src":"33447:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"33430:3:51","nodeType":"YulIdentifier","src":"33430:3:51"},"nativeSrc":"33430:19:51","nodeType":"YulFunctionCall","src":"33430:19:51"}],"functionName":{"name":"and","nativeSrc":"33418:3:51","nodeType":"YulIdentifier","src":"33418:3:51"},"nativeSrc":"33418:32:51","nodeType":"YulFunctionCall","src":"33418:32:51"}],"functionName":{"name":"mstore","nativeSrc":"33400:6:51","nodeType":"YulIdentifier","src":"33400:6:51"},"nativeSrc":"33400:51:51","nodeType":"YulFunctionCall","src":"33400:51:51"},"nativeSrc":"33400:51:51","nodeType":"YulExpressionStatement","src":"33400:51:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33471:9:51","nodeType":"YulIdentifier","src":"33471:9:51"},{"kind":"number","nativeSrc":"33482:2:51","nodeType":"YulLiteral","src":"33482:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33467:3:51","nodeType":"YulIdentifier","src":"33467:3:51"},"nativeSrc":"33467:18:51","nodeType":"YulFunctionCall","src":"33467:18:51"},{"name":"value1","nativeSrc":"33487:6:51","nodeType":"YulIdentifier","src":"33487:6:51"}],"functionName":{"name":"mstore","nativeSrc":"33460:6:51","nodeType":"YulIdentifier","src":"33460:6:51"},"nativeSrc":"33460:34:51","nodeType":"YulFunctionCall","src":"33460:34:51"},"nativeSrc":"33460:34:51","nodeType":"YulExpressionStatement","src":"33460:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33514:9:51","nodeType":"YulIdentifier","src":"33514:9:51"},{"kind":"number","nativeSrc":"33525:2:51","nodeType":"YulLiteral","src":"33525:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33510:3:51","nodeType":"YulIdentifier","src":"33510:3:51"},"nativeSrc":"33510:18:51","nodeType":"YulFunctionCall","src":"33510:18:51"},{"name":"value2","nativeSrc":"33530:6:51","nodeType":"YulIdentifier","src":"33530:6:51"}],"functionName":{"name":"mstore","nativeSrc":"33503:6:51","nodeType":"YulIdentifier","src":"33503:6:51"},"nativeSrc":"33503:34:51","nodeType":"YulFunctionCall","src":"33503:34:51"},"nativeSrc":"33503:34:51","nodeType":"YulExpressionStatement","src":"33503:34:51"}]},"name":"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"33198:345:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33308:9:51","nodeType":"YulTypedName","src":"33308:9:51","type":""},{"name":"value2","nativeSrc":"33319:6:51","nodeType":"YulTypedName","src":"33319:6:51","type":""},{"name":"value1","nativeSrc":"33327:6:51","nodeType":"YulTypedName","src":"33327:6:51","type":""},{"name":"value0","nativeSrc":"33335:6:51","nodeType":"YulTypedName","src":"33335:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33346:4:51","nodeType":"YulTypedName","src":"33346:4:51","type":""}],"src":"33198:345:51"},{"body":{"nativeSrc":"33788:204:51","nodeType":"YulBlock","src":"33788:204:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"33805:3:51","nodeType":"YulIdentifier","src":"33805:3:51"},{"hexValue":"577261707065645749543a20","kind":"string","nativeSrc":"33810:14:51","nodeType":"YulLiteral","src":"33810:14:51","type":"","value":"WrappedWIT: "}],"functionName":{"name":"mstore","nativeSrc":"33798:6:51","nodeType":"YulIdentifier","src":"33798:6:51"},"nativeSrc":"33798:27:51","nodeType":"YulFunctionCall","src":"33798:27:51"},"nativeSrc":"33798:27:51","nodeType":"YulExpressionStatement","src":"33798:27:51"},{"nativeSrc":"33834:27:51","nodeType":"YulVariableDeclaration","src":"33834:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"33854:6:51","nodeType":"YulIdentifier","src":"33854:6:51"}],"functionName":{"name":"mload","nativeSrc":"33848:5:51","nodeType":"YulIdentifier","src":"33848:5:51"},"nativeSrc":"33848:13:51","nodeType":"YulFunctionCall","src":"33848:13:51"},"variables":[{"name":"length","nativeSrc":"33838:6:51","nodeType":"YulTypedName","src":"33838:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"33909:6:51","nodeType":"YulIdentifier","src":"33909:6:51"},{"kind":"number","nativeSrc":"33917:4:51","nodeType":"YulLiteral","src":"33917:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"33905:3:51","nodeType":"YulIdentifier","src":"33905:3:51"},"nativeSrc":"33905:17:51","nodeType":"YulFunctionCall","src":"33905:17:51"},{"arguments":[{"name":"pos","nativeSrc":"33928:3:51","nodeType":"YulIdentifier","src":"33928:3:51"},{"kind":"number","nativeSrc":"33933:2:51","nodeType":"YulLiteral","src":"33933:2:51","type":"","value":"12"}],"functionName":{"name":"add","nativeSrc":"33924:3:51","nodeType":"YulIdentifier","src":"33924:3:51"},"nativeSrc":"33924:12:51","nodeType":"YulFunctionCall","src":"33924:12:51"},{"name":"length","nativeSrc":"33938:6:51","nodeType":"YulIdentifier","src":"33938:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"33870:34:51","nodeType":"YulIdentifier","src":"33870:34:51"},"nativeSrc":"33870:75:51","nodeType":"YulFunctionCall","src":"33870:75:51"},"nativeSrc":"33870:75:51","nodeType":"YulExpressionStatement","src":"33870:75:51"},{"nativeSrc":"33954:32:51","nodeType":"YulAssignment","src":"33954:32:51","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"33969:3:51","nodeType":"YulIdentifier","src":"33969:3:51"},{"name":"length","nativeSrc":"33974:6:51","nodeType":"YulIdentifier","src":"33974:6:51"}],"functionName":{"name":"add","nativeSrc":"33965:3:51","nodeType":"YulIdentifier","src":"33965:3:51"},"nativeSrc":"33965:16:51","nodeType":"YulFunctionCall","src":"33965:16:51"},{"kind":"number","nativeSrc":"33983:2:51","nodeType":"YulLiteral","src":"33983:2:51","type":"","value":"12"}],"functionName":{"name":"add","nativeSrc":"33961:3:51","nodeType":"YulIdentifier","src":"33961:3:51"},"nativeSrc":"33961:25:51","nodeType":"YulFunctionCall","src":"33961:25:51"},"variableNames":[{"name":"end","nativeSrc":"33954:3:51","nodeType":"YulIdentifier","src":"33954: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":"33548:444:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"33764:3:51","nodeType":"YulTypedName","src":"33764:3:51","type":""},{"name":"value0","nativeSrc":"33769:6:51","nodeType":"YulTypedName","src":"33769:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"33780:3:51","nodeType":"YulTypedName","src":"33780:3:51","type":""}],"src":"33548:444:51"},{"body":{"nativeSrc":"34171:172:51","nodeType":"YulBlock","src":"34171:172:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34188:9:51","nodeType":"YulIdentifier","src":"34188:9:51"},{"kind":"number","nativeSrc":"34199:2:51","nodeType":"YulLiteral","src":"34199:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"34181:6:51","nodeType":"YulIdentifier","src":"34181:6:51"},"nativeSrc":"34181:21:51","nodeType":"YulFunctionCall","src":"34181:21:51"},"nativeSrc":"34181:21:51","nodeType":"YulExpressionStatement","src":"34181:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34222:9:51","nodeType":"YulIdentifier","src":"34222:9:51"},{"kind":"number","nativeSrc":"34233:2:51","nodeType":"YulLiteral","src":"34233:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34218:3:51","nodeType":"YulIdentifier","src":"34218:3:51"},"nativeSrc":"34218:18:51","nodeType":"YulFunctionCall","src":"34218:18:51"},{"kind":"number","nativeSrc":"34238:2:51","nodeType":"YulLiteral","src":"34238:2:51","type":"","value":"22"}],"functionName":{"name":"mstore","nativeSrc":"34211:6:51","nodeType":"YulIdentifier","src":"34211:6:51"},"nativeSrc":"34211:30:51","nodeType":"YulFunctionCall","src":"34211:30:51"},"nativeSrc":"34211:30:51","nodeType":"YulExpressionStatement","src":"34211:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34261:9:51","nodeType":"YulIdentifier","src":"34261:9:51"},{"kind":"number","nativeSrc":"34272:2:51","nodeType":"YulLiteral","src":"34272:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34257:3:51","nodeType":"YulIdentifier","src":"34257:3:51"},"nativeSrc":"34257:18:51","nodeType":"YulFunctionCall","src":"34257:18:51"},{"hexValue":"4265636833323a20696e76616c6964206c656e677468","kind":"string","nativeSrc":"34277:24:51","nodeType":"YulLiteral","src":"34277:24:51","type":"","value":"Bech32: invalid length"}],"functionName":{"name":"mstore","nativeSrc":"34250:6:51","nodeType":"YulIdentifier","src":"34250:6:51"},"nativeSrc":"34250:52:51","nodeType":"YulFunctionCall","src":"34250:52:51"},"nativeSrc":"34250:52:51","nodeType":"YulExpressionStatement","src":"34250:52:51"},{"nativeSrc":"34311:26:51","nodeType":"YulAssignment","src":"34311:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"34323:9:51","nodeType":"YulIdentifier","src":"34323:9:51"},{"kind":"number","nativeSrc":"34334:2:51","nodeType":"YulLiteral","src":"34334:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34319:3:51","nodeType":"YulIdentifier","src":"34319:3:51"},"nativeSrc":"34319:18:51","nodeType":"YulFunctionCall","src":"34319:18:51"},"variableNames":[{"name":"tail","nativeSrc":"34311:4:51","nodeType":"YulIdentifier","src":"34311:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_804d16c791056572535f8e2036ddf984da7d771fd478e9d9544d867a673dae25__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"33997:346:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34148:9:51","nodeType":"YulTypedName","src":"34148:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34162:4:51","nodeType":"YulTypedName","src":"34162:4:51","type":""}],"src":"33997:346:51"},{"body":{"nativeSrc":"34408:519:51","nodeType":"YulBlock","src":"34408:519:51","statements":[{"nativeSrc":"34418:16:51","nodeType":"YulVariableDeclaration","src":"34418:16:51","value":{"name":"pos","nativeSrc":"34431:3:51","nodeType":"YulIdentifier","src":"34431:3:51"},"variables":[{"name":"pos_1","nativeSrc":"34422:5:51","nodeType":"YulTypedName","src":"34422:5:51","type":""}]},{"nativeSrc":"34443:26:51","nodeType":"YulVariableDeclaration","src":"34443:26:51","value":{"arguments":[{"name":"value","nativeSrc":"34463:5:51","nodeType":"YulIdentifier","src":"34463:5:51"}],"functionName":{"name":"mload","nativeSrc":"34457:5:51","nodeType":"YulIdentifier","src":"34457:5:51"},"nativeSrc":"34457:12:51","nodeType":"YulFunctionCall","src":"34457:12:51"},"variables":[{"name":"length","nativeSrc":"34447:6:51","nodeType":"YulTypedName","src":"34447:6:51","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"34485:3:51","nodeType":"YulIdentifier","src":"34485:3:51"},{"name":"length","nativeSrc":"34490:6:51","nodeType":"YulIdentifier","src":"34490:6:51"}],"functionName":{"name":"mstore","nativeSrc":"34478:6:51","nodeType":"YulIdentifier","src":"34478:6:51"},"nativeSrc":"34478:19:51","nodeType":"YulFunctionCall","src":"34478:19:51"},"nativeSrc":"34478:19:51","nodeType":"YulExpressionStatement","src":"34478:19:51"},{"nativeSrc":"34506:21:51","nodeType":"YulAssignment","src":"34506:21:51","value":{"arguments":[{"name":"pos","nativeSrc":"34517:3:51","nodeType":"YulIdentifier","src":"34517:3:51"},{"kind":"number","nativeSrc":"34522:4:51","nodeType":"YulLiteral","src":"34522:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"34513:3:51","nodeType":"YulIdentifier","src":"34513:3:51"},"nativeSrc":"34513:14:51","nodeType":"YulFunctionCall","src":"34513:14:51"},"variableNames":[{"name":"pos","nativeSrc":"34506:3:51","nodeType":"YulIdentifier","src":"34506:3:51"}]},{"nativeSrc":"34536:49:51","nodeType":"YulVariableDeclaration","src":"34536:49:51","value":{"arguments":[{"arguments":[{"name":"pos_1","nativeSrc":"34556:5:51","nodeType":"YulIdentifier","src":"34556:5:51"},{"arguments":[{"kind":"number","nativeSrc":"34567:1:51","nodeType":"YulLiteral","src":"34567:1:51","type":"","value":"5"},{"name":"length","nativeSrc":"34570:6:51","nodeType":"YulIdentifier","src":"34570:6:51"}],"functionName":{"name":"shl","nativeSrc":"34563:3:51","nodeType":"YulIdentifier","src":"34563:3:51"},"nativeSrc":"34563:14:51","nodeType":"YulFunctionCall","src":"34563:14:51"}],"functionName":{"name":"add","nativeSrc":"34552:3:51","nodeType":"YulIdentifier","src":"34552:3:51"},"nativeSrc":"34552:26:51","nodeType":"YulFunctionCall","src":"34552:26:51"},{"kind":"number","nativeSrc":"34580:4:51","nodeType":"YulLiteral","src":"34580:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"34548:3:51","nodeType":"YulIdentifier","src":"34548:3:51"},"nativeSrc":"34548:37:51","nodeType":"YulFunctionCall","src":"34548:37:51"},"variables":[{"name":"tail","nativeSrc":"34540:4:51","nodeType":"YulTypedName","src":"34540:4:51","type":""}]},{"nativeSrc":"34594:30:51","nodeType":"YulVariableDeclaration","src":"34594:30:51","value":{"arguments":[{"name":"value","nativeSrc":"34612:5:51","nodeType":"YulIdentifier","src":"34612:5:51"},{"kind":"number","nativeSrc":"34619:4:51","nodeType":"YulLiteral","src":"34619:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"34608:3:51","nodeType":"YulIdentifier","src":"34608:3:51"},"nativeSrc":"34608:16:51","nodeType":"YulFunctionCall","src":"34608:16:51"},"variables":[{"name":"srcPtr","nativeSrc":"34598:6:51","nodeType":"YulTypedName","src":"34598:6:51","type":""}]},{"nativeSrc":"34633:10:51","nodeType":"YulVariableDeclaration","src":"34633:10:51","value":{"kind":"number","nativeSrc":"34642:1:51","nodeType":"YulLiteral","src":"34642:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"34637:1:51","nodeType":"YulTypedName","src":"34637:1:51","type":""}]},{"body":{"nativeSrc":"34701:200:51","nodeType":"YulBlock","src":"34701:200:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"34722:3:51","nodeType":"YulIdentifier","src":"34722:3:51"},{"arguments":[{"arguments":[{"name":"tail","nativeSrc":"34735:4:51","nodeType":"YulIdentifier","src":"34735:4:51"},{"name":"pos_1","nativeSrc":"34741:5:51","nodeType":"YulIdentifier","src":"34741:5:51"}],"functionName":{"name":"sub","nativeSrc":"34731:3:51","nodeType":"YulIdentifier","src":"34731:3:51"},"nativeSrc":"34731:16:51","nodeType":"YulFunctionCall","src":"34731:16:51"},{"arguments":[{"kind":"number","nativeSrc":"34753:2:51","nodeType":"YulLiteral","src":"34753:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"34749:3:51","nodeType":"YulIdentifier","src":"34749:3:51"},"nativeSrc":"34749:7:51","nodeType":"YulFunctionCall","src":"34749:7:51"}],"functionName":{"name":"add","nativeSrc":"34727:3:51","nodeType":"YulIdentifier","src":"34727:3:51"},"nativeSrc":"34727:30:51","nodeType":"YulFunctionCall","src":"34727:30:51"}],"functionName":{"name":"mstore","nativeSrc":"34715:6:51","nodeType":"YulIdentifier","src":"34715:6:51"},"nativeSrc":"34715:43:51","nodeType":"YulFunctionCall","src":"34715:43:51"},"nativeSrc":"34715:43:51","nodeType":"YulExpressionStatement","src":"34715:43:51"},{"nativeSrc":"34771:46:51","nodeType":"YulAssignment","src":"34771:46:51","value":{"arguments":[{"arguments":[{"name":"srcPtr","nativeSrc":"34803:6:51","nodeType":"YulIdentifier","src":"34803:6:51"}],"functionName":{"name":"mload","nativeSrc":"34797:5:51","nodeType":"YulIdentifier","src":"34797:5:51"},"nativeSrc":"34797:13:51","nodeType":"YulFunctionCall","src":"34797:13:51"},{"name":"tail","nativeSrc":"34812:4:51","nodeType":"YulIdentifier","src":"34812:4:51"}],"functionName":{"name":"abi_encode_string","nativeSrc":"34779:17:51","nodeType":"YulIdentifier","src":"34779:17:51"},"nativeSrc":"34779:38:51","nodeType":"YulFunctionCall","src":"34779:38:51"},"variableNames":[{"name":"tail","nativeSrc":"34771:4:51","nodeType":"YulIdentifier","src":"34771:4:51"}]},{"nativeSrc":"34830:27:51","nodeType":"YulAssignment","src":"34830:27:51","value":{"arguments":[{"name":"srcPtr","nativeSrc":"34844:6:51","nodeType":"YulIdentifier","src":"34844:6:51"},{"kind":"number","nativeSrc":"34852:4:51","nodeType":"YulLiteral","src":"34852:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"34840:3:51","nodeType":"YulIdentifier","src":"34840:3:51"},"nativeSrc":"34840:17:51","nodeType":"YulFunctionCall","src":"34840:17:51"},"variableNames":[{"name":"srcPtr","nativeSrc":"34830:6:51","nodeType":"YulIdentifier","src":"34830:6:51"}]},{"nativeSrc":"34870:21:51","nodeType":"YulAssignment","src":"34870:21:51","value":{"arguments":[{"name":"pos","nativeSrc":"34881:3:51","nodeType":"YulIdentifier","src":"34881:3:51"},{"kind":"number","nativeSrc":"34886:4:51","nodeType":"YulLiteral","src":"34886:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"34877:3:51","nodeType":"YulIdentifier","src":"34877:3:51"},"nativeSrc":"34877:14:51","nodeType":"YulFunctionCall","src":"34877:14:51"},"variableNames":[{"name":"pos","nativeSrc":"34870:3:51","nodeType":"YulIdentifier","src":"34870:3:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"34663:1:51","nodeType":"YulIdentifier","src":"34663:1:51"},{"name":"length","nativeSrc":"34666:6:51","nodeType":"YulIdentifier","src":"34666:6:51"}],"functionName":{"name":"lt","nativeSrc":"34660:2:51","nodeType":"YulIdentifier","src":"34660:2:51"},"nativeSrc":"34660:13:51","nodeType":"YulFunctionCall","src":"34660:13:51"},"nativeSrc":"34652:249:51","nodeType":"YulForLoop","post":{"nativeSrc":"34674:18:51","nodeType":"YulBlock","src":"34674:18:51","statements":[{"nativeSrc":"34676:14:51","nodeType":"YulAssignment","src":"34676:14:51","value":{"arguments":[{"name":"i","nativeSrc":"34685:1:51","nodeType":"YulIdentifier","src":"34685:1:51"},{"kind":"number","nativeSrc":"34688:1:51","nodeType":"YulLiteral","src":"34688:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"34681:3:51","nodeType":"YulIdentifier","src":"34681:3:51"},"nativeSrc":"34681:9:51","nodeType":"YulFunctionCall","src":"34681:9:51"},"variableNames":[{"name":"i","nativeSrc":"34676:1:51","nodeType":"YulIdentifier","src":"34676:1:51"}]}]},"pre":{"nativeSrc":"34656:3:51","nodeType":"YulBlock","src":"34656:3:51","statements":[]},"src":"34652:249:51"},{"nativeSrc":"34910:11:51","nodeType":"YulAssignment","src":"34910:11:51","value":{"name":"tail","nativeSrc":"34917:4:51","nodeType":"YulIdentifier","src":"34917:4:51"},"variableNames":[{"name":"end","nativeSrc":"34910:3:51","nodeType":"YulIdentifier","src":"34910:3:51"}]}]},"name":"abi_encode_array_string_dyn","nativeSrc":"34348:579:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"34385:5:51","nodeType":"YulTypedName","src":"34385:5:51","type":""},{"name":"pos","nativeSrc":"34392:3:51","nodeType":"YulTypedName","src":"34392:3:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"34400:3:51","nodeType":"YulTypedName","src":"34400:3:51","type":""}],"src":"34348:579:51"},{"body":{"nativeSrc":"35201:234:51","nodeType":"YulBlock","src":"35201:234:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35218:9:51","nodeType":"YulIdentifier","src":"35218:9:51"},{"kind":"number","nativeSrc":"35229:2:51","nodeType":"YulLiteral","src":"35229:2:51","type":"","value":"64"}],"functionName":{"name":"mstore","nativeSrc":"35211:6:51","nodeType":"YulIdentifier","src":"35211:6:51"},"nativeSrc":"35211:21:51","nodeType":"YulFunctionCall","src":"35211:21:51"},"nativeSrc":"35211:21:51","nodeType":"YulExpressionStatement","src":"35211:21:51"},{"nativeSrc":"35241:69:51","nodeType":"YulVariableDeclaration","src":"35241:69:51","value":{"arguments":[{"name":"value0","nativeSrc":"35283:6:51","nodeType":"YulIdentifier","src":"35283:6:51"},{"arguments":[{"name":"headStart","nativeSrc":"35295:9:51","nodeType":"YulIdentifier","src":"35295:9:51"},{"kind":"number","nativeSrc":"35306:2:51","nodeType":"YulLiteral","src":"35306:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35291:3:51","nodeType":"YulIdentifier","src":"35291:3:51"},"nativeSrc":"35291:18:51","nodeType":"YulFunctionCall","src":"35291:18:51"}],"functionName":{"name":"abi_encode_array_string_dyn","nativeSrc":"35255:27:51","nodeType":"YulIdentifier","src":"35255:27:51"},"nativeSrc":"35255:55:51","nodeType":"YulFunctionCall","src":"35255:55:51"},"variables":[{"name":"tail_1","nativeSrc":"35245:6:51","nodeType":"YulTypedName","src":"35245:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35330:9:51","nodeType":"YulIdentifier","src":"35330:9:51"},{"kind":"number","nativeSrc":"35341:2:51","nodeType":"YulLiteral","src":"35341:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35326:3:51","nodeType":"YulIdentifier","src":"35326:3:51"},"nativeSrc":"35326:18:51","nodeType":"YulFunctionCall","src":"35326:18:51"},{"arguments":[{"name":"tail_1","nativeSrc":"35350:6:51","nodeType":"YulIdentifier","src":"35350:6:51"},{"name":"headStart","nativeSrc":"35358:9:51","nodeType":"YulIdentifier","src":"35358:9:51"}],"functionName":{"name":"sub","nativeSrc":"35346:3:51","nodeType":"YulIdentifier","src":"35346:3:51"},"nativeSrc":"35346:22:51","nodeType":"YulFunctionCall","src":"35346:22:51"}],"functionName":{"name":"mstore","nativeSrc":"35319:6:51","nodeType":"YulIdentifier","src":"35319:6:51"},"nativeSrc":"35319:50:51","nodeType":"YulFunctionCall","src":"35319:50:51"},"nativeSrc":"35319:50:51","nodeType":"YulExpressionStatement","src":"35319:50:51"},{"nativeSrc":"35378:51:51","nodeType":"YulAssignment","src":"35378:51:51","value":{"arguments":[{"name":"value1","nativeSrc":"35414:6:51","nodeType":"YulIdentifier","src":"35414:6:51"},{"name":"tail_1","nativeSrc":"35422:6:51","nodeType":"YulIdentifier","src":"35422:6:51"}],"functionName":{"name":"abi_encode_array_string_dyn","nativeSrc":"35386:27:51","nodeType":"YulIdentifier","src":"35386:27:51"},"nativeSrc":"35386:43:51","nodeType":"YulFunctionCall","src":"35386:43:51"},"variableNames":[{"name":"tail","nativeSrc":"35378:4:51","nodeType":"YulIdentifier","src":"35378: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":"34932:503:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35162:9:51","nodeType":"YulTypedName","src":"35162:9:51","type":""},{"name":"value1","nativeSrc":"35173:6:51","nodeType":"YulTypedName","src":"35173:6:51","type":""},{"name":"value0","nativeSrc":"35181:6:51","nodeType":"YulTypedName","src":"35181:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35192:4:51","nodeType":"YulTypedName","src":"35192:4:51","type":""}],"src":"34932:503:51"},{"body":{"nativeSrc":"35552:149:51","nodeType":"YulBlock","src":"35552:149:51","statements":[{"body":{"nativeSrc":"35598:16:51","nodeType":"YulBlock","src":"35598:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"35607:1:51","nodeType":"YulLiteral","src":"35607:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"35610:1:51","nodeType":"YulLiteral","src":"35610:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"35600:6:51","nodeType":"YulIdentifier","src":"35600:6:51"},"nativeSrc":"35600:12:51","nodeType":"YulFunctionCall","src":"35600:12:51"},"nativeSrc":"35600:12:51","nodeType":"YulExpressionStatement","src":"35600:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"35573:7:51","nodeType":"YulIdentifier","src":"35573:7:51"},{"name":"headStart","nativeSrc":"35582:9:51","nodeType":"YulIdentifier","src":"35582:9:51"}],"functionName":{"name":"sub","nativeSrc":"35569:3:51","nodeType":"YulIdentifier","src":"35569:3:51"},"nativeSrc":"35569:23:51","nodeType":"YulFunctionCall","src":"35569:23:51"},{"kind":"number","nativeSrc":"35594:2:51","nodeType":"YulLiteral","src":"35594:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"35565:3:51","nodeType":"YulIdentifier","src":"35565:3:51"},"nativeSrc":"35565:32:51","nodeType":"YulFunctionCall","src":"35565:32:51"},"nativeSrc":"35562:52:51","nodeType":"YulIf","src":"35562:52:51"},{"nativeSrc":"35623:14:51","nodeType":"YulVariableDeclaration","src":"35623:14:51","value":{"kind":"number","nativeSrc":"35636:1:51","nodeType":"YulLiteral","src":"35636:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"35627:5:51","nodeType":"YulTypedName","src":"35627:5:51","type":""}]},{"nativeSrc":"35646:25:51","nodeType":"YulAssignment","src":"35646:25:51","value":{"arguments":[{"name":"headStart","nativeSrc":"35661:9:51","nodeType":"YulIdentifier","src":"35661:9:51"}],"functionName":{"name":"mload","nativeSrc":"35655:5:51","nodeType":"YulIdentifier","src":"35655:5:51"},"nativeSrc":"35655:16:51","nodeType":"YulFunctionCall","src":"35655:16:51"},"variableNames":[{"name":"value","nativeSrc":"35646:5:51","nodeType":"YulIdentifier","src":"35646:5:51"}]},{"nativeSrc":"35680:15:51","nodeType":"YulAssignment","src":"35680:15:51","value":{"name":"value","nativeSrc":"35690:5:51","nodeType":"YulIdentifier","src":"35690:5:51"},"variableNames":[{"name":"value0","nativeSrc":"35680:6:51","nodeType":"YulIdentifier","src":"35680:6:51"}]}]},"name":"abi_decode_tuple_t_userDefinedValueType$_RadonHash_$13102_fromMemory","nativeSrc":"35440:261:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35518:9:51","nodeType":"YulTypedName","src":"35518:9:51","type":""},{"name":"dataEnd","nativeSrc":"35529:7:51","nodeType":"YulTypedName","src":"35529:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"35541:6:51","nodeType":"YulTypedName","src":"35541:6:51","type":""}],"src":"35440:261:51"},{"body":{"nativeSrc":"35833:134:51","nodeType":"YulBlock","src":"35833:134:51","statements":[{"nativeSrc":"35843:26:51","nodeType":"YulAssignment","src":"35843:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"35855:9:51","nodeType":"YulIdentifier","src":"35855:9:51"},{"kind":"number","nativeSrc":"35866:2:51","nodeType":"YulLiteral","src":"35866:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35851:3:51","nodeType":"YulIdentifier","src":"35851:3:51"},"nativeSrc":"35851:18:51","nodeType":"YulFunctionCall","src":"35851:18:51"},"variableNames":[{"name":"tail","nativeSrc":"35843:4:51","nodeType":"YulIdentifier","src":"35843:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35885:9:51","nodeType":"YulIdentifier","src":"35885:9:51"},{"name":"value0","nativeSrc":"35896:6:51","nodeType":"YulIdentifier","src":"35896:6:51"}],"functionName":{"name":"mstore","nativeSrc":"35878:6:51","nodeType":"YulIdentifier","src":"35878:6:51"},"nativeSrc":"35878:25:51","nodeType":"YulFunctionCall","src":"35878:25:51"},"nativeSrc":"35878:25:51","nodeType":"YulExpressionStatement","src":"35878:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35923:9:51","nodeType":"YulIdentifier","src":"35923:9:51"},{"kind":"number","nativeSrc":"35934:2:51","nodeType":"YulLiteral","src":"35934:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35919:3:51","nodeType":"YulIdentifier","src":"35919:3:51"},"nativeSrc":"35919:18:51","nodeType":"YulFunctionCall","src":"35919:18:51"},{"arguments":[{"name":"value1","nativeSrc":"35943:6:51","nodeType":"YulIdentifier","src":"35943:6:51"},{"kind":"number","nativeSrc":"35951:8:51","nodeType":"YulLiteral","src":"35951:8:51","type":"","value":"0xffffff"}],"functionName":{"name":"and","nativeSrc":"35939:3:51","nodeType":"YulIdentifier","src":"35939:3:51"},"nativeSrc":"35939:21:51","nodeType":"YulFunctionCall","src":"35939:21:51"}],"functionName":{"name":"mstore","nativeSrc":"35912:6:51","nodeType":"YulIdentifier","src":"35912:6:51"},"nativeSrc":"35912:49:51","nodeType":"YulFunctionCall","src":"35912:49:51"},"nativeSrc":"35912:49:51","nodeType":"YulExpressionStatement","src":"35912:49:51"}]},"name":"abi_encode_tuple_t_uint256_t_uint24__to_t_uint256_t_uint24__fromStack_reversed","nativeSrc":"35706:261:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35794:9:51","nodeType":"YulTypedName","src":"35794:9:51","type":""},{"name":"value1","nativeSrc":"35805:6:51","nodeType":"YulTypedName","src":"35805:6:51","type":""},{"name":"value0","nativeSrc":"35813:6:51","nodeType":"YulTypedName","src":"35813:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35824:4:51","nodeType":"YulTypedName","src":"35824:4:51","type":""}],"src":"35706:261:51"},{"body":{"nativeSrc":"36020:77:51","nodeType":"YulBlock","src":"36020:77:51","statements":[{"nativeSrc":"36030:16:51","nodeType":"YulAssignment","src":"36030:16:51","value":{"arguments":[{"name":"x","nativeSrc":"36041:1:51","nodeType":"YulIdentifier","src":"36041:1:51"},{"name":"y","nativeSrc":"36044:1:51","nodeType":"YulIdentifier","src":"36044:1:51"}],"functionName":{"name":"add","nativeSrc":"36037:3:51","nodeType":"YulIdentifier","src":"36037:3:51"},"nativeSrc":"36037:9:51","nodeType":"YulFunctionCall","src":"36037:9:51"},"variableNames":[{"name":"sum","nativeSrc":"36030:3:51","nodeType":"YulIdentifier","src":"36030:3:51"}]},{"body":{"nativeSrc":"36069:22:51","nodeType":"YulBlock","src":"36069:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"36071:16:51","nodeType":"YulIdentifier","src":"36071:16:51"},"nativeSrc":"36071:18:51","nodeType":"YulFunctionCall","src":"36071:18:51"},"nativeSrc":"36071:18:51","nodeType":"YulExpressionStatement","src":"36071:18:51"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"36061:1:51","nodeType":"YulIdentifier","src":"36061:1:51"},{"name":"sum","nativeSrc":"36064:3:51","nodeType":"YulIdentifier","src":"36064:3:51"}],"functionName":{"name":"gt","nativeSrc":"36058:2:51","nodeType":"YulIdentifier","src":"36058:2:51"},"nativeSrc":"36058:10:51","nodeType":"YulFunctionCall","src":"36058:10:51"},"nativeSrc":"36055:36:51","nodeType":"YulIf","src":"36055:36:51"}]},"name":"checked_add_t_uint256","nativeSrc":"35972:125:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36003:1:51","nodeType":"YulTypedName","src":"36003:1:51","type":""},{"name":"y","nativeSrc":"36006:1:51","nodeType":"YulTypedName","src":"36006:1:51","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"36012:3:51","nodeType":"YulTypedName","src":"36012:3:51","type":""}],"src":"35972:125:51"},{"body":{"nativeSrc":"36154:116:51","nodeType":"YulBlock","src":"36154:116:51","statements":[{"nativeSrc":"36164:20:51","nodeType":"YulAssignment","src":"36164:20:51","value":{"arguments":[{"name":"x","nativeSrc":"36179:1:51","nodeType":"YulIdentifier","src":"36179:1:51"},{"name":"y","nativeSrc":"36182:1:51","nodeType":"YulIdentifier","src":"36182:1:51"}],"functionName":{"name":"mul","nativeSrc":"36175:3:51","nodeType":"YulIdentifier","src":"36175:3:51"},"nativeSrc":"36175:9:51","nodeType":"YulFunctionCall","src":"36175:9:51"},"variableNames":[{"name":"product","nativeSrc":"36164:7:51","nodeType":"YulIdentifier","src":"36164:7:51"}]},{"body":{"nativeSrc":"36242:22:51","nodeType":"YulBlock","src":"36242:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"36244:16:51","nodeType":"YulIdentifier","src":"36244:16:51"},"nativeSrc":"36244:18:51","nodeType":"YulFunctionCall","src":"36244:18:51"},"nativeSrc":"36244:18:51","nodeType":"YulExpressionStatement","src":"36244:18:51"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"36213:1:51","nodeType":"YulIdentifier","src":"36213:1:51"}],"functionName":{"name":"iszero","nativeSrc":"36206:6:51","nodeType":"YulIdentifier","src":"36206:6:51"},"nativeSrc":"36206:9:51","nodeType":"YulFunctionCall","src":"36206:9:51"},{"arguments":[{"name":"y","nativeSrc":"36220:1:51","nodeType":"YulIdentifier","src":"36220:1:51"},{"arguments":[{"name":"product","nativeSrc":"36227:7:51","nodeType":"YulIdentifier","src":"36227:7:51"},{"name":"x","nativeSrc":"36236:1:51","nodeType":"YulIdentifier","src":"36236:1:51"}],"functionName":{"name":"div","nativeSrc":"36223:3:51","nodeType":"YulIdentifier","src":"36223:3:51"},"nativeSrc":"36223:15:51","nodeType":"YulFunctionCall","src":"36223:15:51"}],"functionName":{"name":"eq","nativeSrc":"36217:2:51","nodeType":"YulIdentifier","src":"36217:2:51"},"nativeSrc":"36217:22:51","nodeType":"YulFunctionCall","src":"36217:22:51"}],"functionName":{"name":"or","nativeSrc":"36203:2:51","nodeType":"YulIdentifier","src":"36203:2:51"},"nativeSrc":"36203:37:51","nodeType":"YulFunctionCall","src":"36203:37:51"}],"functionName":{"name":"iszero","nativeSrc":"36196:6:51","nodeType":"YulIdentifier","src":"36196:6:51"},"nativeSrc":"36196:45:51","nodeType":"YulFunctionCall","src":"36196:45:51"},"nativeSrc":"36193:71:51","nodeType":"YulIf","src":"36193:71:51"}]},"name":"checked_mul_t_uint256","nativeSrc":"36102:168:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36133:1:51","nodeType":"YulTypedName","src":"36133:1:51","type":""},{"name":"y","nativeSrc":"36136:1:51","nodeType":"YulTypedName","src":"36136:1:51","type":""}],"returnVariables":[{"name":"product","nativeSrc":"36142:7:51","nodeType":"YulTypedName","src":"36142:7:51","type":""}],"src":"36102:168:51"},{"body":{"nativeSrc":"36321:74:51","nodeType":"YulBlock","src":"36321:74:51","statements":[{"body":{"nativeSrc":"36344:22:51","nodeType":"YulBlock","src":"36344:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"36346:16:51","nodeType":"YulIdentifier","src":"36346:16:51"},"nativeSrc":"36346:18:51","nodeType":"YulFunctionCall","src":"36346:18:51"},"nativeSrc":"36346:18:51","nodeType":"YulExpressionStatement","src":"36346:18:51"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"36341:1:51","nodeType":"YulIdentifier","src":"36341:1:51"}],"functionName":{"name":"iszero","nativeSrc":"36334:6:51","nodeType":"YulIdentifier","src":"36334:6:51"},"nativeSrc":"36334:9:51","nodeType":"YulFunctionCall","src":"36334:9:51"},"nativeSrc":"36331:35:51","nodeType":"YulIf","src":"36331:35:51"},{"nativeSrc":"36375:14:51","nodeType":"YulAssignment","src":"36375:14:51","value":{"arguments":[{"name":"x","nativeSrc":"36384:1:51","nodeType":"YulIdentifier","src":"36384:1:51"},{"name":"y","nativeSrc":"36387:1:51","nodeType":"YulIdentifier","src":"36387:1:51"}],"functionName":{"name":"div","nativeSrc":"36380:3:51","nodeType":"YulIdentifier","src":"36380:3:51"},"nativeSrc":"36380:9:51","nodeType":"YulFunctionCall","src":"36380:9:51"},"variableNames":[{"name":"r","nativeSrc":"36375:1:51","nodeType":"YulIdentifier","src":"36375:1:51"}]}]},"name":"checked_div_t_uint256","nativeSrc":"36275:120:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"36306:1:51","nodeType":"YulTypedName","src":"36306:1:51","type":""},{"name":"y","nativeSrc":"36309:1:51","nodeType":"YulTypedName","src":"36309:1:51","type":""}],"returnVariables":[{"name":"r","nativeSrc":"36315:1:51","nodeType":"YulTypedName","src":"36315:1:51","type":""}],"src":"36275:120:51"},{"body":{"nativeSrc":"36574:172:51","nodeType":"YulBlock","src":"36574:172:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36591:9:51","nodeType":"YulIdentifier","src":"36591:9:51"},{"kind":"number","nativeSrc":"36602:2:51","nodeType":"YulLiteral","src":"36602:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"36584:6:51","nodeType":"YulIdentifier","src":"36584:6:51"},"nativeSrc":"36584:21:51","nodeType":"YulFunctionCall","src":"36584:21:51"},"nativeSrc":"36584:21:51","nodeType":"YulExpressionStatement","src":"36584:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36625:9:51","nodeType":"YulIdentifier","src":"36625:9:51"},{"kind":"number","nativeSrc":"36636:2:51","nodeType":"YulLiteral","src":"36636:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36621:3:51","nodeType":"YulIdentifier","src":"36621:3:51"},"nativeSrc":"36621:18:51","nodeType":"YulFunctionCall","src":"36621:18:51"},{"kind":"number","nativeSrc":"36641:2:51","nodeType":"YulLiteral","src":"36641:2:51","type":"","value":"22"}],"functionName":{"name":"mstore","nativeSrc":"36614:6:51","nodeType":"YulIdentifier","src":"36614:6:51"},"nativeSrc":"36614:30:51","nodeType":"YulFunctionCall","src":"36614:30:51"},"nativeSrc":"36614:30:51","nodeType":"YulExpressionStatement","src":"36614:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36664:9:51","nodeType":"YulIdentifier","src":"36664:9:51"},{"kind":"number","nativeSrc":"36675:2:51","nodeType":"YulLiteral","src":"36675:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36660:3:51","nodeType":"YulIdentifier","src":"36660:3:51"},"nativeSrc":"36660:18:51","nodeType":"YulFunctionCall","src":"36660:18:51"},{"hexValue":"756e61636365707461626c6520756e77726170706572","kind":"string","nativeSrc":"36680:24:51","nodeType":"YulLiteral","src":"36680:24:51","type":"","value":"unacceptable unwrapper"}],"functionName":{"name":"mstore","nativeSrc":"36653:6:51","nodeType":"YulIdentifier","src":"36653:6:51"},"nativeSrc":"36653:52:51","nodeType":"YulFunctionCall","src":"36653:52:51"},"nativeSrc":"36653:52:51","nodeType":"YulExpressionStatement","src":"36653:52:51"},{"nativeSrc":"36714:26:51","nodeType":"YulAssignment","src":"36714:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"36726:9:51","nodeType":"YulIdentifier","src":"36726:9:51"},{"kind":"number","nativeSrc":"36737:2:51","nodeType":"YulLiteral","src":"36737:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"36722:3:51","nodeType":"YulIdentifier","src":"36722:3:51"},"nativeSrc":"36722:18:51","nodeType":"YulFunctionCall","src":"36722:18:51"},"variableNames":[{"name":"tail","nativeSrc":"36714:4:51","nodeType":"YulIdentifier","src":"36714:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_fd568fffd58e4623e9037429de35dafd51a2e3c636d36cf6c06518f7d2565153__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"36400:346:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36551:9:51","nodeType":"YulTypedName","src":"36551:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36565:4:51","nodeType":"YulTypedName","src":"36565:4:51","type":""}],"src":"36400:346:51"},{"body":{"nativeSrc":"36964:276:51","nodeType":"YulBlock","src":"36964:276:51","statements":[{"nativeSrc":"36974:27:51","nodeType":"YulAssignment","src":"36974:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"36986:9:51","nodeType":"YulIdentifier","src":"36986:9:51"},{"kind":"number","nativeSrc":"36997:3:51","nodeType":"YulLiteral","src":"36997:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"36982:3:51","nodeType":"YulIdentifier","src":"36982:3:51"},"nativeSrc":"36982:19:51","nodeType":"YulFunctionCall","src":"36982:19:51"},"variableNames":[{"name":"tail","nativeSrc":"36974:4:51","nodeType":"YulIdentifier","src":"36974:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37017:9:51","nodeType":"YulIdentifier","src":"37017:9:51"},{"name":"value0","nativeSrc":"37028:6:51","nodeType":"YulIdentifier","src":"37028:6:51"}],"functionName":{"name":"mstore","nativeSrc":"37010:6:51","nodeType":"YulIdentifier","src":"37010:6:51"},"nativeSrc":"37010:25:51","nodeType":"YulFunctionCall","src":"37010:25:51"},"nativeSrc":"37010:25:51","nodeType":"YulExpressionStatement","src":"37010:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37055:9:51","nodeType":"YulIdentifier","src":"37055:9:51"},{"kind":"number","nativeSrc":"37066:2:51","nodeType":"YulLiteral","src":"37066:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37051:3:51","nodeType":"YulIdentifier","src":"37051:3:51"},"nativeSrc":"37051:18:51","nodeType":"YulFunctionCall","src":"37051:18:51"},{"name":"value1","nativeSrc":"37071:6:51","nodeType":"YulIdentifier","src":"37071:6:51"}],"functionName":{"name":"mstore","nativeSrc":"37044:6:51","nodeType":"YulIdentifier","src":"37044:6:51"},"nativeSrc":"37044:34:51","nodeType":"YulFunctionCall","src":"37044:34:51"},"nativeSrc":"37044:34:51","nodeType":"YulExpressionStatement","src":"37044:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37098:9:51","nodeType":"YulIdentifier","src":"37098:9:51"},{"kind":"number","nativeSrc":"37109:2:51","nodeType":"YulLiteral","src":"37109:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37094:3:51","nodeType":"YulIdentifier","src":"37094:3:51"},"nativeSrc":"37094:18:51","nodeType":"YulFunctionCall","src":"37094:18:51"},{"name":"value2","nativeSrc":"37114:6:51","nodeType":"YulIdentifier","src":"37114:6:51"}],"functionName":{"name":"mstore","nativeSrc":"37087:6:51","nodeType":"YulIdentifier","src":"37087:6:51"},"nativeSrc":"37087:34:51","nodeType":"YulFunctionCall","src":"37087:34:51"},"nativeSrc":"37087:34:51","nodeType":"YulExpressionStatement","src":"37087:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37141:9:51","nodeType":"YulIdentifier","src":"37141:9:51"},{"kind":"number","nativeSrc":"37152:2:51","nodeType":"YulLiteral","src":"37152:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37137:3:51","nodeType":"YulIdentifier","src":"37137:3:51"},"nativeSrc":"37137:18:51","nodeType":"YulFunctionCall","src":"37137:18:51"},{"name":"value3","nativeSrc":"37157:6:51","nodeType":"YulIdentifier","src":"37157:6:51"}],"functionName":{"name":"mstore","nativeSrc":"37130:6:51","nodeType":"YulIdentifier","src":"37130:6:51"},"nativeSrc":"37130:34:51","nodeType":"YulFunctionCall","src":"37130:34:51"},"nativeSrc":"37130:34:51","nodeType":"YulExpressionStatement","src":"37130:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37184:9:51","nodeType":"YulIdentifier","src":"37184:9:51"},{"kind":"number","nativeSrc":"37195:3:51","nodeType":"YulLiteral","src":"37195:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"37180:3:51","nodeType":"YulIdentifier","src":"37180:3:51"},"nativeSrc":"37180:19:51","nodeType":"YulFunctionCall","src":"37180:19:51"},{"arguments":[{"name":"value4","nativeSrc":"37205:6:51","nodeType":"YulIdentifier","src":"37205:6:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37221:3:51","nodeType":"YulLiteral","src":"37221:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"37226:1:51","nodeType":"YulLiteral","src":"37226:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"37217:3:51","nodeType":"YulIdentifier","src":"37217:3:51"},"nativeSrc":"37217:11:51","nodeType":"YulFunctionCall","src":"37217:11:51"},{"kind":"number","nativeSrc":"37230:1:51","nodeType":"YulLiteral","src":"37230:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"37213:3:51","nodeType":"YulIdentifier","src":"37213:3:51"},"nativeSrc":"37213:19:51","nodeType":"YulFunctionCall","src":"37213:19:51"}],"functionName":{"name":"and","nativeSrc":"37201:3:51","nodeType":"YulIdentifier","src":"37201:3:51"},"nativeSrc":"37201:32:51","nodeType":"YulFunctionCall","src":"37201:32:51"}],"functionName":{"name":"mstore","nativeSrc":"37173:6:51","nodeType":"YulIdentifier","src":"37173:6:51"},"nativeSrc":"37173:61:51","nodeType":"YulFunctionCall","src":"37173:61:51"},"nativeSrc":"37173:61:51","nodeType":"YulExpressionStatement","src":"37173: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":"36751:489:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36901:9:51","nodeType":"YulTypedName","src":"36901:9:51","type":""},{"name":"value4","nativeSrc":"36912:6:51","nodeType":"YulTypedName","src":"36912:6:51","type":""},{"name":"value3","nativeSrc":"36920:6:51","nodeType":"YulTypedName","src":"36920:6:51","type":""},{"name":"value2","nativeSrc":"36928:6:51","nodeType":"YulTypedName","src":"36928:6:51","type":""},{"name":"value1","nativeSrc":"36936:6:51","nodeType":"YulTypedName","src":"36936:6:51","type":""},{"name":"value0","nativeSrc":"36944:6:51","nodeType":"YulTypedName","src":"36944:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36955:4:51","nodeType":"YulTypedName","src":"36955:4:51","type":""}],"src":"36751:489:51"},{"body":{"nativeSrc":"37364:110:51","nodeType":"YulBlock","src":"37364:110:51","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"37381:3:51","nodeType":"YulIdentifier","src":"37381:3:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"37394:2:51","nodeType":"YulLiteral","src":"37394:2:51","type":"","value":"96"},{"name":"value0","nativeSrc":"37398:6:51","nodeType":"YulIdentifier","src":"37398:6:51"}],"functionName":{"name":"shl","nativeSrc":"37390:3:51","nodeType":"YulIdentifier","src":"37390:3:51"},"nativeSrc":"37390:15:51","nodeType":"YulFunctionCall","src":"37390:15:51"},{"arguments":[{"kind":"number","nativeSrc":"37411:26:51","nodeType":"YulLiteral","src":"37411:26:51","type":"","value":"0xffffffffffffffffffffffff"}],"functionName":{"name":"not","nativeSrc":"37407:3:51","nodeType":"YulIdentifier","src":"37407:3:51"},"nativeSrc":"37407:31:51","nodeType":"YulFunctionCall","src":"37407:31:51"}],"functionName":{"name":"and","nativeSrc":"37386:3:51","nodeType":"YulIdentifier","src":"37386:3:51"},"nativeSrc":"37386:53:51","nodeType":"YulFunctionCall","src":"37386:53:51"}],"functionName":{"name":"mstore","nativeSrc":"37374:6:51","nodeType":"YulIdentifier","src":"37374:6:51"},"nativeSrc":"37374:66:51","nodeType":"YulFunctionCall","src":"37374:66:51"},"nativeSrc":"37374:66:51","nodeType":"YulExpressionStatement","src":"37374:66:51"},{"nativeSrc":"37449:19:51","nodeType":"YulAssignment","src":"37449:19:51","value":{"arguments":[{"name":"pos","nativeSrc":"37460:3:51","nodeType":"YulIdentifier","src":"37460:3:51"},{"kind":"number","nativeSrc":"37465:2:51","nodeType":"YulLiteral","src":"37465:2:51","type":"","value":"20"}],"functionName":{"name":"add","nativeSrc":"37456:3:51","nodeType":"YulIdentifier","src":"37456:3:51"},"nativeSrc":"37456:12:51","nodeType":"YulFunctionCall","src":"37456:12:51"},"variableNames":[{"name":"end","nativeSrc":"37449:3:51","nodeType":"YulIdentifier","src":"37449:3:51"}]}]},"name":"abi_encode_tuple_packed_t_address__to_t_address__nonPadded_inplace_fromStack_reversed","nativeSrc":"37245:229:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"37340:3:51","nodeType":"YulTypedName","src":"37340:3:51","type":""},{"name":"value0","nativeSrc":"37345:6:51","nodeType":"YulTypedName","src":"37345:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"37356:3:51","nodeType":"YulTypedName","src":"37356:3:51","type":""}],"src":"37245:229:51"},{"body":{"nativeSrc":"37618:150:51","nodeType":"YulBlock","src":"37618:150:51","statements":[{"nativeSrc":"37628:27:51","nodeType":"YulVariableDeclaration","src":"37628:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"37648:6:51","nodeType":"YulIdentifier","src":"37648:6:51"}],"functionName":{"name":"mload","nativeSrc":"37642:5:51","nodeType":"YulIdentifier","src":"37642:5:51"},"nativeSrc":"37642:13:51","nodeType":"YulFunctionCall","src":"37642:13:51"},"variables":[{"name":"length","nativeSrc":"37632:6:51","nodeType":"YulTypedName","src":"37632:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"37703:6:51","nodeType":"YulIdentifier","src":"37703:6:51"},{"kind":"number","nativeSrc":"37711:4:51","nodeType":"YulLiteral","src":"37711:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"37699:3:51","nodeType":"YulIdentifier","src":"37699:3:51"},"nativeSrc":"37699:17:51","nodeType":"YulFunctionCall","src":"37699:17:51"},{"name":"pos","nativeSrc":"37718:3:51","nodeType":"YulIdentifier","src":"37718:3:51"},{"name":"length","nativeSrc":"37723:6:51","nodeType":"YulIdentifier","src":"37723:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"37664:34:51","nodeType":"YulIdentifier","src":"37664:34:51"},"nativeSrc":"37664:66:51","nodeType":"YulFunctionCall","src":"37664:66:51"},"nativeSrc":"37664:66:51","nodeType":"YulExpressionStatement","src":"37664:66:51"},{"nativeSrc":"37739:23:51","nodeType":"YulAssignment","src":"37739:23:51","value":{"arguments":[{"name":"pos","nativeSrc":"37750:3:51","nodeType":"YulIdentifier","src":"37750:3:51"},{"name":"length","nativeSrc":"37755:6:51","nodeType":"YulIdentifier","src":"37755:6:51"}],"functionName":{"name":"add","nativeSrc":"37746:3:51","nodeType":"YulIdentifier","src":"37746:3:51"},"nativeSrc":"37746:16:51","nodeType":"YulFunctionCall","src":"37746:16:51"},"variableNames":[{"name":"end","nativeSrc":"37739:3:51","nodeType":"YulIdentifier","src":"37739:3:51"}]}]},"name":"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"37479:289:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"37594:3:51","nodeType":"YulTypedName","src":"37594:3:51","type":""},{"name":"value0","nativeSrc":"37599:6:51","nodeType":"YulTypedName","src":"37599:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"37610:3:51","nodeType":"YulTypedName","src":"37610:3:51","type":""}],"src":"37479:289:51"},{"body":{"nativeSrc":"37954:217:51","nodeType":"YulBlock","src":"37954:217:51","statements":[{"nativeSrc":"37964:27:51","nodeType":"YulAssignment","src":"37964:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"37976:9:51","nodeType":"YulIdentifier","src":"37976:9:51"},{"kind":"number","nativeSrc":"37987:3:51","nodeType":"YulLiteral","src":"37987:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"37972:3:51","nodeType":"YulIdentifier","src":"37972:3:51"},"nativeSrc":"37972:19:51","nodeType":"YulFunctionCall","src":"37972:19:51"},"variableNames":[{"name":"tail","nativeSrc":"37964:4:51","nodeType":"YulIdentifier","src":"37964:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38007:9:51","nodeType":"YulIdentifier","src":"38007:9:51"},{"name":"value0","nativeSrc":"38018:6:51","nodeType":"YulIdentifier","src":"38018:6:51"}],"functionName":{"name":"mstore","nativeSrc":"38000:6:51","nodeType":"YulIdentifier","src":"38000:6:51"},"nativeSrc":"38000:25:51","nodeType":"YulFunctionCall","src":"38000:25:51"},"nativeSrc":"38000:25:51","nodeType":"YulExpressionStatement","src":"38000:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38045:9:51","nodeType":"YulIdentifier","src":"38045:9:51"},{"kind":"number","nativeSrc":"38056:2:51","nodeType":"YulLiteral","src":"38056:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38041:3:51","nodeType":"YulIdentifier","src":"38041:3:51"},"nativeSrc":"38041:18:51","nodeType":"YulFunctionCall","src":"38041:18:51"},{"arguments":[{"name":"value1","nativeSrc":"38065:6:51","nodeType":"YulIdentifier","src":"38065:6:51"},{"kind":"number","nativeSrc":"38073:4:51","nodeType":"YulLiteral","src":"38073:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"38061:3:51","nodeType":"YulIdentifier","src":"38061:3:51"},"nativeSrc":"38061:17:51","nodeType":"YulFunctionCall","src":"38061:17:51"}],"functionName":{"name":"mstore","nativeSrc":"38034:6:51","nodeType":"YulIdentifier","src":"38034:6:51"},"nativeSrc":"38034:45:51","nodeType":"YulFunctionCall","src":"38034:45:51"},"nativeSrc":"38034:45:51","nodeType":"YulExpressionStatement","src":"38034:45:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38099:9:51","nodeType":"YulIdentifier","src":"38099:9:51"},{"kind":"number","nativeSrc":"38110:2:51","nodeType":"YulLiteral","src":"38110:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38095:3:51","nodeType":"YulIdentifier","src":"38095:3:51"},"nativeSrc":"38095:18:51","nodeType":"YulFunctionCall","src":"38095:18:51"},{"name":"value2","nativeSrc":"38115:6:51","nodeType":"YulIdentifier","src":"38115:6:51"}],"functionName":{"name":"mstore","nativeSrc":"38088:6:51","nodeType":"YulIdentifier","src":"38088:6:51"},"nativeSrc":"38088:34:51","nodeType":"YulFunctionCall","src":"38088:34:51"},"nativeSrc":"38088:34:51","nodeType":"YulExpressionStatement","src":"38088:34:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38142:9:51","nodeType":"YulIdentifier","src":"38142:9:51"},{"kind":"number","nativeSrc":"38153:2:51","nodeType":"YulLiteral","src":"38153:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"38138:3:51","nodeType":"YulIdentifier","src":"38138:3:51"},"nativeSrc":"38138:18:51","nodeType":"YulFunctionCall","src":"38138:18:51"},{"name":"value3","nativeSrc":"38158:6:51","nodeType":"YulIdentifier","src":"38158:6:51"}],"functionName":{"name":"mstore","nativeSrc":"38131:6:51","nodeType":"YulIdentifier","src":"38131:6:51"},"nativeSrc":"38131:34:51","nodeType":"YulFunctionCall","src":"38131:34:51"},"nativeSrc":"38131:34:51","nodeType":"YulExpressionStatement","src":"38131: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":"37773:398:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37899:9:51","nodeType":"YulTypedName","src":"37899:9:51","type":""},{"name":"value3","nativeSrc":"37910:6:51","nodeType":"YulTypedName","src":"37910:6:51","type":""},{"name":"value2","nativeSrc":"37918:6:51","nodeType":"YulTypedName","src":"37918:6:51","type":""},{"name":"value1","nativeSrc":"37926:6:51","nodeType":"YulTypedName","src":"37926:6:51","type":""},{"name":"value0","nativeSrc":"37934:6:51","nodeType":"YulTypedName","src":"37934:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37945:4:51","nodeType":"YulTypedName","src":"37945:4:51","type":""}],"src":"37773:398:51"},{"body":{"nativeSrc":"38350:179:51","nodeType":"YulBlock","src":"38350:179:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38367:9:51","nodeType":"YulIdentifier","src":"38367:9:51"},{"kind":"number","nativeSrc":"38378:2:51","nodeType":"YulLiteral","src":"38378:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"38360:6:51","nodeType":"YulIdentifier","src":"38360:6:51"},"nativeSrc":"38360:21:51","nodeType":"YulFunctionCall","src":"38360:21:51"},"nativeSrc":"38360:21:51","nodeType":"YulExpressionStatement","src":"38360:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38401:9:51","nodeType":"YulIdentifier","src":"38401:9:51"},{"kind":"number","nativeSrc":"38412:2:51","nodeType":"YulLiteral","src":"38412:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38397:3:51","nodeType":"YulIdentifier","src":"38397:3:51"},"nativeSrc":"38397:18:51","nodeType":"YulFunctionCall","src":"38397:18:51"},{"kind":"number","nativeSrc":"38417:2:51","nodeType":"YulLiteral","src":"38417:2:51","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"38390:6:51","nodeType":"YulIdentifier","src":"38390:6:51"},"nativeSrc":"38390:30:51","nodeType":"YulFunctionCall","src":"38390:30:51"},"nativeSrc":"38390:30:51","nodeType":"YulExpressionStatement","src":"38390:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38440:9:51","nodeType":"YulIdentifier","src":"38440:9:51"},{"kind":"number","nativeSrc":"38451:2:51","nodeType":"YulLiteral","src":"38451:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38436:3:51","nodeType":"YulIdentifier","src":"38436:3:51"},"nativeSrc":"38436:18:51","nodeType":"YulFunctionCall","src":"38436:18:51"},{"hexValue":"4265636833323a20696e76616c696420737472696e67206c656e677468","kind":"string","nativeSrc":"38456:31:51","nodeType":"YulLiteral","src":"38456:31:51","type":"","value":"Bech32: invalid string length"}],"functionName":{"name":"mstore","nativeSrc":"38429:6:51","nodeType":"YulIdentifier","src":"38429:6:51"},"nativeSrc":"38429:59:51","nodeType":"YulFunctionCall","src":"38429:59:51"},"nativeSrc":"38429:59:51","nodeType":"YulExpressionStatement","src":"38429:59:51"},{"nativeSrc":"38497:26:51","nodeType":"YulAssignment","src":"38497:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"38509:9:51","nodeType":"YulIdentifier","src":"38509:9:51"},{"kind":"number","nativeSrc":"38520:2:51","nodeType":"YulLiteral","src":"38520:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"38505:3:51","nodeType":"YulIdentifier","src":"38505:3:51"},"nativeSrc":"38505:18:51","nodeType":"YulFunctionCall","src":"38505:18:51"},"variableNames":[{"name":"tail","nativeSrc":"38497:4:51","nodeType":"YulIdentifier","src":"38497:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_fbafcdcf532b64f842ae9e16c3ebe22680908b0bd1d2499a181aa780163d1903__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"38176:353:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38327:9:51","nodeType":"YulTypedName","src":"38327:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38341:4:51","nodeType":"YulTypedName","src":"38341:4:51","type":""}],"src":"38176:353:51"},{"body":{"nativeSrc":"38708:168:51","nodeType":"YulBlock","src":"38708:168:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"38725:9:51","nodeType":"YulIdentifier","src":"38725:9:51"},{"kind":"number","nativeSrc":"38736:2:51","nodeType":"YulLiteral","src":"38736:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"38718:6:51","nodeType":"YulIdentifier","src":"38718:6:51"},"nativeSrc":"38718:21:51","nodeType":"YulFunctionCall","src":"38718:21:51"},"nativeSrc":"38718:21:51","nodeType":"YulExpressionStatement","src":"38718:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38759:9:51","nodeType":"YulIdentifier","src":"38759:9:51"},{"kind":"number","nativeSrc":"38770:2:51","nodeType":"YulLiteral","src":"38770:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"38755:3:51","nodeType":"YulIdentifier","src":"38755:3:51"},"nativeSrc":"38755:18:51","nodeType":"YulFunctionCall","src":"38755:18:51"},{"kind":"number","nativeSrc":"38775:2:51","nodeType":"YulLiteral","src":"38775:2:51","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"38748:6:51","nodeType":"YulIdentifier","src":"38748:6:51"},"nativeSrc":"38748:30:51","nodeType":"YulFunctionCall","src":"38748:30:51"},"nativeSrc":"38748:30:51","nodeType":"YulExpressionStatement","src":"38748:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"38798:9:51","nodeType":"YulIdentifier","src":"38798:9:51"},{"kind":"number","nativeSrc":"38809:2:51","nodeType":"YulLiteral","src":"38809:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"38794:3:51","nodeType":"YulIdentifier","src":"38794:3:51"},"nativeSrc":"38794:18:51","nodeType":"YulFunctionCall","src":"38794:18:51"},{"hexValue":"4265636833323a2077726f6e672063686172","kind":"string","nativeSrc":"38814:20:51","nodeType":"YulLiteral","src":"38814:20:51","type":"","value":"Bech32: wrong char"}],"functionName":{"name":"mstore","nativeSrc":"38787:6:51","nodeType":"YulIdentifier","src":"38787:6:51"},"nativeSrc":"38787:48:51","nodeType":"YulFunctionCall","src":"38787:48:51"},"nativeSrc":"38787:48:51","nodeType":"YulExpressionStatement","src":"38787:48:51"},{"nativeSrc":"38844:26:51","nodeType":"YulAssignment","src":"38844:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"38856:9:51","nodeType":"YulIdentifier","src":"38856:9:51"},{"kind":"number","nativeSrc":"38867:2:51","nodeType":"YulLiteral","src":"38867:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"38852:3:51","nodeType":"YulIdentifier","src":"38852:3:51"},"nativeSrc":"38852:18:51","nodeType":"YulFunctionCall","src":"38852:18:51"},"variableNames":[{"name":"tail","nativeSrc":"38844:4:51","nodeType":"YulIdentifier","src":"38844:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_53dc06d622ffc4876df233985214fd280a387287ffe9d0e519654cae6b62b983__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"38534:342:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"38685:9:51","nodeType":"YulTypedName","src":"38685:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"38699:4:51","nodeType":"YulTypedName","src":"38699:4:51","type":""}],"src":"38534:342:51"},{"body":{"nativeSrc":"39055:172:51","nodeType":"YulBlock","src":"39055:172:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39072:9:51","nodeType":"YulIdentifier","src":"39072:9:51"},{"kind":"number","nativeSrc":"39083:2:51","nodeType":"YulLiteral","src":"39083:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"39065:6:51","nodeType":"YulIdentifier","src":"39065:6:51"},"nativeSrc":"39065:21:51","nodeType":"YulFunctionCall","src":"39065:21:51"},"nativeSrc":"39065:21:51","nodeType":"YulExpressionStatement","src":"39065:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39106:9:51","nodeType":"YulIdentifier","src":"39106:9:51"},{"kind":"number","nativeSrc":"39117:2:51","nodeType":"YulLiteral","src":"39117:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39102:3:51","nodeType":"YulIdentifier","src":"39102:3:51"},"nativeSrc":"39102:18:51","nodeType":"YulFunctionCall","src":"39102:18:51"},{"kind":"number","nativeSrc":"39122:2:51","nodeType":"YulLiteral","src":"39122:2:51","type":"","value":"22"}],"functionName":{"name":"mstore","nativeSrc":"39095:6:51","nodeType":"YulIdentifier","src":"39095:6:51"},"nativeSrc":"39095:30:51","nodeType":"YulFunctionCall","src":"39095:30:51"},"nativeSrc":"39095:30:51","nodeType":"YulExpressionStatement","src":"39095:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39145:9:51","nodeType":"YulIdentifier","src":"39145:9:51"},{"kind":"number","nativeSrc":"39156:2:51","nodeType":"YulLiteral","src":"39156:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39141:3:51","nodeType":"YulIdentifier","src":"39141:3:51"},"nativeSrc":"39141:18:51","nodeType":"YulFunctionCall","src":"39141:18:51"},{"hexValue":"4265636833323a2077726f6e6720706f73206f662031","kind":"string","nativeSrc":"39161:24:51","nodeType":"YulLiteral","src":"39161:24:51","type":"","value":"Bech32: wrong pos of 1"}],"functionName":{"name":"mstore","nativeSrc":"39134:6:51","nodeType":"YulIdentifier","src":"39134:6:51"},"nativeSrc":"39134:52:51","nodeType":"YulFunctionCall","src":"39134:52:51"},"nativeSrc":"39134:52:51","nodeType":"YulExpressionStatement","src":"39134:52:51"},{"nativeSrc":"39195:26:51","nodeType":"YulAssignment","src":"39195:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"39207:9:51","nodeType":"YulIdentifier","src":"39207:9:51"},{"kind":"number","nativeSrc":"39218:2:51","nodeType":"YulLiteral","src":"39218:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39203:3:51","nodeType":"YulIdentifier","src":"39203:3:51"},"nativeSrc":"39203:18:51","nodeType":"YulFunctionCall","src":"39203:18:51"},"variableNames":[{"name":"tail","nativeSrc":"39195:4:51","nodeType":"YulIdentifier","src":"39195:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_0d3bbdc5952ddfc25bafa340466db68d17d1faf42dd154469a20b429a3742415__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"38881:346:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39032:9:51","nodeType":"YulTypedName","src":"39032:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39046:4:51","nodeType":"YulTypedName","src":"39046:4:51","type":""}],"src":"38881:346:51"},{"body":{"nativeSrc":"39406:178:51","nodeType":"YulBlock","src":"39406:178:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39423:9:51","nodeType":"YulIdentifier","src":"39423:9:51"},{"kind":"number","nativeSrc":"39434:2:51","nodeType":"YulLiteral","src":"39434:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"39416:6:51","nodeType":"YulIdentifier","src":"39416:6:51"},"nativeSrc":"39416:21:51","nodeType":"YulFunctionCall","src":"39416:21:51"},"nativeSrc":"39416:21:51","nodeType":"YulExpressionStatement","src":"39416:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39457:9:51","nodeType":"YulIdentifier","src":"39457:9:51"},{"kind":"number","nativeSrc":"39468:2:51","nodeType":"YulLiteral","src":"39468:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39453:3:51","nodeType":"YulIdentifier","src":"39453:3:51"},"nativeSrc":"39453:18:51","nodeType":"YulFunctionCall","src":"39453:18:51"},{"kind":"number","nativeSrc":"39473:2:51","nodeType":"YulLiteral","src":"39473:2:51","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"39446:6:51","nodeType":"YulIdentifier","src":"39446:6:51"},"nativeSrc":"39446:30:51","nodeType":"YulFunctionCall","src":"39446:30:51"},"nativeSrc":"39446:30:51","nodeType":"YulExpressionStatement","src":"39446:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39496:9:51","nodeType":"YulIdentifier","src":"39496:9:51"},{"kind":"number","nativeSrc":"39507:2:51","nodeType":"YulLiteral","src":"39507:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39492:3:51","nodeType":"YulIdentifier","src":"39492:3:51"},"nativeSrc":"39492:18:51","nodeType":"YulFunctionCall","src":"39492:18:51"},{"hexValue":"4265636833323a2062797465206e6f7420696e20616c706861626574","kind":"string","nativeSrc":"39512:30:51","nodeType":"YulLiteral","src":"39512:30:51","type":"","value":"Bech32: byte not in alphabet"}],"functionName":{"name":"mstore","nativeSrc":"39485:6:51","nodeType":"YulIdentifier","src":"39485:6:51"},"nativeSrc":"39485:58:51","nodeType":"YulFunctionCall","src":"39485:58:51"},"nativeSrc":"39485:58:51","nodeType":"YulExpressionStatement","src":"39485:58:51"},{"nativeSrc":"39552:26:51","nodeType":"YulAssignment","src":"39552:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"39564:9:51","nodeType":"YulIdentifier","src":"39564:9:51"},{"kind":"number","nativeSrc":"39575:2:51","nodeType":"YulLiteral","src":"39575:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39560:3:51","nodeType":"YulIdentifier","src":"39560:3:51"},"nativeSrc":"39560:18:51","nodeType":"YulFunctionCall","src":"39560:18:51"},"variableNames":[{"name":"tail","nativeSrc":"39552:4:51","nodeType":"YulIdentifier","src":"39552:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_6a2cf2966ea32b348a1a2f630ac8faca290d4a2ab07de89caf8dae5717c1d46d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"39232:352:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39383:9:51","nodeType":"YulTypedName","src":"39383:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39397:4:51","nodeType":"YulTypedName","src":"39397:4:51","type":""}],"src":"39232:352:51"},{"body":{"nativeSrc":"39763:172:51","nodeType":"YulBlock","src":"39763:172:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39780:9:51","nodeType":"YulIdentifier","src":"39780:9:51"},{"kind":"number","nativeSrc":"39791:2:51","nodeType":"YulLiteral","src":"39791:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"39773:6:51","nodeType":"YulIdentifier","src":"39773:6:51"},"nativeSrc":"39773:21:51","nodeType":"YulFunctionCall","src":"39773:21:51"},"nativeSrc":"39773:21:51","nodeType":"YulExpressionStatement","src":"39773:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39814:9:51","nodeType":"YulIdentifier","src":"39814:9:51"},{"kind":"number","nativeSrc":"39825:2:51","nodeType":"YulLiteral","src":"39825:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39810:3:51","nodeType":"YulIdentifier","src":"39810:3:51"},"nativeSrc":"39810:18:51","nodeType":"YulFunctionCall","src":"39810:18:51"},{"kind":"number","nativeSrc":"39830:2:51","nodeType":"YulLiteral","src":"39830:2:51","type":"","value":"22"}],"functionName":{"name":"mstore","nativeSrc":"39803:6:51","nodeType":"YulIdentifier","src":"39803:6:51"},"nativeSrc":"39803:30:51","nodeType":"YulFunctionCall","src":"39803:30:51"},"nativeSrc":"39803:30:51","nodeType":"YulExpressionStatement","src":"39803:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39853:9:51","nodeType":"YulIdentifier","src":"39853:9:51"},{"kind":"number","nativeSrc":"39864:2:51","nodeType":"YulLiteral","src":"39864:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39849:3:51","nodeType":"YulIdentifier","src":"39849:3:51"},"nativeSrc":"39849:18:51","nodeType":"YulFunctionCall","src":"39849:18:51"},{"hexValue":"4265636833323a2077726f6e6720636865636b73756d","kind":"string","nativeSrc":"39869:24:51","nodeType":"YulLiteral","src":"39869:24:51","type":"","value":"Bech32: wrong checksum"}],"functionName":{"name":"mstore","nativeSrc":"39842:6:51","nodeType":"YulIdentifier","src":"39842:6:51"},"nativeSrc":"39842:52:51","nodeType":"YulFunctionCall","src":"39842:52:51"},"nativeSrc":"39842:52:51","nodeType":"YulExpressionStatement","src":"39842:52:51"},{"nativeSrc":"39903:26:51","nodeType":"YulAssignment","src":"39903:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"39915:9:51","nodeType":"YulIdentifier","src":"39915:9:51"},{"kind":"number","nativeSrc":"39926:2:51","nodeType":"YulLiteral","src":"39926:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39911:3:51","nodeType":"YulIdentifier","src":"39911:3:51"},"nativeSrc":"39911:18:51","nodeType":"YulFunctionCall","src":"39911:18:51"},"variableNames":[{"name":"tail","nativeSrc":"39903:4:51","nodeType":"YulIdentifier","src":"39903:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_8925955b412698449f23fd1db0ca5278ae982350c0d6a43502b6059204e31edc__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"39589:346:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39740:9:51","nodeType":"YulTypedName","src":"39740:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39754:4:51","nodeType":"YulTypedName","src":"39754:4:51","type":""}],"src":"39589:346:51"},{"body":{"nativeSrc":"40114:170:51","nodeType":"YulBlock","src":"40114:170:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"40131:9:51","nodeType":"YulIdentifier","src":"40131:9:51"},{"kind":"number","nativeSrc":"40142:2:51","nodeType":"YulLiteral","src":"40142:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"40124:6:51","nodeType":"YulIdentifier","src":"40124:6:51"},"nativeSrc":"40124:21:51","nodeType":"YulFunctionCall","src":"40124:21:51"},"nativeSrc":"40124:21:51","nodeType":"YulExpressionStatement","src":"40124:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40165:9:51","nodeType":"YulIdentifier","src":"40165:9:51"},{"kind":"number","nativeSrc":"40176:2:51","nodeType":"YulLiteral","src":"40176:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40161:3:51","nodeType":"YulIdentifier","src":"40161:3:51"},"nativeSrc":"40161:18:51","nodeType":"YulFunctionCall","src":"40161:18:51"},{"kind":"number","nativeSrc":"40181:2:51","nodeType":"YulLiteral","src":"40181:2:51","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"40154:6:51","nodeType":"YulIdentifier","src":"40154:6:51"},"nativeSrc":"40154:30:51","nodeType":"YulFunctionCall","src":"40154:30:51"},"nativeSrc":"40154:30:51","nodeType":"YulExpressionStatement","src":"40154:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40204:9:51","nodeType":"YulIdentifier","src":"40204:9:51"},{"kind":"number","nativeSrc":"40215:2:51","nodeType":"YulLiteral","src":"40215:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40200:3:51","nodeType":"YulIdentifier","src":"40200:3:51"},"nativeSrc":"40200:18:51","nodeType":"YulFunctionCall","src":"40200:18:51"},{"hexValue":"4265636833323a20687270206d69736d61746368","kind":"string","nativeSrc":"40220:22:51","nodeType":"YulLiteral","src":"40220:22:51","type":"","value":"Bech32: hrp mismatch"}],"functionName":{"name":"mstore","nativeSrc":"40193:6:51","nodeType":"YulIdentifier","src":"40193:6:51"},"nativeSrc":"40193:50:51","nodeType":"YulFunctionCall","src":"40193:50:51"},"nativeSrc":"40193:50:51","nodeType":"YulExpressionStatement","src":"40193:50:51"},{"nativeSrc":"40252:26:51","nodeType":"YulAssignment","src":"40252:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"40264:9:51","nodeType":"YulIdentifier","src":"40264:9:51"},{"kind":"number","nativeSrc":"40275:2:51","nodeType":"YulLiteral","src":"40275:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"40260:3:51","nodeType":"YulIdentifier","src":"40260:3:51"},"nativeSrc":"40260:18:51","nodeType":"YulFunctionCall","src":"40260:18:51"},"variableNames":[{"name":"tail","nativeSrc":"40252:4:51","nodeType":"YulIdentifier","src":"40252:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_cc3b15adba6692e0236e3ef91314dd5f2f6b9fc7d497a8d9fca03d4d32ef0086__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"39940:344:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"40091:9:51","nodeType":"YulTypedName","src":"40091:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"40105:4:51","nodeType":"YulTypedName","src":"40105:4:51","type":""}],"src":"39940:344:51"},{"body":{"nativeSrc":"40463:177:51","nodeType":"YulBlock","src":"40463:177:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"40480:9:51","nodeType":"YulIdentifier","src":"40480:9:51"},{"kind":"number","nativeSrc":"40491:2:51","nodeType":"YulLiteral","src":"40491:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"40473:6:51","nodeType":"YulIdentifier","src":"40473:6:51"},"nativeSrc":"40473:21:51","nodeType":"YulFunctionCall","src":"40473:21:51"},"nativeSrc":"40473:21:51","nodeType":"YulExpressionStatement","src":"40473:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40514:9:51","nodeType":"YulIdentifier","src":"40514:9:51"},{"kind":"number","nativeSrc":"40525:2:51","nodeType":"YulLiteral","src":"40525:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40510:3:51","nodeType":"YulIdentifier","src":"40510:3:51"},"nativeSrc":"40510:18:51","nodeType":"YulFunctionCall","src":"40510:18:51"},{"kind":"number","nativeSrc":"40530:2:51","nodeType":"YulLiteral","src":"40530:2:51","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"40503:6:51","nodeType":"YulIdentifier","src":"40503:6:51"},"nativeSrc":"40503:30:51","nodeType":"YulFunctionCall","src":"40503:30:51"},"nativeSrc":"40503:30:51","nodeType":"YulExpressionStatement","src":"40503:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40553:9:51","nodeType":"YulIdentifier","src":"40553:9:51"},{"kind":"number","nativeSrc":"40564:2:51","nodeType":"YulLiteral","src":"40564:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40549:3:51","nodeType":"YulIdentifier","src":"40549:3:51"},"nativeSrc":"40549:18:51","nodeType":"YulFunctionCall","src":"40549:18:51"},{"hexValue":"4265636833323a20696e76616c69642064617461206c656e677468","kind":"string","nativeSrc":"40569:29:51","nodeType":"YulLiteral","src":"40569:29:51","type":"","value":"Bech32: invalid data length"}],"functionName":{"name":"mstore","nativeSrc":"40542:6:51","nodeType":"YulIdentifier","src":"40542:6:51"},"nativeSrc":"40542:57:51","nodeType":"YulFunctionCall","src":"40542:57:51"},"nativeSrc":"40542:57:51","nodeType":"YulExpressionStatement","src":"40542:57:51"},{"nativeSrc":"40608:26:51","nodeType":"YulAssignment","src":"40608:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"40620:9:51","nodeType":"YulIdentifier","src":"40620:9:51"},{"kind":"number","nativeSrc":"40631:2:51","nodeType":"YulLiteral","src":"40631:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"40616:3:51","nodeType":"YulIdentifier","src":"40616:3:51"},"nativeSrc":"40616:18:51","nodeType":"YulFunctionCall","src":"40616:18:51"},"variableNames":[{"name":"tail","nativeSrc":"40608:4:51","nodeType":"YulIdentifier","src":"40608:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_e61d0d29c666259da088b9a4a3c73f42db070a7c6e4ed8d249944652ec7c2cf8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"40289:351:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"40440:9:51","nodeType":"YulTypedName","src":"40440:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"40454:4:51","nodeType":"YulTypedName","src":"40454:4:51","type":""}],"src":"40289:351:51"},{"body":{"nativeSrc":"40691:142:51","nodeType":"YulBlock","src":"40691:142:51","statements":[{"nativeSrc":"40701:37:51","nodeType":"YulVariableDeclaration","src":"40701:37:51","value":{"arguments":[{"name":"value","nativeSrc":"40720:5:51","nodeType":"YulIdentifier","src":"40720:5:51"},{"kind":"number","nativeSrc":"40727:10:51","nodeType":"YulLiteral","src":"40727:10:51","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"40716:3:51","nodeType":"YulIdentifier","src":"40716:3:51"},"nativeSrc":"40716:22:51","nodeType":"YulFunctionCall","src":"40716:22:51"},"variables":[{"name":"value_1","nativeSrc":"40705:7:51","nodeType":"YulTypedName","src":"40705:7:51","type":""}]},{"body":{"nativeSrc":"40774:22:51","nodeType":"YulBlock","src":"40774:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"40776:16:51","nodeType":"YulIdentifier","src":"40776:16:51"},"nativeSrc":"40776:18:51","nodeType":"YulFunctionCall","src":"40776:18:51"},"nativeSrc":"40776:18:51","nodeType":"YulExpressionStatement","src":"40776:18:51"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"40753:7:51","nodeType":"YulIdentifier","src":"40753:7:51"},{"kind":"number","nativeSrc":"40762:10:51","nodeType":"YulLiteral","src":"40762:10:51","type":"","value":"0xffffffff"}],"functionName":{"name":"eq","nativeSrc":"40750:2:51","nodeType":"YulIdentifier","src":"40750:2:51"},"nativeSrc":"40750:23:51","nodeType":"YulFunctionCall","src":"40750:23:51"},"nativeSrc":"40747:49:51","nodeType":"YulIf","src":"40747:49:51"},{"nativeSrc":"40805:22:51","nodeType":"YulAssignment","src":"40805:22:51","value":{"arguments":[{"name":"value_1","nativeSrc":"40816:7:51","nodeType":"YulIdentifier","src":"40816:7:51"},{"kind":"number","nativeSrc":"40825:1:51","nodeType":"YulLiteral","src":"40825:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"40812:3:51","nodeType":"YulIdentifier","src":"40812:3:51"},"nativeSrc":"40812:15:51","nodeType":"YulFunctionCall","src":"40812:15:51"},"variableNames":[{"name":"ret","nativeSrc":"40805:3:51","nodeType":"YulIdentifier","src":"40805:3:51"}]}]},"name":"increment_t_uint32","nativeSrc":"40645:188:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"40673:5:51","nodeType":"YulTypedName","src":"40673:5:51","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"40683:3:51","nodeType":"YulTypedName","src":"40683:3:51","type":""}],"src":"40645:188:51"},{"body":{"nativeSrc":"40887:79:51","nodeType":"YulBlock","src":"40887:79:51","statements":[{"nativeSrc":"40897:17:51","nodeType":"YulAssignment","src":"40897:17:51","value":{"arguments":[{"name":"x","nativeSrc":"40909:1:51","nodeType":"YulIdentifier","src":"40909:1:51"},{"name":"y","nativeSrc":"40912:1:51","nodeType":"YulIdentifier","src":"40912:1:51"}],"functionName":{"name":"sub","nativeSrc":"40905:3:51","nodeType":"YulIdentifier","src":"40905:3:51"},"nativeSrc":"40905:9:51","nodeType":"YulFunctionCall","src":"40905:9:51"},"variableNames":[{"name":"diff","nativeSrc":"40897:4:51","nodeType":"YulIdentifier","src":"40897:4:51"}]},{"body":{"nativeSrc":"40938:22:51","nodeType":"YulBlock","src":"40938:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"40940:16:51","nodeType":"YulIdentifier","src":"40940:16:51"},"nativeSrc":"40940:18:51","nodeType":"YulFunctionCall","src":"40940:18:51"},"nativeSrc":"40940:18:51","nodeType":"YulExpressionStatement","src":"40940:18:51"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"40929:4:51","nodeType":"YulIdentifier","src":"40929:4:51"},{"name":"x","nativeSrc":"40935:1:51","nodeType":"YulIdentifier","src":"40935:1:51"}],"functionName":{"name":"gt","nativeSrc":"40926:2:51","nodeType":"YulIdentifier","src":"40926:2:51"},"nativeSrc":"40926:11:51","nodeType":"YulFunctionCall","src":"40926:11:51"},"nativeSrc":"40923:37:51","nodeType":"YulIf","src":"40923:37:51"}]},"name":"checked_sub_t_uint256","nativeSrc":"40838:128:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"40869:1:51","nodeType":"YulTypedName","src":"40869:1:51","type":""},{"name":"y","nativeSrc":"40872:1:51","nodeType":"YulTypedName","src":"40872:1:51","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"40878:4:51","nodeType":"YulTypedName","src":"40878:4:51","type":""}],"src":"40838:128:51"},{"body":{"nativeSrc":"41145:244:51","nodeType":"YulBlock","src":"41145:244:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41162:9:51","nodeType":"YulIdentifier","src":"41162:9:51"},{"kind":"number","nativeSrc":"41173:2:51","nodeType":"YulLiteral","src":"41173:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"41155:6:51","nodeType":"YulIdentifier","src":"41155:6:51"},"nativeSrc":"41155:21:51","nodeType":"YulFunctionCall","src":"41155:21:51"},"nativeSrc":"41155:21:51","nodeType":"YulExpressionStatement","src":"41155:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41196:9:51","nodeType":"YulIdentifier","src":"41196:9:51"},{"kind":"number","nativeSrc":"41207:2:51","nodeType":"YulLiteral","src":"41207:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41192:3:51","nodeType":"YulIdentifier","src":"41192:3:51"},"nativeSrc":"41192:18:51","nodeType":"YulFunctionCall","src":"41192:18:51"},{"kind":"number","nativeSrc":"41212:2:51","nodeType":"YulLiteral","src":"41212:2:51","type":"","value":"54"}],"functionName":{"name":"mstore","nativeSrc":"41185:6:51","nodeType":"YulIdentifier","src":"41185:6:51"},"nativeSrc":"41185:30:51","nodeType":"YulFunctionCall","src":"41185:30:51"},"nativeSrc":"41185:30:51","nodeType":"YulExpressionStatement","src":"41185:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41235:9:51","nodeType":"YulIdentifier","src":"41235:9:51"},{"kind":"number","nativeSrc":"41246:2:51","nodeType":"YulLiteral","src":"41246:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"41231:3:51","nodeType":"YulIdentifier","src":"41231:3:51"},"nativeSrc":"41231:18:51","nodeType":"YulFunctionCall","src":"41231:18:51"},{"hexValue":"4265636833323a2076616c7565206d757374206265206e6f6e2d6e6567617469","kind":"string","nativeSrc":"41251:34:51","nodeType":"YulLiteral","src":"41251:34:51","type":"","value":"Bech32: value must be non-negati"}],"functionName":{"name":"mstore","nativeSrc":"41224:6:51","nodeType":"YulIdentifier","src":"41224:6:51"},"nativeSrc":"41224:62:51","nodeType":"YulFunctionCall","src":"41224:62:51"},"nativeSrc":"41224:62:51","nodeType":"YulExpressionStatement","src":"41224:62:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41306:9:51","nodeType":"YulIdentifier","src":"41306:9:51"},{"kind":"number","nativeSrc":"41317:2:51","nodeType":"YulLiteral","src":"41317:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41302:3:51","nodeType":"YulIdentifier","src":"41302:3:51"},"nativeSrc":"41302:18:51","nodeType":"YulFunctionCall","src":"41302:18:51"},{"hexValue":"766520616e642066697420696e2066726f6d62697473","kind":"string","nativeSrc":"41322:24:51","nodeType":"YulLiteral","src":"41322:24:51","type":"","value":"ve and fit in frombits"}],"functionName":{"name":"mstore","nativeSrc":"41295:6:51","nodeType":"YulIdentifier","src":"41295:6:51"},"nativeSrc":"41295:52:51","nodeType":"YulFunctionCall","src":"41295:52:51"},"nativeSrc":"41295:52:51","nodeType":"YulExpressionStatement","src":"41295:52:51"},{"nativeSrc":"41356:27:51","nodeType":"YulAssignment","src":"41356:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"41368:9:51","nodeType":"YulIdentifier","src":"41368:9:51"},{"kind":"number","nativeSrc":"41379:3:51","nodeType":"YulLiteral","src":"41379:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"41364:3:51","nodeType":"YulIdentifier","src":"41364:3:51"},"nativeSrc":"41364:19:51","nodeType":"YulFunctionCall","src":"41364:19:51"},"variableNames":[{"name":"tail","nativeSrc":"41356:4:51","nodeType":"YulIdentifier","src":"41356:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_c3d844aee3a847f0e164a11470dfaf03e0661e60bf8b0718b82a475dc4773582__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"40971:418:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41122:9:51","nodeType":"YulTypedName","src":"41122:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41136:4:51","nodeType":"YulTypedName","src":"41136:4:51","type":""}],"src":"40971:418:51"},{"body":{"nativeSrc":"41557:235:51","nodeType":"YulBlock","src":"41557:235:51","statements":[{"nativeSrc":"41567:27:51","nodeType":"YulVariableDeclaration","src":"41567:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"41587:6:51","nodeType":"YulIdentifier","src":"41587:6:51"}],"functionName":{"name":"mload","nativeSrc":"41581:5:51","nodeType":"YulIdentifier","src":"41581:5:51"},"nativeSrc":"41581:13:51","nodeType":"YulFunctionCall","src":"41581:13:51"},"variables":[{"name":"length","nativeSrc":"41571:6:51","nodeType":"YulTypedName","src":"41571:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"41642:6:51","nodeType":"YulIdentifier","src":"41642:6:51"},{"kind":"number","nativeSrc":"41650:4:51","nodeType":"YulLiteral","src":"41650:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"41638:3:51","nodeType":"YulIdentifier","src":"41638:3:51"},"nativeSrc":"41638:17:51","nodeType":"YulFunctionCall","src":"41638:17:51"},{"name":"pos","nativeSrc":"41657:3:51","nodeType":"YulIdentifier","src":"41657:3:51"},{"name":"length","nativeSrc":"41662:6:51","nodeType":"YulIdentifier","src":"41662:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"41603:34:51","nodeType":"YulIdentifier","src":"41603:34:51"},"nativeSrc":"41603:66:51","nodeType":"YulFunctionCall","src":"41603:66:51"},"nativeSrc":"41603:66:51","nodeType":"YulExpressionStatement","src":"41603:66:51"},{"nativeSrc":"41678:29:51","nodeType":"YulVariableDeclaration","src":"41678:29:51","value":{"arguments":[{"name":"pos","nativeSrc":"41695:3:51","nodeType":"YulIdentifier","src":"41695:3:51"},{"name":"length","nativeSrc":"41700:6:51","nodeType":"YulIdentifier","src":"41700:6:51"}],"functionName":{"name":"add","nativeSrc":"41691:3:51","nodeType":"YulIdentifier","src":"41691:3:51"},"nativeSrc":"41691:16:51","nodeType":"YulFunctionCall","src":"41691:16:51"},"variables":[{"name":"end_1","nativeSrc":"41682:5:51","nodeType":"YulTypedName","src":"41682:5:51","type":""}]},{"expression":{"arguments":[{"name":"end_1","nativeSrc":"41723:5:51","nodeType":"YulIdentifier","src":"41723:5:51"},{"arguments":[{"name":"value1","nativeSrc":"41734:6:51","nodeType":"YulIdentifier","src":"41734:6:51"},{"arguments":[{"kind":"number","nativeSrc":"41746:3:51","nodeType":"YulLiteral","src":"41746:3:51","type":"","value":"248"},{"kind":"number","nativeSrc":"41751:3:51","nodeType":"YulLiteral","src":"41751:3:51","type":"","value":"255"}],"functionName":{"name":"shl","nativeSrc":"41742:3:51","nodeType":"YulIdentifier","src":"41742:3:51"},"nativeSrc":"41742:13:51","nodeType":"YulFunctionCall","src":"41742:13:51"}],"functionName":{"name":"and","nativeSrc":"41730:3:51","nodeType":"YulIdentifier","src":"41730:3:51"},"nativeSrc":"41730:26:51","nodeType":"YulFunctionCall","src":"41730:26:51"}],"functionName":{"name":"mstore","nativeSrc":"41716:6:51","nodeType":"YulIdentifier","src":"41716:6:51"},"nativeSrc":"41716:41:51","nodeType":"YulFunctionCall","src":"41716:41:51"},"nativeSrc":"41716:41:51","nodeType":"YulExpressionStatement","src":"41716:41:51"},{"nativeSrc":"41766:20:51","nodeType":"YulAssignment","src":"41766:20:51","value":{"arguments":[{"name":"end_1","nativeSrc":"41777:5:51","nodeType":"YulIdentifier","src":"41777:5:51"},{"kind":"number","nativeSrc":"41784:1:51","nodeType":"YulLiteral","src":"41784:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"41773:3:51","nodeType":"YulIdentifier","src":"41773:3:51"},"nativeSrc":"41773:13:51","nodeType":"YulFunctionCall","src":"41773:13:51"},"variableNames":[{"name":"end","nativeSrc":"41766:3:51","nodeType":"YulIdentifier","src":"41766: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":"41394:398:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"41525:3:51","nodeType":"YulTypedName","src":"41525:3:51","type":""},{"name":"value1","nativeSrc":"41530:6:51","nodeType":"YulTypedName","src":"41530:6:51","type":""},{"name":"value0","nativeSrc":"41538:6:51","nodeType":"YulTypedName","src":"41538:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"41549:3:51","nodeType":"YulTypedName","src":"41549:3:51","type":""}],"src":"41394:398:51"},{"body":{"nativeSrc":"41971:227:51","nodeType":"YulBlock","src":"41971:227:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41988:9:51","nodeType":"YulIdentifier","src":"41988:9:51"},{"kind":"number","nativeSrc":"41999:2:51","nodeType":"YulLiteral","src":"41999:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"41981:6:51","nodeType":"YulIdentifier","src":"41981:6:51"},"nativeSrc":"41981:21:51","nodeType":"YulFunctionCall","src":"41981:21:51"},"nativeSrc":"41981:21:51","nodeType":"YulExpressionStatement","src":"41981:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42022:9:51","nodeType":"YulIdentifier","src":"42022:9:51"},{"kind":"number","nativeSrc":"42033:2:51","nodeType":"YulLiteral","src":"42033:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"42018:3:51","nodeType":"YulIdentifier","src":"42018:3:51"},"nativeSrc":"42018:18:51","nodeType":"YulFunctionCall","src":"42018:18:51"},{"kind":"number","nativeSrc":"42038:2:51","nodeType":"YulLiteral","src":"42038:2:51","type":"","value":"37"}],"functionName":{"name":"mstore","nativeSrc":"42011:6:51","nodeType":"YulIdentifier","src":"42011:6:51"},"nativeSrc":"42011:30:51","nodeType":"YulFunctionCall","src":"42011:30:51"},"nativeSrc":"42011:30:51","nodeType":"YulExpressionStatement","src":"42011:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42061:9:51","nodeType":"YulIdentifier","src":"42061:9:51"},{"kind":"number","nativeSrc":"42072:2:51","nodeType":"YulLiteral","src":"42072:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"42057:3:51","nodeType":"YulIdentifier","src":"42057:3:51"},"nativeSrc":"42057:18:51","nodeType":"YulFunctionCall","src":"42057:18:51"},{"hexValue":"4265636833323a20696e76616c69642070616464696e67206f722076616c7565","kind":"string","nativeSrc":"42077:34:51","nodeType":"YulLiteral","src":"42077:34:51","type":"","value":"Bech32: invalid padding or value"}],"functionName":{"name":"mstore","nativeSrc":"42050:6:51","nodeType":"YulIdentifier","src":"42050:6:51"},"nativeSrc":"42050:62:51","nodeType":"YulFunctionCall","src":"42050:62:51"},"nativeSrc":"42050:62:51","nodeType":"YulExpressionStatement","src":"42050:62:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"42132:9:51","nodeType":"YulIdentifier","src":"42132:9:51"},{"kind":"number","nativeSrc":"42143:2:51","nodeType":"YulLiteral","src":"42143:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"42128:3:51","nodeType":"YulIdentifier","src":"42128:3:51"},"nativeSrc":"42128:18:51","nodeType":"YulFunctionCall","src":"42128:18:51"},{"hexValue":"2073697a65","kind":"string","nativeSrc":"42148:7:51","nodeType":"YulLiteral","src":"42148:7:51","type":"","value":" size"}],"functionName":{"name":"mstore","nativeSrc":"42121:6:51","nodeType":"YulIdentifier","src":"42121:6:51"},"nativeSrc":"42121:35:51","nodeType":"YulFunctionCall","src":"42121:35:51"},"nativeSrc":"42121:35:51","nodeType":"YulExpressionStatement","src":"42121:35:51"},{"nativeSrc":"42165:27:51","nodeType":"YulAssignment","src":"42165:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"42177:9:51","nodeType":"YulIdentifier","src":"42177:9:51"},{"kind":"number","nativeSrc":"42188:3:51","nodeType":"YulLiteral","src":"42188:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"42173:3:51","nodeType":"YulIdentifier","src":"42173:3:51"},"nativeSrc":"42173:19:51","nodeType":"YulFunctionCall","src":"42173:19:51"},"variableNames":[{"name":"tail","nativeSrc":"42165:4:51","nodeType":"YulIdentifier","src":"42165:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_e94f6be74a97f1cb3bd761cbce886a47861edc099a5ca2546d140eebfb9c3780__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"41797:401:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41948:9:51","nodeType":"YulTypedName","src":"41948:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41962:4:51","nodeType":"YulTypedName","src":"41962:4:51","type":""}],"src":"41797:401:51"},{"body":{"nativeSrc":"42259:65:51","nodeType":"YulBlock","src":"42259:65:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"42276:1:51","nodeType":"YulLiteral","src":"42276:1:51","type":"","value":"0"},{"name":"ptr","nativeSrc":"42279:3:51","nodeType":"YulIdentifier","src":"42279:3:51"}],"functionName":{"name":"mstore","nativeSrc":"42269:6:51","nodeType":"YulIdentifier","src":"42269:6:51"},"nativeSrc":"42269:14:51","nodeType":"YulFunctionCall","src":"42269:14:51"},"nativeSrc":"42269:14:51","nodeType":"YulExpressionStatement","src":"42269:14:51"},{"nativeSrc":"42292:26:51","nodeType":"YulAssignment","src":"42292:26:51","value":{"arguments":[{"kind":"number","nativeSrc":"42310:1:51","nodeType":"YulLiteral","src":"42310:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"42313:4:51","nodeType":"YulLiteral","src":"42313:4:51","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"42300:9:51","nodeType":"YulIdentifier","src":"42300:9:51"},"nativeSrc":"42300:18:51","nodeType":"YulFunctionCall","src":"42300:18:51"},"variableNames":[{"name":"data","nativeSrc":"42292:4:51","nodeType":"YulIdentifier","src":"42292:4:51"}]}]},"name":"array_dataslot_string_storage","nativeSrc":"42203:121:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"ptr","nativeSrc":"42242:3:51","nodeType":"YulTypedName","src":"42242:3:51","type":""}],"returnVariables":[{"name":"data","nativeSrc":"42250:4:51","nodeType":"YulTypedName","src":"42250:4:51","type":""}],"src":"42203:121:51"},{"body":{"nativeSrc":"42410:437:51","nodeType":"YulBlock","src":"42410:437:51","statements":[{"body":{"nativeSrc":"42443:398:51","nodeType":"YulBlock","src":"42443:398:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"42464:1:51","nodeType":"YulLiteral","src":"42464:1:51","type":"","value":"0"},{"name":"array","nativeSrc":"42467:5:51","nodeType":"YulIdentifier","src":"42467:5:51"}],"functionName":{"name":"mstore","nativeSrc":"42457:6:51","nodeType":"YulIdentifier","src":"42457:6:51"},"nativeSrc":"42457:16:51","nodeType":"YulFunctionCall","src":"42457:16:51"},"nativeSrc":"42457:16:51","nodeType":"YulExpressionStatement","src":"42457:16:51"},{"nativeSrc":"42486:30:51","nodeType":"YulVariableDeclaration","src":"42486:30:51","value":{"arguments":[{"kind":"number","nativeSrc":"42508:1:51","nodeType":"YulLiteral","src":"42508:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"42511:4:51","nodeType":"YulLiteral","src":"42511:4:51","type":"","value":"0x20"}],"functionName":{"name":"keccak256","nativeSrc":"42498:9:51","nodeType":"YulIdentifier","src":"42498:9:51"},"nativeSrc":"42498:18:51","nodeType":"YulFunctionCall","src":"42498:18:51"},"variables":[{"name":"data","nativeSrc":"42490:4:51","nodeType":"YulTypedName","src":"42490:4:51","type":""}]},{"nativeSrc":"42529:57:51","nodeType":"YulVariableDeclaration","src":"42529:57:51","value":{"arguments":[{"name":"data","nativeSrc":"42552:4:51","nodeType":"YulIdentifier","src":"42552:4:51"},{"arguments":[{"kind":"number","nativeSrc":"42562:1:51","nodeType":"YulLiteral","src":"42562:1:51","type":"","value":"5"},{"arguments":[{"name":"startIndex","nativeSrc":"42569:10:51","nodeType":"YulIdentifier","src":"42569:10:51"},{"kind":"number","nativeSrc":"42581:2:51","nodeType":"YulLiteral","src":"42581:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"42565:3:51","nodeType":"YulIdentifier","src":"42565:3:51"},"nativeSrc":"42565:19:51","nodeType":"YulFunctionCall","src":"42565:19:51"}],"functionName":{"name":"shr","nativeSrc":"42558:3:51","nodeType":"YulIdentifier","src":"42558:3:51"},"nativeSrc":"42558:27:51","nodeType":"YulFunctionCall","src":"42558:27:51"}],"functionName":{"name":"add","nativeSrc":"42548:3:51","nodeType":"YulIdentifier","src":"42548:3:51"},"nativeSrc":"42548:38:51","nodeType":"YulFunctionCall","src":"42548:38:51"},"variables":[{"name":"deleteStart","nativeSrc":"42533:11:51","nodeType":"YulTypedName","src":"42533:11:51","type":""}]},{"body":{"nativeSrc":"42623:23:51","nodeType":"YulBlock","src":"42623:23:51","statements":[{"nativeSrc":"42625:19:51","nodeType":"YulAssignment","src":"42625:19:51","value":{"name":"data","nativeSrc":"42640:4:51","nodeType":"YulIdentifier","src":"42640:4:51"},"variableNames":[{"name":"deleteStart","nativeSrc":"42625:11:51","nodeType":"YulIdentifier","src":"42625:11:51"}]}]},"condition":{"arguments":[{"name":"startIndex","nativeSrc":"42605:10:51","nodeType":"YulIdentifier","src":"42605:10:51"},{"kind":"number","nativeSrc":"42617:4:51","nodeType":"YulLiteral","src":"42617:4:51","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"42602:2:51","nodeType":"YulIdentifier","src":"42602:2:51"},"nativeSrc":"42602:20:51","nodeType":"YulFunctionCall","src":"42602:20:51"},"nativeSrc":"42599:47:51","nodeType":"YulIf","src":"42599:47:51"},{"nativeSrc":"42659:41:51","nodeType":"YulVariableDeclaration","src":"42659:41:51","value":{"arguments":[{"name":"data","nativeSrc":"42673:4:51","nodeType":"YulIdentifier","src":"42673:4:51"},{"arguments":[{"kind":"number","nativeSrc":"42683:1:51","nodeType":"YulLiteral","src":"42683:1:51","type":"","value":"5"},{"arguments":[{"name":"len","nativeSrc":"42690:3:51","nodeType":"YulIdentifier","src":"42690:3:51"},{"kind":"number","nativeSrc":"42695:2:51","nodeType":"YulLiteral","src":"42695:2:51","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"42686:3:51","nodeType":"YulIdentifier","src":"42686:3:51"},"nativeSrc":"42686:12:51","nodeType":"YulFunctionCall","src":"42686:12:51"}],"functionName":{"name":"shr","nativeSrc":"42679:3:51","nodeType":"YulIdentifier","src":"42679:3:51"},"nativeSrc":"42679:20:51","nodeType":"YulFunctionCall","src":"42679:20:51"}],"functionName":{"name":"add","nativeSrc":"42669:3:51","nodeType":"YulIdentifier","src":"42669:3:51"},"nativeSrc":"42669:31:51","nodeType":"YulFunctionCall","src":"42669:31:51"},"variables":[{"name":"_1","nativeSrc":"42663:2:51","nodeType":"YulTypedName","src":"42663:2:51","type":""}]},{"nativeSrc":"42713:24:51","nodeType":"YulVariableDeclaration","src":"42713:24:51","value":{"name":"deleteStart","nativeSrc":"42726:11:51","nodeType":"YulIdentifier","src":"42726:11:51"},"variables":[{"name":"start","nativeSrc":"42717:5:51","nodeType":"YulTypedName","src":"42717:5:51","type":""}]},{"body":{"nativeSrc":"42811:20:51","nodeType":"YulBlock","src":"42811:20:51","statements":[{"expression":{"arguments":[{"name":"start","nativeSrc":"42820:5:51","nodeType":"YulIdentifier","src":"42820:5:51"},{"kind":"number","nativeSrc":"42827:1:51","nodeType":"YulLiteral","src":"42827:1:51","type":"","value":"0"}],"functionName":{"name":"sstore","nativeSrc":"42813:6:51","nodeType":"YulIdentifier","src":"42813:6:51"},"nativeSrc":"42813:16:51","nodeType":"YulFunctionCall","src":"42813:16:51"},"nativeSrc":"42813:16:51","nodeType":"YulExpressionStatement","src":"42813:16:51"}]},"condition":{"arguments":[{"name":"start","nativeSrc":"42761:5:51","nodeType":"YulIdentifier","src":"42761:5:51"},{"name":"_1","nativeSrc":"42768:2:51","nodeType":"YulIdentifier","src":"42768:2:51"}],"functionName":{"name":"lt","nativeSrc":"42758:2:51","nodeType":"YulIdentifier","src":"42758:2:51"},"nativeSrc":"42758:13:51","nodeType":"YulFunctionCall","src":"42758:13:51"},"nativeSrc":"42750:81:51","nodeType":"YulForLoop","post":{"nativeSrc":"42772:26:51","nodeType":"YulBlock","src":"42772:26:51","statements":[{"nativeSrc":"42774:22:51","nodeType":"YulAssignment","src":"42774:22:51","value":{"arguments":[{"name":"start","nativeSrc":"42787:5:51","nodeType":"YulIdentifier","src":"42787:5:51"},{"kind":"number","nativeSrc":"42794:1:51","nodeType":"YulLiteral","src":"42794:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"42783:3:51","nodeType":"YulIdentifier","src":"42783:3:51"},"nativeSrc":"42783:13:51","nodeType":"YulFunctionCall","src":"42783:13:51"},"variableNames":[{"name":"start","nativeSrc":"42774:5:51","nodeType":"YulIdentifier","src":"42774:5:51"}]}]},"pre":{"nativeSrc":"42754:3:51","nodeType":"YulBlock","src":"42754:3:51","statements":[]},"src":"42750:81:51"}]},"condition":{"arguments":[{"name":"len","nativeSrc":"42426:3:51","nodeType":"YulIdentifier","src":"42426:3:51"},{"kind":"number","nativeSrc":"42431:2:51","nodeType":"YulLiteral","src":"42431:2:51","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"42423:2:51","nodeType":"YulIdentifier","src":"42423:2:51"},"nativeSrc":"42423:11:51","nodeType":"YulFunctionCall","src":"42423:11:51"},"nativeSrc":"42420:421:51","nodeType":"YulIf","src":"42420:421:51"}]},"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"42329:518:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"array","nativeSrc":"42382:5:51","nodeType":"YulTypedName","src":"42382:5:51","type":""},{"name":"len","nativeSrc":"42389:3:51","nodeType":"YulTypedName","src":"42389:3:51","type":""},{"name":"startIndex","nativeSrc":"42394:10:51","nodeType":"YulTypedName","src":"42394:10:51","type":""}],"src":"42329:518:51"},{"body":{"nativeSrc":"42937:81:51","nodeType":"YulBlock","src":"42937:81:51","statements":[{"nativeSrc":"42947:65:51","nodeType":"YulAssignment","src":"42947:65:51","value":{"arguments":[{"arguments":[{"name":"data","nativeSrc":"42962:4:51","nodeType":"YulIdentifier","src":"42962:4:51"},{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"42980:1:51","nodeType":"YulLiteral","src":"42980:1:51","type":"","value":"3"},{"name":"len","nativeSrc":"42983:3:51","nodeType":"YulIdentifier","src":"42983:3:51"}],"functionName":{"name":"shl","nativeSrc":"42976:3:51","nodeType":"YulIdentifier","src":"42976:3:51"},"nativeSrc":"42976:11:51","nodeType":"YulFunctionCall","src":"42976:11:51"},{"arguments":[{"kind":"number","nativeSrc":"42993:1:51","nodeType":"YulLiteral","src":"42993:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"42989:3:51","nodeType":"YulIdentifier","src":"42989:3:51"},"nativeSrc":"42989:6:51","nodeType":"YulFunctionCall","src":"42989:6:51"}],"functionName":{"name":"shr","nativeSrc":"42972:3:51","nodeType":"YulIdentifier","src":"42972:3:51"},"nativeSrc":"42972:24:51","nodeType":"YulFunctionCall","src":"42972:24:51"}],"functionName":{"name":"not","nativeSrc":"42968:3:51","nodeType":"YulIdentifier","src":"42968:3:51"},"nativeSrc":"42968:29:51","nodeType":"YulFunctionCall","src":"42968:29:51"}],"functionName":{"name":"and","nativeSrc":"42958:3:51","nodeType":"YulIdentifier","src":"42958:3:51"},"nativeSrc":"42958:40:51","nodeType":"YulFunctionCall","src":"42958:40:51"},{"arguments":[{"kind":"number","nativeSrc":"43004:1:51","nodeType":"YulLiteral","src":"43004:1:51","type":"","value":"1"},{"name":"len","nativeSrc":"43007:3:51","nodeType":"YulIdentifier","src":"43007:3:51"}],"functionName":{"name":"shl","nativeSrc":"43000:3:51","nodeType":"YulIdentifier","src":"43000:3:51"},"nativeSrc":"43000:11:51","nodeType":"YulFunctionCall","src":"43000:11:51"}],"functionName":{"name":"or","nativeSrc":"42955:2:51","nodeType":"YulIdentifier","src":"42955:2:51"},"nativeSrc":"42955:57:51","nodeType":"YulFunctionCall","src":"42955:57:51"},"variableNames":[{"name":"used","nativeSrc":"42947:4:51","nodeType":"YulIdentifier","src":"42947:4:51"}]}]},"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"42852:166:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"42914:4:51","nodeType":"YulTypedName","src":"42914:4:51","type":""},{"name":"len","nativeSrc":"42920:3:51","nodeType":"YulTypedName","src":"42920:3:51","type":""}],"returnVariables":[{"name":"used","nativeSrc":"42928:4:51","nodeType":"YulTypedName","src":"42928:4:51","type":""}],"src":"42852:166:51"},{"body":{"nativeSrc":"43119:1203:51","nodeType":"YulBlock","src":"43119:1203:51","statements":[{"nativeSrc":"43129:24:51","nodeType":"YulVariableDeclaration","src":"43129:24:51","value":{"arguments":[{"name":"src","nativeSrc":"43149:3:51","nodeType":"YulIdentifier","src":"43149:3:51"}],"functionName":{"name":"mload","nativeSrc":"43143:5:51","nodeType":"YulIdentifier","src":"43143:5:51"},"nativeSrc":"43143:10:51","nodeType":"YulFunctionCall","src":"43143:10:51"},"variables":[{"name":"newLen","nativeSrc":"43133:6:51","nodeType":"YulTypedName","src":"43133:6:51","type":""}]},{"body":{"nativeSrc":"43196:22:51","nodeType":"YulBlock","src":"43196:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"43198:16:51","nodeType":"YulIdentifier","src":"43198:16:51"},"nativeSrc":"43198:18:51","nodeType":"YulFunctionCall","src":"43198:18:51"},"nativeSrc":"43198:18:51","nodeType":"YulExpressionStatement","src":"43198:18:51"}]},"condition":{"arguments":[{"name":"newLen","nativeSrc":"43168:6:51","nodeType":"YulIdentifier","src":"43168:6:51"},{"kind":"number","nativeSrc":"43176:18:51","nodeType":"YulLiteral","src":"43176:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"43165:2:51","nodeType":"YulIdentifier","src":"43165:2:51"},"nativeSrc":"43165:30:51","nodeType":"YulFunctionCall","src":"43165:30:51"},"nativeSrc":"43162:56:51","nodeType":"YulIf","src":"43162:56:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"43271:4:51","nodeType":"YulIdentifier","src":"43271:4:51"},{"arguments":[{"arguments":[{"name":"slot","nativeSrc":"43309:4:51","nodeType":"YulIdentifier","src":"43309:4:51"}],"functionName":{"name":"sload","nativeSrc":"43303:5:51","nodeType":"YulIdentifier","src":"43303:5:51"},"nativeSrc":"43303:11:51","nodeType":"YulFunctionCall","src":"43303:11:51"}],"functionName":{"name":"extract_byte_array_length","nativeSrc":"43277:25:51","nodeType":"YulIdentifier","src":"43277:25:51"},"nativeSrc":"43277:38:51","nodeType":"YulFunctionCall","src":"43277:38:51"},{"name":"newLen","nativeSrc":"43317:6:51","nodeType":"YulIdentifier","src":"43317:6:51"}],"functionName":{"name":"clean_up_bytearray_end_slots_string_storage","nativeSrc":"43227:43:51","nodeType":"YulIdentifier","src":"43227:43:51"},"nativeSrc":"43227:97:51","nodeType":"YulFunctionCall","src":"43227:97:51"},"nativeSrc":"43227:97:51","nodeType":"YulExpressionStatement","src":"43227:97:51"},{"nativeSrc":"43333:18:51","nodeType":"YulVariableDeclaration","src":"43333:18:51","value":{"kind":"number","nativeSrc":"43350:1:51","nodeType":"YulLiteral","src":"43350:1:51","type":"","value":"0"},"variables":[{"name":"srcOffset","nativeSrc":"43337:9:51","nodeType":"YulTypedName","src":"43337:9:51","type":""}]},{"nativeSrc":"43360:17:51","nodeType":"YulAssignment","src":"43360:17:51","value":{"kind":"number","nativeSrc":"43373:4:51","nodeType":"YulLiteral","src":"43373:4:51","type":"","value":"0x20"},"variableNames":[{"name":"srcOffset","nativeSrc":"43360:9:51","nodeType":"YulIdentifier","src":"43360:9:51"}]},{"cases":[{"body":{"nativeSrc":"43423:642:51","nodeType":"YulBlock","src":"43423:642:51","statements":[{"nativeSrc":"43437:35:51","nodeType":"YulVariableDeclaration","src":"43437:35:51","value":{"arguments":[{"name":"newLen","nativeSrc":"43456:6:51","nodeType":"YulIdentifier","src":"43456:6:51"},{"arguments":[{"kind":"number","nativeSrc":"43468:2:51","nodeType":"YulLiteral","src":"43468:2:51","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"43464:3:51","nodeType":"YulIdentifier","src":"43464:3:51"},"nativeSrc":"43464:7:51","nodeType":"YulFunctionCall","src":"43464:7:51"}],"functionName":{"name":"and","nativeSrc":"43452:3:51","nodeType":"YulIdentifier","src":"43452:3:51"},"nativeSrc":"43452:20:51","nodeType":"YulFunctionCall","src":"43452:20:51"},"variables":[{"name":"loopEnd","nativeSrc":"43441:7:51","nodeType":"YulTypedName","src":"43441:7:51","type":""}]},{"nativeSrc":"43485:49:51","nodeType":"YulVariableDeclaration","src":"43485:49:51","value":{"arguments":[{"name":"slot","nativeSrc":"43529:4:51","nodeType":"YulIdentifier","src":"43529:4:51"}],"functionName":{"name":"array_dataslot_string_storage","nativeSrc":"43499:29:51","nodeType":"YulIdentifier","src":"43499:29:51"},"nativeSrc":"43499:35:51","nodeType":"YulFunctionCall","src":"43499:35:51"},"variables":[{"name":"dstPtr","nativeSrc":"43489:6:51","nodeType":"YulTypedName","src":"43489:6:51","type":""}]},{"nativeSrc":"43547:10:51","nodeType":"YulVariableDeclaration","src":"43547:10:51","value":{"kind":"number","nativeSrc":"43556:1:51","nodeType":"YulLiteral","src":"43556:1:51","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"43551:1:51","nodeType":"YulTypedName","src":"43551:1:51","type":""}]},{"body":{"nativeSrc":"43627:165:51","nodeType":"YulBlock","src":"43627:165:51","statements":[{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"43652:6:51","nodeType":"YulIdentifier","src":"43652:6:51"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"43670:3:51","nodeType":"YulIdentifier","src":"43670:3:51"},{"name":"srcOffset","nativeSrc":"43675:9:51","nodeType":"YulIdentifier","src":"43675:9:51"}],"functionName":{"name":"add","nativeSrc":"43666:3:51","nodeType":"YulIdentifier","src":"43666:3:51"},"nativeSrc":"43666:19:51","nodeType":"YulFunctionCall","src":"43666:19:51"}],"functionName":{"name":"mload","nativeSrc":"43660:5:51","nodeType":"YulIdentifier","src":"43660:5:51"},"nativeSrc":"43660:26:51","nodeType":"YulFunctionCall","src":"43660:26:51"}],"functionName":{"name":"sstore","nativeSrc":"43645:6:51","nodeType":"YulIdentifier","src":"43645:6:51"},"nativeSrc":"43645:42:51","nodeType":"YulFunctionCall","src":"43645:42:51"},"nativeSrc":"43645:42:51","nodeType":"YulExpressionStatement","src":"43645:42:51"},{"nativeSrc":"43704:24:51","nodeType":"YulAssignment","src":"43704:24:51","value":{"arguments":[{"name":"dstPtr","nativeSrc":"43718:6:51","nodeType":"YulIdentifier","src":"43718:6:51"},{"kind":"number","nativeSrc":"43726:1:51","nodeType":"YulLiteral","src":"43726:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"43714:3:51","nodeType":"YulIdentifier","src":"43714:3:51"},"nativeSrc":"43714:14:51","nodeType":"YulFunctionCall","src":"43714:14:51"},"variableNames":[{"name":"dstPtr","nativeSrc":"43704:6:51","nodeType":"YulIdentifier","src":"43704:6:51"}]},{"nativeSrc":"43745:33:51","nodeType":"YulAssignment","src":"43745:33:51","value":{"arguments":[{"name":"srcOffset","nativeSrc":"43762:9:51","nodeType":"YulIdentifier","src":"43762:9:51"},{"kind":"number","nativeSrc":"43773:4:51","nodeType":"YulLiteral","src":"43773:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"43758:3:51","nodeType":"YulIdentifier","src":"43758:3:51"},"nativeSrc":"43758:20:51","nodeType":"YulFunctionCall","src":"43758:20:51"},"variableNames":[{"name":"srcOffset","nativeSrc":"43745:9:51","nodeType":"YulIdentifier","src":"43745:9:51"}]}]},"condition":{"arguments":[{"name":"i","nativeSrc":"43581:1:51","nodeType":"YulIdentifier","src":"43581:1:51"},{"name":"loopEnd","nativeSrc":"43584:7:51","nodeType":"YulIdentifier","src":"43584:7:51"}],"functionName":{"name":"lt","nativeSrc":"43578:2:51","nodeType":"YulIdentifier","src":"43578:2:51"},"nativeSrc":"43578:14:51","nodeType":"YulFunctionCall","src":"43578:14:51"},"nativeSrc":"43570:222:51","nodeType":"YulForLoop","post":{"nativeSrc":"43593:21:51","nodeType":"YulBlock","src":"43593:21:51","statements":[{"nativeSrc":"43595:17:51","nodeType":"YulAssignment","src":"43595:17:51","value":{"arguments":[{"name":"i","nativeSrc":"43604:1:51","nodeType":"YulIdentifier","src":"43604:1:51"},{"kind":"number","nativeSrc":"43607:4:51","nodeType":"YulLiteral","src":"43607:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"43600:3:51","nodeType":"YulIdentifier","src":"43600:3:51"},"nativeSrc":"43600:12:51","nodeType":"YulFunctionCall","src":"43600:12:51"},"variableNames":[{"name":"i","nativeSrc":"43595:1:51","nodeType":"YulIdentifier","src":"43595:1:51"}]}]},"pre":{"nativeSrc":"43574:3:51","nodeType":"YulBlock","src":"43574:3:51","statements":[]},"src":"43570:222:51"},{"body":{"nativeSrc":"43840:166:51","nodeType":"YulBlock","src":"43840:166:51","statements":[{"nativeSrc":"43858:43:51","nodeType":"YulVariableDeclaration","src":"43858:43:51","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"43885:3:51","nodeType":"YulIdentifier","src":"43885:3:51"},{"name":"srcOffset","nativeSrc":"43890:9:51","nodeType":"YulIdentifier","src":"43890:9:51"}],"functionName":{"name":"add","nativeSrc":"43881:3:51","nodeType":"YulIdentifier","src":"43881:3:51"},"nativeSrc":"43881:19:51","nodeType":"YulFunctionCall","src":"43881:19:51"}],"functionName":{"name":"mload","nativeSrc":"43875:5:51","nodeType":"YulIdentifier","src":"43875:5:51"},"nativeSrc":"43875:26:51","nodeType":"YulFunctionCall","src":"43875:26:51"},"variables":[{"name":"lastValue","nativeSrc":"43862:9:51","nodeType":"YulTypedName","src":"43862:9:51","type":""}]},{"expression":{"arguments":[{"name":"dstPtr","nativeSrc":"43925:6:51","nodeType":"YulIdentifier","src":"43925:6:51"},{"arguments":[{"name":"lastValue","nativeSrc":"43937:9:51","nodeType":"YulIdentifier","src":"43937:9:51"},{"arguments":[{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"43964:1:51","nodeType":"YulLiteral","src":"43964:1:51","type":"","value":"3"},{"name":"newLen","nativeSrc":"43967:6:51","nodeType":"YulIdentifier","src":"43967:6:51"}],"functionName":{"name":"shl","nativeSrc":"43960:3:51","nodeType":"YulIdentifier","src":"43960:3:51"},"nativeSrc":"43960:14:51","nodeType":"YulFunctionCall","src":"43960:14:51"},{"kind":"number","nativeSrc":"43976:3:51","nodeType":"YulLiteral","src":"43976:3:51","type":"","value":"248"}],"functionName":{"name":"and","nativeSrc":"43956:3:51","nodeType":"YulIdentifier","src":"43956:3:51"},"nativeSrc":"43956:24:51","nodeType":"YulFunctionCall","src":"43956:24:51"},{"arguments":[{"kind":"number","nativeSrc":"43986:1:51","nodeType":"YulLiteral","src":"43986:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"43982:3:51","nodeType":"YulIdentifier","src":"43982:3:51"},"nativeSrc":"43982:6:51","nodeType":"YulFunctionCall","src":"43982:6:51"}],"functionName":{"name":"shr","nativeSrc":"43952:3:51","nodeType":"YulIdentifier","src":"43952:3:51"},"nativeSrc":"43952:37:51","nodeType":"YulFunctionCall","src":"43952:37:51"}],"functionName":{"name":"not","nativeSrc":"43948:3:51","nodeType":"YulIdentifier","src":"43948:3:51"},"nativeSrc":"43948:42:51","nodeType":"YulFunctionCall","src":"43948:42:51"}],"functionName":{"name":"and","nativeSrc":"43933:3:51","nodeType":"YulIdentifier","src":"43933:3:51"},"nativeSrc":"43933:58:51","nodeType":"YulFunctionCall","src":"43933:58:51"}],"functionName":{"name":"sstore","nativeSrc":"43918:6:51","nodeType":"YulIdentifier","src":"43918:6:51"},"nativeSrc":"43918:74:51","nodeType":"YulFunctionCall","src":"43918:74:51"},"nativeSrc":"43918:74:51","nodeType":"YulExpressionStatement","src":"43918:74:51"}]},"condition":{"arguments":[{"name":"loopEnd","nativeSrc":"43811:7:51","nodeType":"YulIdentifier","src":"43811:7:51"},{"name":"newLen","nativeSrc":"43820:6:51","nodeType":"YulIdentifier","src":"43820:6:51"}],"functionName":{"name":"lt","nativeSrc":"43808:2:51","nodeType":"YulIdentifier","src":"43808:2:51"},"nativeSrc":"43808:19:51","nodeType":"YulFunctionCall","src":"43808:19:51"},"nativeSrc":"43805:201:51","nodeType":"YulIf","src":"43805:201:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"44026:4:51","nodeType":"YulIdentifier","src":"44026:4:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"44040:1:51","nodeType":"YulLiteral","src":"44040:1:51","type":"","value":"1"},{"name":"newLen","nativeSrc":"44043:6:51","nodeType":"YulIdentifier","src":"44043:6:51"}],"functionName":{"name":"shl","nativeSrc":"44036:3:51","nodeType":"YulIdentifier","src":"44036:3:51"},"nativeSrc":"44036:14:51","nodeType":"YulFunctionCall","src":"44036:14:51"},{"kind":"number","nativeSrc":"44052:1:51","nodeType":"YulLiteral","src":"44052:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"44032:3:51","nodeType":"YulIdentifier","src":"44032:3:51"},"nativeSrc":"44032:22:51","nodeType":"YulFunctionCall","src":"44032:22:51"}],"functionName":{"name":"sstore","nativeSrc":"44019:6:51","nodeType":"YulIdentifier","src":"44019:6:51"},"nativeSrc":"44019:36:51","nodeType":"YulFunctionCall","src":"44019:36:51"},"nativeSrc":"44019:36:51","nodeType":"YulExpressionStatement","src":"44019:36:51"}]},"nativeSrc":"43416:649:51","nodeType":"YulCase","src":"43416:649:51","value":{"kind":"number","nativeSrc":"43421:1:51","nodeType":"YulLiteral","src":"43421:1:51","type":"","value":"1"}},{"body":{"nativeSrc":"44082:234:51","nodeType":"YulBlock","src":"44082:234:51","statements":[{"nativeSrc":"44096:14:51","nodeType":"YulVariableDeclaration","src":"44096:14:51","value":{"kind":"number","nativeSrc":"44109:1:51","nodeType":"YulLiteral","src":"44109:1:51","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"44100:5:51","nodeType":"YulTypedName","src":"44100:5:51","type":""}]},{"body":{"nativeSrc":"44145:67:51","nodeType":"YulBlock","src":"44145:67:51","statements":[{"nativeSrc":"44163:35:51","nodeType":"YulAssignment","src":"44163:35:51","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"44182:3:51","nodeType":"YulIdentifier","src":"44182:3:51"},{"name":"srcOffset","nativeSrc":"44187:9:51","nodeType":"YulIdentifier","src":"44187:9:51"}],"functionName":{"name":"add","nativeSrc":"44178:3:51","nodeType":"YulIdentifier","src":"44178:3:51"},"nativeSrc":"44178:19:51","nodeType":"YulFunctionCall","src":"44178:19:51"}],"functionName":{"name":"mload","nativeSrc":"44172:5:51","nodeType":"YulIdentifier","src":"44172:5:51"},"nativeSrc":"44172:26:51","nodeType":"YulFunctionCall","src":"44172:26:51"},"variableNames":[{"name":"value","nativeSrc":"44163:5:51","nodeType":"YulIdentifier","src":"44163:5:51"}]}]},"condition":{"name":"newLen","nativeSrc":"44126:6:51","nodeType":"YulIdentifier","src":"44126:6:51"},"nativeSrc":"44123:89:51","nodeType":"YulIf","src":"44123:89:51"},{"expression":{"arguments":[{"name":"slot","nativeSrc":"44232:4:51","nodeType":"YulIdentifier","src":"44232:4:51"},{"arguments":[{"name":"value","nativeSrc":"44291:5:51","nodeType":"YulIdentifier","src":"44291:5:51"},{"name":"newLen","nativeSrc":"44298:6:51","nodeType":"YulIdentifier","src":"44298:6:51"}],"functionName":{"name":"extract_used_part_and_set_length_of_short_byte_array","nativeSrc":"44238:52:51","nodeType":"YulIdentifier","src":"44238:52:51"},"nativeSrc":"44238:67:51","nodeType":"YulFunctionCall","src":"44238:67:51"}],"functionName":{"name":"sstore","nativeSrc":"44225:6:51","nodeType":"YulIdentifier","src":"44225:6:51"},"nativeSrc":"44225:81:51","nodeType":"YulFunctionCall","src":"44225:81:51"},"nativeSrc":"44225:81:51","nodeType":"YulExpressionStatement","src":"44225:81:51"}]},"nativeSrc":"44074:242:51","nodeType":"YulCase","src":"44074:242:51","value":"default"}],"expression":{"arguments":[{"name":"newLen","nativeSrc":"43396:6:51","nodeType":"YulIdentifier","src":"43396:6:51"},{"kind":"number","nativeSrc":"43404:2:51","nodeType":"YulLiteral","src":"43404:2:51","type":"","value":"31"}],"functionName":{"name":"gt","nativeSrc":"43393:2:51","nodeType":"YulIdentifier","src":"43393:2:51"},"nativeSrc":"43393:14:51","nodeType":"YulFunctionCall","src":"43393:14:51"},"nativeSrc":"43386:930:51","nodeType":"YulSwitch","src":"43386:930:51"}]},"name":"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage","nativeSrc":"43023:1299:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"slot","nativeSrc":"43104:4:51","nodeType":"YulTypedName","src":"43104:4:51","type":""},{"name":"src","nativeSrc":"43110:3:51","nodeType":"YulTypedName","src":"43110:3:51","type":""}],"src":"43023: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_$9767__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_$10613__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_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_$13108(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_$13223_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_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_uint64(value, pos)\n    {\n        mstore(pos, and(value, 0xffffffffffffffff))\n    }\n    function abi_encode_tuple_t_struct$_WitOracleSettings_$7939_memory_ptr__to_t_struct$_WitOracleSettings_$7939_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 96)\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    }\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_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function finalize_allocation_5687(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_5688(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_5690(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 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_enum$_WrappingStatus_$7944__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        if iszero(lt(value0, 4)) { panic_error_0x21() }\n        mstore(headStart, value0)\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_struct$_WitOracleSettings_$7939_calldata_ptr(headStart, dataEnd) -> value0\n    {\n        let _1 := slt(sub(dataEnd, headStart), 96)\n        if _1 { revert(0, 0) }\n        _1 := 0\n        value0 := headStart\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 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_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 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_$9767_t_contract$_IWitOracleRadonRequestModal_$10613_t_userDefinedValueType$_TransactionHash_$13108__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_$13223_calldata_ptr_t_bytes_calldata_ptr__to_t_struct$_DataPushReport_$13223_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_uint64(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_5687(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_5688(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_$13240_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_5690(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_$13240_memory_ptr__to_t_struct$_DataResult_$13240_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_uint64(memberValue0_6, add(headStart, 320))\n        let memberValue0_7 := mload(add(memberValue0_1, 0xa0))\n        abi_encode_uint64(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_$13106_t_userDefinedValueType$_TransactionHash_$13108__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_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 panic_error_0x01()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x01)\n        revert(0, 0x24)\n    }\n    function abi_decode_tuple_t_enum$_QueryStatus_$13282_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 abi_decode_tuple_t_contract$_IWitOracleRadonRegistry_$10468_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_encode_tuple_t_userDefinedValueType$_RadonHash_$13102__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_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_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 update_storage_value_offset_0_t_struct$_WitOracleSettings_$7939_calldata_ptr_to_t_struct$_WitOracleSettings_$7939_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    }\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_$13108t_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_$13108__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 panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\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_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_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_$13102_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_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_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_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_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_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":7692}],"3883":[{"length":32,"start":7650}],"3885":[{"length":32,"start":7608}],"3887":[{"length":32,"start":7773}],"3889":[{"length":32,"start":7813}],"3892":[{"length":32,"start":8103}],"3895":[{"length":32,"start":8148}],"8112":[{"length":32,"start":733},{"length":32,"start":1018},{"length":32,"start":2520},{"length":32,"start":2970},{"length":32,"start":4812},{"length":32,"start":4987},{"length":32,"start":5738},{"length":32,"start":6240}],"8115":[{"length":32,"start":878},{"length":32,"start":8500}],"8118":[{"length":32,"start":1900},{"length":32,"start":2560}],"8121":[{"length":32,"start":3522},{"length":32,"start":4060}],"8123":[{"length":32,"start":6057},{"length":32,"start":8958}]},"linkReferences":{"contracts/WrappedWITLib.sol":{"WrappedWITLib":[{"length":20,"start":2608},{"length":20,"start":3111},{"length":20,"start":5839}]}},"object":"608060405260043610610228575f3560e01c806370a0823111610129578063a9059cbb116100a8578063dd62ed3e1161006d578063dd62ed3e146106ba578063ddb2bf5c146106fe578063f399e22e1461071d578063f577caee1461073c578063f69a00b61461075b575f5ffd5b8063a9059cbb1461062a578063acb734bb14610649578063b9dcadf21461065d578063d505accf1461067c578063d6f29e811461069b575f5ffd5b80638a510f27116100ee5780638a510f271461058d57806395d89b41146105ac57806396fe8eb1146105c0578063a41942a4146105df578063a53cb851146105fe575f5ffd5b806370a08231146104ac57806377cc7a3a146104e05780637ecebe00146104ff57806384b0196e1461051e578063873234cf14610545575f5ffd5b80632b8c49e3116101b55780634c68df671161017a5780634c68df671461043e578063520a5495146104525780635f029ebe146104665780636d0d6a7e146104795780637090c8d614610498575f5ffd5b80632b8c49e314610390578063313ce567146103af5780633644e515146103ca57806347a10e56146103de5780634ba0d1501461042a575f5ffd5b80631014d375116101fb5780631014d375146102cc57806318160ddd146102ff57806318bf50771461031d57806323b872dd1461033e57806327ae68831461035d575f5ffd5b806301367f731461022c57806301ffc9a71461025d57806306fdde031461028c578063095ea7b3146102ad575b5f5ffd5b348015610237575f5ffd5b5061024061078e565b6040516001600160a01b0390911681526020015b60405180910390f35b348015610268575f5ffd5b5061027c610277366004613902565b6107a6565b6040519015158152602001610254565b348015610297575f5ffd5b506102a06107dc565b6040516102549190613976565b3480156102b8575f5ffd5b5061027c6102c736600461399c565b61086c565b3480156102d7575f5ffd5b506102407f000000000000000000000000000000000000000000000000000000000000000081565b34801561030a575f5ffd5b506002545b604051908152602001610254565b348015610328575f5ffd5b5061033c61033736600461399c565b610883565b005b348015610349575f5ffd5b5061027c6103583660046139c6565b6108db565b348015610368575f5ffd5b506102407f000000000000000000000000000000000000000000000000000000000000000081565b34801561039b575f5ffd5b5061033c6103aa36600461399c565b6108fe565b3480156103ba575f5ffd5b5060405160098152602001610254565b3480156103d5575f5ffd5b5061030f61094e565b3480156103e9575f5ffd5b5061027c6103f8366004613a04565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0390811691161490565b348015610435575f5ffd5b506102a061095c565b348015610449575f5ffd5b5061030f610984565b34801561045d575f5ffd5b5061030f61099f565b61030f610474366004613a1f565b6109c1565b348015610484575f5ffd5b5061033c610493366004613a7a565b610ad9565b3480156104a3575f5ffd5b506102a0610db2565b3480156104b7575f5ffd5b5061030f6104c6366004613a04565b6001600160a01b03165f9081526020819052604090205490565b3480156104eb575f5ffd5b5061030f6104fa366004613a1f565b610deb565b34801561050a575f5ffd5b5061030f610519366004613a04565b610e07565b348015610529575f5ffd5b50610532610e24565b6040516102549796959493929190613ae5565b348015610550575f5ffd5b50610559610e66565b60408051825161ffff908116825260208085015190911690820152918101516001600160401b031690820152606001610254565b348015610598575f5ffd5b5061030f6105a7366004613b9a565b610ec9565b3480156105b7575f5ffd5b506102a0611123565b3480156105cb575f5ffd5b5061033c6105da366004613c80565b611132565b3480156105ea575f5ffd5b5061033c6105f9366004613a04565b6111b6565b348015610609575f5ffd5b5061061d610618366004613a1f565b611276565b6040516102549190613da8565b348015610635575f5ffd5b5061027c61064436600461399c565b61136a565b348015610654575f5ffd5b506102a0611377565b348015610668575f5ffd5b5061033c610677366004613dc2565b611472565b348015610687575f5ffd5b5061033c610696366004613de9565b61152f565b3480156106a6575f5ffd5b5061033c6106b5366004613e55565b611665565b3480156106c5575f5ffd5b5061030f6106d4366004613e83565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610709575f5ffd5b5061030f610718366004613a1f565b61185a565b348015610728575f5ffd5b5061033c610737366004613eba565b611885565b348015610747575f5ffd5b5061033c610756366004613ed7565b611b96565b348015610766575f5ffd5b506102407f000000000000000000000000000000000000000000000000000000000000000081565b5f610797611c11565b546001600160a01b0316919050565b5f6001600160e01b03198216630cccc66560e21b14806107d657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546107eb90613f15565b80601f016020809104026020016040519081016040528092919081815260200182805461081790613f15565b80156108625780601f1061083957610100808354040283529160200191610862565b820191905f5260205f20905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b5f33610879818585611c35565b5060019392505050565b61088c33611c42565b6108968282611c71565b60405181815233906001600160a01b038416907fde22baff038e3a3e08407cbdf617deed74e869a7ba517df611e33131c6e6ea04906020015b60405180910390a35050565b5f336108e8858285611ca5565b6108f3858585611d1b565b506001949350505050565b61090733611c42565b6109118282611d78565b60405181815233906001600160a01b038416907fb90795a66650155983e242cac3e1ac1a4dc26f8ed2987f3ce416a34e00111fd4906020016108cf565b5f610957611dac565b905090565b60606109576001461461096d611c11565b6002015460601b6001600160601b03191690611ed8565b5f61098d611c11565b600101546001600160401b0316919050565b5f6109a8611c11565b60010154600160401b90046001600160401b0316919050565b604051633752120b60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301527f0000000000000000000000000000000000000000000000000000000000000000166024820152604481018290525f9073__$928ef700fe09700756683be525388ce8a3$__90633752120b90606401602060405180830381865af4158015610a68573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a8c9190613f47565b90505f198103610ad45760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b60448201526064015b60405180910390fd5b919050565b610b36610ae4611c11565b6003015461ffff16610afc6080860160608701613f6d565b61ffff16101560405180604001604052806016815260200175696e73756666696369656e74207769746e657373657360501b815250611f29565b610b81610b51610b44611c11565b6005015460208601351490565b604051806040016040528060128152602001710d2dcecc2d8d2c840e4c2c8dedc40d0c2e6d60731b815250611f29565b604051633686b53f60e11b81525f906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690636d0d6a7e90610bd390879087908790600401613ff1565b5f604051808303815f875af1158015610bee573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610c1591908101906141fd565b6040516367c4440f60e01b815290915073__$928ef700fe09700756683be525388ce8a3$__906367c4440f90610c4f9084906004016142ae565b602060405180830381865af4925050508015610c88575060408051601f3d908101601f19168201909252610c859181019061439a565b60015b610cfb57610c946143b5565b806308c379a003610cc25750610ca86143cd565b80610cb35750610cc4565b610cbc81611f33565b50610dac565b505b3d808015610ced576040519150601f19603f3d011682016040523d82523d5f602084013e610cf2565b606091505b50610cbc611f6a565b60608083015160408085015181516001600160401b0380871682529093166020840152908201527f8a01b18bdca3d556adc5e6a85f562b83d2c1933f166e93421ff507cfccb09a07910160405180910390a180610d56611c11565b600101805467ffffffffffffffff19166001600160401b03929092169190911790556060820151610d85611c11565b80546001600160401b0392909216600160c01b026001600160c01b03909216919091179055505b50505050565b60606109576001600160601b03197f00000000000000000000000000000000000000000000000000000000000000001646600114611ed8565b5f610df4611c11565b5f92835260060160205250604090205490565b6001600160a01b0381165f908152600760205260408120546107d6565b5f6060805f5f5f6060610e35611fa0565b610e3d611fcd565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b604080516060810182525f8082526020820181905291810191909152610e8a611c11565b604080516060810182526003929092015461ffff808216845262010000820416602084015264010000000090046001600160401b031690820152919050565b5f6001600160401b038416610edd336104c6565b1015610f205760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f7567682062616c616e636560701b6044820152606401610acb565b5f610f29611c11565b600101546001600160401b0390811691508516811015610f8b5760405162461bcd60e51b815260206004820152601760248201527f63616e6e6f7420756e777261702074686174206d7563680000000000000000006044820152606401610acb565b5f610fcf85858080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050466001149150611ffa9050565b90506001600160601b03197f00000000000000000000000000000000000000000000000000000000000000008116908216036110415760405162461bcd60e51b81526020600482015260116024820152701a5b9d985b1a59081c9958da5c1a595b9d607a1b6044820152606401610acb565b61104b8683614463565b611053611c11565b600101805467ffffffffffffffff19166001600160401b0392831617905561107e9033908816611d78565b611086611c11565b60010180546008906110a790600160401b90046001600160401b0316614482565b91906101000a8154816001600160401b0302191690836001600160401b0316021790556001600160401b031692507f0ac1547df8510f30b54430e0e4e1e93ce326490aec9cebf0f78b8faa55dc1ded6110fd3390565b868689876040516111129594939291906144ac565b60405180910390a150509392505050565b6060600480546107eb90613f15565b61113a611c11565b546001600160a01b0316336001600160a01b03161461116b576040516282b42960e81b815260040160405180910390fd5b5f81511161117b5761117b6144ed565b80611184611c11565b600401908051906020019061119a92919061384c565b506111b3816111ae6001461461096d611c11565b6120ab565b50565b6111be611c11565b546001600160a01b0316336001600160a01b0316146111ef576040516282b42960e81b815260040160405180910390fd5b6001600160a01b038116611205576112056144ed565b806001600160a01b0316611217611c11565b546040516001600160a01b03909116907fc63757acc12b39558fe5b88c5393e4b0353ffddaae3a2d07e121a8fc62d39c37905f90a380611255611c11565b80546001600160a01b0319166001600160a01b039290921691909117905550565b5f5f611280611c11565b5f848152600691909101602052604081205491508190036112a357505f92915050565b5f1981036112b45750600392915050565b6001604051631bc1eaf360e21b8152600481018390527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690636f07abcc90602401602060405180830381865afa158015611319573d5f5f3e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061133d9190614501565b600681111561134e5761134e613d94565b1461135a57600261135d565b60015b9392505050565b50919050565b5f33610879818585611d1b565b60607f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316637b1039996040518163ffffffff1660e01b8152600401602060405180830381865afa1580156113d5573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113f9919061451f565b6001600160a01b0316638a22776461140f611c11565b600501546040518263ffffffff1660e01b815260040161143191815260200190565b5f60405180830381865afa15801561144b573d5f5f3e3d5ffd5b505050506040513d5f823e601f3d908101601f19168201604052610957919081019061453a565b61147a611c11565b546001600160a01b0316336001600160a01b0316146114ab576040516282b42960e81b815260040160405180910390fd5b60036114ba6020830183613f6d565b61ffff16101580156114e0575060326114d96040830160208401613f6d565b61ffff1611155b80156115085750630bebc2006114fc6060830160408401614573565b6001600160401b031610155b611514576115146144ed565b8061151d611c11565b60030161152a828261458e565b505050565b834211156115535760405163313c898160e11b815260048101859052602401610acb565b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c988888861159e8c6001600160a01b03165f90815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f6115f8826121bc565b90505f611607828787876121e8565b9050896001600160a01b0316816001600160a01b03161461164e576040516325c0072360e11b81526001600160a01b0380831660048301528b166024820152604401610acb565b6116598a8a8a611c35565b50505050505050505050565b6116c07f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146040518060400160405280600e81526020016d696e76616c6964206f7261636c6560901b815250611f29565b604051635d933eb760e01b815273__$928ef700fe09700756683be525388ce8a3$__90635d933eb7906116fb90869086908690600401614613565b5f60405180830381865af492505050801561173757506040513d5f823e601f3d908101601f19168201604052611734919081019061462c565b60015b6117a4576117436143b5565b806308c379a00361176b57506117576143cd565b80611762575061176d565b610dac81611f33565b505b3d808015611796576040519150601f19603f3d011682016040523d82523d5f602084013e61179b565b606091505b50610dac611f6a565b6118007f00000000000000000000000000000000000000000000000000000000000000008580519060200120146040518060400160405280601181526020017034b73b30b634b21031bab9ba37b234b0b760791b815250611f29565b61181382826001600160401b0316611c71565b7fbae099c209765c02c309f0fac06aec3ac516a3cc60d09f1a3da4b52d673d28a38383838860405161184894939291906146c0565b60405180910390a15050505050505050565b5f6107d67f000000000000000000000000000000000000000000000000000000000000000083612214565b5f61188e6122d4565b805490915060ff600160401b82041615906001600160401b03165f811580156118b45750825b90505f826001600160401b031660011480156118cf5750303b155b9050811580156118dd575080155b156118fb5760405163f92ee8a960e01b815260040160405180910390fd5b845467ffffffffffffffff19166001178555831561192557845460ff60401b1916600160401b1785555b8761192e611c11565b80546001600160a01b0319166001600160a01b03928316179055604051908916905f907fc63757acc12b39558fe5b88c5393e4b0353ffddaae3a2d07e121a8fc62d39c37908290a3604051806060016040528060014614611990576003611993565b600c5b61ffff1681526020016119a860056032614714565b61ffff168152630bebc2006020909101526119c1611c11565b8151600391909101805460208401516040909401516001600160401b0316640100000000026bffffffffffffffff000000001961ffff958616620100000263ffffffff19909316959094169490941717919091169190911790555f6001604051908082528060200260200182016040528015611a5157816020015b6060815260200190600190039081611a3c5790505b50905060014614611a97576040518060400160405280601d81526020017f68747470733a2f2f7270632d746573746e65742e7769746e65742e696f000000815250611ace565b6040518060400160405280601881526020017f68747470733a2f2f7270632d30312e7769746e65742e696f00000000000000008152505b815f81518110611ae057611ae0614737565b602002602001018190525080611af4611c11565b6004019080519060200190611b0a92919061384c565b50611b4988888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506122fc92505050565b508315611b8c57845460ff60401b19168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d290602001611848565b5050505050505050565b611b9e611c11565b546001600160a01b0316336001600160a01b031614611bcf576040516282b42960e81b815260040160405180910390fd5b611c0d82828080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506122fc92505050565b5050565b7f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58f990565b61152a83838360016124b1565b6001600160a01b0381166028602160991b01146111b3576040516282b42960e81b815260040160405180910390fd5b6001600160a01b038216611c9a5760405163ec442f0560e01b81525f6004820152602401610acb565b611c0d5f8383612583565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811015610dac5781811015611d0d57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610acb565b610dac84848484035f6124b1565b6001600160a01b038316611d4457604051634b637e8f60e11b81525f6004820152602401610acb565b6001600160a01b038216611d6d5760405163ec442f0560e01b81525f6004820152602401610acb565b61152a838383612583565b6001600160a01b038216611da157604051634b637e8f60e11b81525f6004820152602401610acb565b611c0d825f83612583565b5f306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016148015611e0457507f000000000000000000000000000000000000000000000000000000000000000046145b15611e2e57507f000000000000000000000000000000000000000000000000000000000000000090565b610957604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b90565b606061135d8360601c83611f0857604051806040016040528060048152602001631d1dda5d60e21b8152506126a9565b604051806040016040528060038152602001621dda5d60ea1b8152506126a9565b81611c0d57611c0d815b80604051602001611f44919061474b565b60408051601f198184030181529082905262461bcd60e51b8252610acb91600401613976565b611f9e604051806040016040528060138152602001723ab73430b7323632b21032bc31b2b83a34b7b760691b815250611f33565b565b60606109577f000000000000000000000000000000000000000000000000000000000000000060056126dd565b60606109577f000000000000000000000000000000000000000000000000000000000000000060066126dd565b5f8161200757602b61200a565b602a5b60ff168351146120555760405162461bcd60e51b8152602060048201526016602482015275084cac6d066647440d2dcecc2d8d2c840d8cadccee8d60531b6044820152606401610acb565b6120a1838361208057604051806040016040528060048152602001631d1dda5d60e21b815250612786565b604051806040016040528060038152602001621dda5d60ea1b815250612786565b60601b9392505050565b604080516002808252606082019092525f91816020015b60608152602001906001900390816120c25790505090506120e1610db2565b815f815181106120f3576120f3614737565b6020026020010181905250818160018151811061211257612112614737565b6020908102919091010152604051633c389c6f60e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063f0e271bc9061216b90849087906004016147cc565b6020604051808303815f875af1158015612187573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906121ab9190613f47565b6121b3611c11565b60050155505050565b5f6107d66121c8611dac565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f6121f888888888612804565b92509250925061220882826128cc565b50909695505050505050565b6040516305e742ef60e01b8152600481018290526202d2a860248201525f906064906001600160a01b038516906305e742ef90604401602060405180830381865afa158015612265573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122899190613f47565b7f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58fc546122c09062010000900461ffff1660646147f0565b6122ca9190614803565b61135d919061481a565b5f807ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a006107d6565b7f000000000000000000000000000000000000000000000000000000000000000081805190602001200361236b5760405162461bcd60e51b81526020600482015260166024820152753ab730b1b1b2b83a30b13632903ab73bb930b83832b960511b6044820152606401610acb565b7fc373fbd4edf171c216b9195c4184b9da9a43e8baf2d461ad9256fe43922f6a968160405161239a9190613976565b60405180910390a16123af8160014614611ffa565b6123b7611c11565b60020180546001600160a01b03191660609290921c9190911790556111b36123dd611c11565b600401805480602002602001604051908101604052809291908181526020015f905b828210156124a7578382905f5260205f2001805461241c90613f15565b80601f016020809104026020016040519081016040528092919081815260200182805461244890613f15565b80156124935780601f1061246a57610100808354040283529160200191612493565b820191905f5260205f20905b81548152906001019060200180831161247657829003601f168201915b5050505050815260200190600101906123ff565b50505050826120ab565b6001600160a01b0384166124da5760405163e602df0560e01b81525f6004820152602401610acb565b6001600160a01b03831661250357604051634a1406b160e11b81525f6004820152602401610acb565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610dac57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161257591815260200190565b60405180910390a350505050565b6001600160a01b0383166125ad578060025f8282546125a291906147f0565b9091555061261d9050565b6001600160a01b0383165f90815260208190526040902054818110156125ff5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610acb565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661263957600280548290039055612657565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161269c91815260200190565b60405180910390a3505050565b604051606083811b6001600160601b03191660208301529061135d9060340160405160208183030381529060405283612984565b606060ff83146126f7576126f0836129d0565b90506107d6565b81805461270390613f15565b80601f016020809104026020016040519081016040528092919081815260200182805461272f90613f15565b801561277a5780601f106127515761010080835404028352916020019161277a565b820191905f5260205f20905b81548152906001019060200180831161275d57829003601f168201915b505050505090506107d6565b5f5f5f6127b38560405160200161279d919061482d565b6040516020818303038152906040526001612a0d565b915091506127e0846040516020016127cb919061482d565b60405160208183030381529060405283612d97565b5f6127ef82600560085f612deb565b90506127fa81612df9565b9695505050505050565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084111561283d57505f915060039050826128c2565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa15801561288e573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b0381166128b957505f9250600191508290506128c2565b92505f91508190505b9450945094915050565b5f8260038111156128df576128df613d94565b036128e8575050565b60018260038111156128fc576128fc613d94565b0361291a5760405163f645eedf60e01b815260040160405180910390fd5b600282600381111561292e5761292e613d94565b0361294f5760405163fce698f760e01b815260048101829052602401610acb565b600382600381111561296357612963613d94565b03611c0d576040516335e2f38360e21b815260048101829052602401610acb565b60605f82604051602001612998919061482d565b60405160208183030381529060405290505f6129b985600860056001612e53565b90506129c782826001612f19565b95945050505050565b60605f6129dc8361319b565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b6060805f605a85511115612a635760405162461bcd60e51b815260206004820152601d60248201527f4265636833323a20696e76616c696420737472696e67206c656e6774680000006044820152606401610acb565b5f5b8551811015612b5e575f868281518110612a8157612a81614737565b016020015160f81c905060218110801590612aa05750607e8160ff1611155b612ae15760405162461bcd60e51b81526020600482015260126024820152712132b1b419991d103bb937b7339031b430b960711b6044820152606401610acb565b60301960ff821601612b555782158015612afc575060018210155b8015612b0c575086518260070111155b612b515760405162461bcd60e51b81526020600482015260166024820152754265636833323a2077726f6e6720706f73206f66203160501b6044820152606401610acb565b8192505b50600101612a65565b50806001600160401b03811115612b7757612b77613bb7565b6040519080825280601f01601f191660200182016040528015612ba1576020820181803683370190505b5092505f5b81811015612bfb57858181518110612bc057612bc0614737565b602001015160f81c60f81b848281518110612bdd57612bdd614737565b60200101906001600160f81b03191690815f1a905350600101612ba6565b50600181865103036001600160401b03811115612c1a57612c1a613bb7565b604051908082528060200260200182016040528015612c43578160200160208202803683370190505b5091505f5b8251811015612d34575f60405180610120016040528061010081526020016149aa61010091398784840160010181518110612c8557612c85614737565b0160200151815160f89190911c908110612ca157612ca1614737565b01602001516001600160f81b03199081169150819003612d035760405162461bcd60e51b815260206004820152601c60248201527f4265636833323a2062797465206e6f7420696e20616c706861626574000000006044820152606401610acb565b8060f81c848381518110612d1957612d19614737565b60ff9092166020928302919091019091015250600101612c48565b50612d408383866131c2565b612d855760405162461bcd60e51b81526020600482015260166024820152754265636833323a2077726f6e6720636865636b73756d60501b6044820152606401610acb565b50805160051901815290939092509050565b8080519060200120828051906020012014611c0d5760405162461bcd60e51b8152602060048201526014602482015273084cac6d066647440d0e4e040dad2e6dac2e8c6d60631b6044820152606401610acb565b60606129c7858585856132ec565b5f8151601414612e4b5760405162461bcd60e51b815260206004820152601b60248201527f4265636833323a20696e76616c69642064617461206c656e67746800000000006044820152606401610acb565b506014015190565b60605f85516001600160401b03811115612e6f57612e6f613bb7565b604051908082528060200260200182016040528015612e98578160200160208202803683370190505b5090505f5b81518163ffffffff161015612f0c57868163ffffffff1681518110612ec457612ec4614737565b602001015160f81c60f81b60f81c828263ffffffff1681518110612eea57612eea614737565b60ff90921660209283029190910190910152612f0581614848565b9050612e9d565b506127fa818686866132ec565b60605f612f278585856134b9565b90505f81518551875101016001016001600160401b03811115612f4c57612f4c613bb7565b6040519080825280601f01601f191660200182016040528015612f76576020820181803683370190505b5090505f5b8651811015612fd157868181518110612f9657612f96614737565b602001015160f81c60f81b828281518110612fb357612fb3614737565b60200101906001600160f81b03191690815f1a905350600101612f7b565b50603160f81b81875181518110612fea57612fea614737565b60200101906001600160f81b03191690815f1a90535085516001015f5b86518110156130cb575f87828151811061302357613023614737565b01602090810151604080518082019091528281525f516020614aaa5f395f51905f529083015260f81c91508110156130c2576040518060400160405280602081526020015f516020614aaa5f395f51905f528152508160ff168151811061308c5761308c614737565b602001015160f81c60f81b84848401815181106130ab576130ab614737565b60200101906001600160f81b03191690815f1a9053505b50600101613007565b508551015f5b8351811015612208575f8482815181106130ed576130ed614737565b602002602001015190506040518060400160405280602081526020015f516020614aaa5f395f51905f52815250518160ff161015613192576040518060400160405280602081526020015f516020614aaa5f395f51905f528152508160ff168151811061315c5761315c614737565b602001015160f81c60f81b848484018151811061317b5761317b614737565b60200101906001600160f81b03191690815f1a9053505b506001016130d1565b5f60ff8216601f8111156107d657604051632cd44ac360e21b815260040160405180910390fd5b5f5f6131cd85613658565b90505f84518251016001600160401b038111156131ec576131ec613bb7565b604051908082528060200260200182016040528015613215578160200160208202803683370190505b5090505f5b825181101561326f5782818151811061323557613235614737565b602002602001015160ff1682828151811061325257613252614737565b63ffffffff9092166020928302919091019091015260010161321a565b505f5b85518110156132ca5785818151811061328d5761328d614737565b602002602001015160ff168284518301815181106132ad576132ad614737565b63ffffffff90921660209283029190910190910152600101613272565b508363ffffffff166132db82613752565b63ffffffff16149695505050505050565b60605f80806132fe600180881b614863565b90505f5b88518110156133f2575f89828151811061331e5761331e614737565b6020908102919091010151905060ff8082168a1c161561339f5760405162461bcd60e51b815260206004820152603660248201527f4265636833323a2076616c7565206d757374206265206e6f6e2d6e6567617469604482015275766520616e642066697420696e2066726f6d6269747360501b6064820152608401610acb565b93881b60ff85161793928801925b8784106133e95760405193889003936133d390879087871c861660f81b90602001614876565b60405160208183030381529060405295506133ad565b50600101613302565b50841561343a57811561343557838161340b8489614863565b85901b1660f81b604051602001613423929190614876565b60405160208183030381529060405293505b6134ae565b8682108061345457508061344e8388614863565b84901b16155b6134ae5760405162461bcd60e51b815260206004820152602560248201527f4265636833323a20696e76616c69642070616464696e67206f722076616c75656044820152642073697a6560d81b6064820152608401610acb565b505050949350505050565b60605f6134c585613658565b90505f84518251016006016001600160401b038111156134e7576134e7613bb7565b604051908082528060200260200182016040528015613510578160200160208202803683370190505b5090505f5b85518351018110156135d35782518110156135785782818151811061353c5761353c614737565b602002602001015160ff1682828151811061355957613559614737565b602002602001019063ffffffff16908163ffffffff16815250506135cb565b85835182038151811061358d5761358d614737565b602001015160f81c60f81b60f81c60ff168282815181106135b0576135b0614737565b602002602001019063ffffffff16908163ffffffff16815250505b600101613515565b5060408051600680825260e08201909252906020820160c0803683370190505092505f8461360083613752565b1890505f5b600681101561364d57806005036005028263ffffffff16901c601f1685828151811061363357613633614737565b60ff90921660209283029190910190910152600101613605565b505050509392505050565b606081518251016001016001600160401b0381111561367957613679613bb7565b6040519080825280602002602001820160405280156136a2578160200160208202803683370190505b5090505f5b82518110156113645760058382815181106136c4576136c4614737565b602001015160f81c60f81b60f81c60ff16901c8282815181106136e9576136e9614737565b602002602001019060ff16908160ff168152505082818151811061370f5761370f614737565b602001015160f81c60f81b60f81c601f1682845183016001018151811061373857613738614737565b60ff909216602092830291909101909101526001016136a7565b6040805160a081018252633b6a57b281526326508e6d6020820152631ea119fa91810191909152633d4233dd6060820152632a1462b360808201525f90600190825b84518163ffffffff161015613843575f60198463ffffffff16901c9050858263ffffffff16815181106137c9576137c9614737565b60200260200101516005856301ffffff1663ffffffff16901b1893505f5f90505b60058163ffffffff16101561383957600163ffffffff8381169083161c8116900361383157838163ffffffff166005811061382757613827614737565b6020020151851894505b6001016137ea565b5050600101613794565b50909392505050565b828054828255905f5260205f20908101928215613890579160200282015b82811115613890578251829061388090826148ef565b509160200191906001019061386a565b5061389c9291506138a0565b5090565b8082111561389c575f6138b382826138bc565b506001016138a0565b5080546138c890613f15565b5f825580601f106138d7575050565b601f0160209004905f5260205f20908101906111b391905b8082111561389c575f81556001016138ef565b5f60208284031215613912575f5ffd5b81356001600160e01b03198116811461135d575f5ffd5b5f5b8381101561394357818101518382015260200161392b565b50505f910152565b5f8151808452613962816020860160208601613929565b601f01601f19169290920160200192915050565b602081525f61135d602083018461394b565b6001600160a01b03811681146111b3575f5ffd5b5f5f604083850312156139ad575f5ffd5b82356139b881613988565b946020939093013593505050565b5f5f5f606084860312156139d8575f5ffd5b83356139e381613988565b925060208401356139f381613988565b929592945050506040919091013590565b5f60208284031215613a14575f5ffd5b813561135d81613988565b5f60208284031215613a2f575f5ffd5b5035919050565b5f5f83601f840112613a46575f5ffd5b5081356001600160401b03811115613a5c575f5ffd5b602083019150836020828501011115613a73575f5ffd5b9250929050565b5f5f5f60408486031215613a8c575f5ffd5b83356001600160401b03811115613aa1575f5ffd5b840160e08187031215613ab2575f5ffd5b925060208401356001600160401b03811115613acc575f5ffd5b613ad886828701613a36565b9497909650939450505050565b60ff60f81b8816815260e060208201525f613b0360e083018961394b565b8281036040840152613b15818961394b565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015613b6a578351835260209384019390920191600101613b4c565b50909b9a5050505050505050505050565b6001600160401b03811681146111b3575f5ffd5b8035610ad481613b7b565b5f5f5f60408486031215613bac575f5ffd5b8335613ab281613b7b565b634e487b7160e01b5f52604160045260245ffd5b60c081018181106001600160401b0382111715613bea57613bea613bb7565b60405250565b604081018181106001600160401b0382111715613bea57613bea613bb7565b60a081018181106001600160401b0382111715613bea57613bea613bb7565b601f8201601f191681016001600160401b0381118282101715613c5357613c53613bb7565b6040525050565b5f6001600160401b03821115613c7257613c72613bb7565b50601f01601f191660200190565b5f60208284031215613c90575f5ffd5b81356001600160401b03811115613ca5575f5ffd5b8201601f81018413613cb5575f5ffd5b80356001600160401b03811115613cce57613cce613bb7565b8060051b604051613ce26020830182613c2e565b918252602081840181019290810187841115613cfc575f5ffd5b6020850192505b83831015613d895782356001600160401b03811115613d20575f5ffd5b8501603f81018913613d30575f5ffd5b6020810135613d3e81613c5a565b604051613d4b8282613c2e565b8281526040848401018c1015613d5f575f5ffd5b826040850160208301375f6020848301015280855250505050602081019050602083019250613d03565b509695505050505050565b634e487b7160e01b5f52602160045260245ffd5b6020810160048310613dbc57613dbc613d94565b91905290565b5f6060828403128015613dd3575f5ffd5b509092915050565b60ff811681146111b3575f5ffd5b5f5f5f5f5f5f5f60e0888a031215613dff575f5ffd5b8735613e0a81613988565b96506020880135613e1a81613988565b955060408801359450606088013593506080880135613e3881613ddb565b9699959850939692959460a0840135945060c09093013592915050565b5f5f5f60408486031215613e67575f5ffd5b8335925060208401356001600160401b03811115613acc575f5ffd5b5f5f60408385031215613e94575f5ffd5b8235613e9f81613988565b91506020830135613eaf81613988565b809150509250929050565b5f5f5f60408486031215613ecc575f5ffd5b8335613ab281613988565b5f5f60208385031215613ee8575f5ffd5b82356001600160401b03811115613efd575f5ffd5b613f0985828601613a36565b90969095509350505050565b600181811c90821680613f2957607f821691505b60208210810361136457634e487b7160e01b5f52602260045260245ffd5b5f60208284031215613f57575f5ffd5b5051919050565b61ffff811681146111b3575f5ffd5b5f60208284031215613f7d575f5ffd5b813561135d81613f5e565b5f5f8335601e19843603018112613f9d575f5ffd5b83016020810192503590506001600160401b03811115613fbb575f5ffd5b803603821315613a73575f5ffd5b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b6040808252843582820152602085013560608301525f9085013561401481613f5e565b61ffff166080830152606085013561402b81613f5e565b61ffff1660a0830152608085013561404281613b7b565b6001600160401b031660c083015261405c60a08601613b8f565b6001600160401b031660e083015261407760c0860186613f88565b60e061010085015261408e61012085018284613fc9565b91505082810360208401526127fa818587613fc9565b805160148110610ad4575f5ffd5b8051610ad481613b7b565b5f82601f8301126140cc575f5ffd5b8151602083015f6140dc83613c5a565b6040516140e98282613c2e565b8092508481528785850111156140fd575f5ffd5b61410b856020830186613929565b979650505050505050565b8051610ad481613ddb565b5f60c08284031215614131575f5ffd5b60405161413d81613bcb565b80915082516001600160401b03811115614155575f5ffd5b830160408186031215614166575f5ffd5b60405161417281613bf0565b81516001600160401b03811115614187575f5ffd5b614193878285016140bd565b8252506020918201518282015282526141ad908401614116565b60208201526141be60408401614116565b60408201526141cf60608401614116565b60608201526141e0608084016140b2565b60808201526141f160a084016140b2565b60a08201525092915050565b5f6020828403121561420d575f5ffd5b81516001600160401b03811115614222575f5ffd5b820160a08185031215614233575f5ffd5b60405161423f81613c0f565b8151610100811061424e575f5ffd5b815261425c602083016140a4565b602082015260408281015190820152614277606083016140b2565b606082015260808201516001600160401b03811115614294575f5ffd5b6142a086828501614121565b608083015250949350505050565b602081525f825161010081106142c6576142c6613d94565b806020840152506020830151601481106142e2576142e2613d94565b80604084015250604083015160608301526001600160401b036060840151166080830152608083015160a080840152805160c080850152805160406101808601526143316101c086018261394b565b6020928301516101a08701529183015160ff1660e08601525060408201519061436061010086018360ff169052565b606083015160ff1661012086015260808301516001600160401b0380821661014088015260a09094015193841661016087015291506129c7565b5f602082840312156143aa575f5ffd5b815161135d81613b7b565b5f60033d1115611ed55760045f5f3e505f5160e01c90565b5f60443d10156143da5790565b6040513d600319016004823e80513d60248201116001600160401b038211171561440357505090565b80820180516001600160401b0381111561441e575050505090565b3d8401600319018282016020011115614438575050505090565b61444760208285010185613c2e565b509392505050565b634e487b7160e01b5f52601160045260245ffd5b6001600160401b0382811682821603908111156107d6576107d661444f565b5f6001600160401b0382166001600160401b0381036144a3576144a361444f565b60010192915050565b6001600160a01b03861681526080602082018190525f906144d09083018688613fc9565b6001600160401b0394909416604083015250606001529392505050565b634e487b7160e01b5f52600160045260245ffd5b5f60208284031215614511575f5ffd5b81516007811061135d575f5ffd5b5f6020828403121561452f575f5ffd5b815161135d81613988565b5f6020828403121561454a575f5ffd5b81516001600160401b0381111561455f575f5ffd5b61456b848285016140bd565b949350505050565b5f60208284031215614583575f5ffd5b813561135d81613b7b565b813561459981613f5e565b61ffff8116905081548161ffff19821617835560208401356145ba81613f5e565b63ffff00008160101b169050808363ffffffff1984161717845560408501356145e281613b7b565b6bffffffffffffffff000000008160201b16846bffffffffffffffffffffffff198516178317178555505050505050565b838152604060208201525f6129c7604083018486613fc9565b5f5f5f5f5f60a08688031215614640575f5ffd5b855160208701519095506001600160401b0381111561465d575f5ffd5b614669888289016140bd565b94505060408601516001600160401b03811115614684575f5ffd5b614690888289016140bd565b93505060608601516146a181613988565b60808701519092506146b281613b7b565b809150509295509295909350565b608081525f6146d2608083018761394b565b6001600160a01b03959095166020830152506001600160401b03929092166040830152606090910152919050565b634e487b7160e01b5f52601260045260245ffd5b5f61ffff83168061472757614727614700565b8061ffff84160491505092915050565b634e487b7160e01b5f52603260045260245ffd5b6b02bb930b83832b22ba4aa1d160a51b81525f825161477181600c850160208701613929565b91909101600c0192915050565b5f82825180855260208501945060208160051b830101602085015f5b8381101561220857601f198584030188526147b683835161394b565b602098890198909350919091019060010161479a565b604081525f6147de604083018561477e565b82810360208401526129c7818561477e565b808201808211156107d6576107d661444f565b80820281158282048414176107d6576107d661444f565b5f8261482857614828614700565b500490565b5f825161483e818460208701613929565b9190910192915050565b5f63ffffffff821663ffffffff81036144a3576144a361444f565b818103818111156107d6576107d661444f565b5f8351614887818460208801613929565b6001600160f81b0319939093169190920190815260010192915050565b601f82111561152a57805f5260205f20601f840160051c810160208510156148c95750805b601f840160051c820191505b818110156148e8575f81556001016148d5565b5050505050565b81516001600160401b0381111561490857614908613bb7565b61491c816149168454613f15565b846148a4565b6020601f82116001811461494e575f83156149375750848201515b5f19600385901b1c1916600184901b1784556148e8565b5f84815260208120601f198516915b8281101561497d578785015182556020948501946001909201910161495d565b508482101561499a57868401515f19600387901b60f8161c191681555b50505050600190811b0190555056feffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0fff0a1115141a1e0705ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1dff180d19090817ff12161f1b13ff010003100b1c0c0e060402ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff71707a7279397838676632747664773073336a6e35346b686365366d7561376ca2646970667358221220512b720b044a9fee312dfe96db1e24acd2b04b6d7e12d7a603f9e380745df0fe64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x228 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x129 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0xA8 JUMPI DUP1 PUSH4 0xDD62ED3E GT PUSH2 0x6D JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x6BA JUMPI DUP1 PUSH4 0xDDB2BF5C EQ PUSH2 0x6FE JUMPI DUP1 PUSH4 0xF399E22E EQ PUSH2 0x71D JUMPI DUP1 PUSH4 0xF577CAEE EQ PUSH2 0x73C JUMPI DUP1 PUSH4 0xF69A00B6 EQ PUSH2 0x75B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x62A JUMPI DUP1 PUSH4 0xACB734BB EQ PUSH2 0x649 JUMPI DUP1 PUSH4 0xB9DCADF2 EQ PUSH2 0x65D JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x67C JUMPI DUP1 PUSH4 0xD6F29E81 EQ PUSH2 0x69B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x8A510F27 GT PUSH2 0xEE JUMPI DUP1 PUSH4 0x8A510F27 EQ PUSH2 0x58D JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x5AC JUMPI DUP1 PUSH4 0x96FE8EB1 EQ PUSH2 0x5C0 JUMPI DUP1 PUSH4 0xA41942A4 EQ PUSH2 0x5DF JUMPI DUP1 PUSH4 0xA53CB851 EQ PUSH2 0x5FE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x4AC JUMPI DUP1 PUSH4 0x77CC7A3A EQ PUSH2 0x4E0 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x4FF JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x51E JUMPI DUP1 PUSH4 0x873234CF EQ PUSH2 0x545 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2B8C49E3 GT PUSH2 0x1B5 JUMPI DUP1 PUSH4 0x4C68DF67 GT PUSH2 0x17A JUMPI DUP1 PUSH4 0x4C68DF67 EQ PUSH2 0x43E JUMPI DUP1 PUSH4 0x520A5495 EQ PUSH2 0x452 JUMPI DUP1 PUSH4 0x5F029EBE EQ PUSH2 0x466 JUMPI DUP1 PUSH4 0x6D0D6A7E EQ PUSH2 0x479 JUMPI DUP1 PUSH4 0x7090C8D6 EQ PUSH2 0x498 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x2B8C49E3 EQ PUSH2 0x390 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x3AF JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x3CA JUMPI DUP1 PUSH4 0x47A10E56 EQ PUSH2 0x3DE JUMPI DUP1 PUSH4 0x4BA0D150 EQ PUSH2 0x42A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1014D375 GT PUSH2 0x1FB JUMPI DUP1 PUSH4 0x1014D375 EQ PUSH2 0x2CC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x2FF JUMPI DUP1 PUSH4 0x18BF5077 EQ PUSH2 0x31D JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x33E JUMPI DUP1 PUSH4 0x27AE6883 EQ PUSH2 0x35D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1367F73 EQ PUSH2 0x22C JUMPI DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x25D JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x28C JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2AD JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x237 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x240 PUSH2 0x78E 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 0x268 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27C PUSH2 0x277 CALLDATASIZE PUSH1 0x4 PUSH2 0x3902 JUMP JUMPDEST PUSH2 0x7A6 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x254 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x297 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x7DC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x3976 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2B8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27C PUSH2 0x2C7 CALLDATASIZE PUSH1 0x4 PUSH2 0x399C JUMP JUMPDEST PUSH2 0x86C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x240 PUSH32 0x0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x254 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x328 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x337 CALLDATASIZE PUSH1 0x4 PUSH2 0x399C JUMP JUMPDEST PUSH2 0x883 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x349 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27C PUSH2 0x358 CALLDATASIZE PUSH1 0x4 PUSH2 0x39C6 JUMP JUMPDEST PUSH2 0x8DB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x368 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x240 PUSH32 0x0 DUP2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x3AA CALLDATASIZE PUSH1 0x4 PUSH2 0x399C JUMP JUMPDEST PUSH2 0x8FE JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3BA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x254 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3D5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x94E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27C PUSH2 0x3F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A04 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 0x435 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x95C JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x449 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x984 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x45D JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x99F JUMP JUMPDEST PUSH2 0x30F PUSH2 0x474 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A1F JUMP JUMPDEST PUSH2 0x9C1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x484 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x493 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A7A JUMP JUMPDEST PUSH2 0xAD9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0xDB2 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x4C6 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A04 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4EB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x4FA CALLDATASIZE PUSH1 0x4 PUSH2 0x3A1F JUMP JUMPDEST PUSH2 0xDEB JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50A JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x519 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A04 JUMP JUMPDEST PUSH2 0xE07 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x529 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x532 PUSH2 0xE24 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3AE5 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x550 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x559 PUSH2 0xE66 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH2 0xFFFF SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x20 DUP1 DUP6 ADD MLOAD SWAP1 SWAP2 AND SWAP1 DUP3 ADD MSTORE SWAP2 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x254 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x598 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x5A7 CALLDATASIZE PUSH1 0x4 PUSH2 0x3B9A JUMP JUMPDEST PUSH2 0xEC9 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5B7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x1123 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5CB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x5DA CALLDATASIZE PUSH1 0x4 PUSH2 0x3C80 JUMP JUMPDEST PUSH2 0x1132 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5EA JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x5F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A04 JUMP JUMPDEST PUSH2 0x11B6 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x609 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x61D PUSH2 0x618 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A1F JUMP JUMPDEST PUSH2 0x1276 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x254 SWAP2 SWAP1 PUSH2 0x3DA8 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x635 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x27C PUSH2 0x644 CALLDATASIZE PUSH1 0x4 PUSH2 0x399C JUMP JUMPDEST PUSH2 0x136A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x654 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x2A0 PUSH2 0x1377 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x668 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x677 CALLDATASIZE PUSH1 0x4 PUSH2 0x3DC2 JUMP JUMPDEST PUSH2 0x1472 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x687 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x696 CALLDATASIZE PUSH1 0x4 PUSH2 0x3DE9 JUMP JUMPDEST PUSH2 0x152F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6A6 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x6B5 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E55 JUMP JUMPDEST PUSH2 0x1665 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6C5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x6D4 CALLDATASIZE PUSH1 0x4 PUSH2 0x3E83 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 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 0x709 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x30F PUSH2 0x718 CALLDATASIZE PUSH1 0x4 PUSH2 0x3A1F JUMP JUMPDEST PUSH2 0x185A JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x728 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x737 CALLDATASIZE PUSH1 0x4 PUSH2 0x3EBA JUMP JUMPDEST PUSH2 0x1885 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x747 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x33C PUSH2 0x756 CALLDATASIZE PUSH1 0x4 PUSH2 0x3ED7 JUMP JUMPDEST PUSH2 0x1B96 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x766 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x240 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH0 PUSH2 0x797 PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCCCC665 PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x7D6 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 0x7EB SWAP1 PUSH2 0x3F15 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 0x817 SWAP1 PUSH2 0x3F15 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x862 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x839 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x862 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x845 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x879 DUP2 DUP6 DUP6 PUSH2 0x1C35 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x88C CALLER PUSH2 0x1C42 JUMP JUMPDEST PUSH2 0x896 DUP3 DUP3 PUSH2 0x1C71 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 PUSH0 CALLER PUSH2 0x8E8 DUP6 DUP3 DUP6 PUSH2 0x1CA5 JUMP JUMPDEST PUSH2 0x8F3 DUP6 DUP6 DUP6 PUSH2 0x1D1B JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x907 CALLER PUSH2 0x1C42 JUMP JUMPDEST PUSH2 0x911 DUP3 DUP3 PUSH2 0x1D78 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 0x8CF JUMP JUMPDEST PUSH0 PUSH2 0x957 PUSH2 0x1DAC JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x957 PUSH1 0x1 CHAINID EQ PUSH2 0x96D PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x2 ADD SLOAD PUSH1 0x60 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT AND SWAP1 PUSH2 0x1ED8 JUMP JUMPDEST PUSH0 PUSH2 0x98D PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x1 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x9A8 PUSH2 0x1C11 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 PUSH0 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 0xA68 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xA8C SWAP2 SWAP1 PUSH2 0x3F47 JUMP JUMPDEST SWAP1 POP PUSH0 NOT DUP2 SUB PUSH2 0xAD4 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 PUSH2 0xB36 PUSH2 0xAE4 PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x3 ADD SLOAD PUSH2 0xFFFF AND PUSH2 0xAFC PUSH1 0x80 DUP7 ADD PUSH1 0x60 DUP8 ADD PUSH2 0x3F6D 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 0x1F29 JUMP JUMPDEST PUSH2 0xB81 PUSH2 0xB51 PUSH2 0xB44 PUSH2 0x1C11 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 0x1F29 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x3686B53F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND SWAP1 PUSH4 0x6D0D6A7E SWAP1 PUSH2 0xBD3 SWAP1 DUP8 SWAP1 DUP8 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x3FF1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0xBEE JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0xC15 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x41FD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x67C4440F PUSH1 0xE0 SHL DUP2 MSTORE SWAP1 SWAP2 POP PUSH20 0x0 SWAP1 PUSH4 0x67C4440F SWAP1 PUSH2 0xC4F SWAP1 DUP5 SWAP1 PUSH1 0x4 ADD PUSH2 0x42AE JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xC88 JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xC85 SWAP2 DUP2 ADD SWAP1 PUSH2 0x439A JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xCFB JUMPI PUSH2 0xC94 PUSH2 0x43B5 JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0xCC2 JUMPI POP PUSH2 0xCA8 PUSH2 0x43CD JUMP JUMPDEST DUP1 PUSH2 0xCB3 JUMPI POP PUSH2 0xCC4 JUMP JUMPDEST PUSH2 0xCBC DUP2 PUSH2 0x1F33 JUMP JUMPDEST POP PUSH2 0xDAC JUMP JUMPDEST POP JUMPDEST RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xCED JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xCF2 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH2 0xCBC PUSH2 0x1F6A 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 0xD56 PUSH2 0x1C11 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 0xD85 PUSH2 0x1C11 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 PUSH1 0x60 PUSH2 0x957 PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH32 0x0 AND CHAINID PUSH1 0x1 EQ PUSH2 0x1ED8 JUMP JUMPDEST PUSH0 PUSH2 0xDF4 PUSH2 0x1C11 JUMP JUMPDEST PUSH0 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 PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x7D6 JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 PUSH0 PUSH0 PUSH0 PUSH1 0x60 PUSH2 0xE35 PUSH2 0x1FA0 JUMP JUMPDEST PUSH2 0xE3D PUSH2 0x1FCD JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 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 0x60 DUP2 ADD DUP3 MSTORE PUSH0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD DUP2 SWAP1 MSTORE SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH2 0xE8A PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x60 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 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND SWAP1 DUP3 ADD MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND PUSH2 0xEDD CALLER PUSH2 0x4C6 JUMP JUMPDEST LT ISZERO PUSH2 0xF20 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 0xACB JUMP JUMPDEST PUSH0 PUSH2 0xF29 PUSH2 0x1C11 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 0xF8B 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 0xACB JUMP JUMPDEST PUSH0 PUSH2 0xFCF 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 PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP POP CHAINID PUSH1 0x1 EQ SWAP2 POP PUSH2 0x1FFA SWAP1 POP JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x60 SHL SUB NOT PUSH32 0x0 DUP2 AND SWAP1 DUP3 AND SUB PUSH2 0x1041 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 0xACB JUMP JUMPDEST PUSH2 0x104B DUP7 DUP4 PUSH2 0x4463 JUMP JUMPDEST PUSH2 0x1053 PUSH2 0x1C11 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 0x107E SWAP1 CALLER SWAP1 DUP9 AND PUSH2 0x1D78 JUMP JUMPDEST PUSH2 0x1086 PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x1 ADD DUP1 SLOAD PUSH1 0x8 SWAP1 PUSH2 0x10A7 SWAP1 PUSH1 0x1 PUSH1 0x40 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x4482 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 0x10FD CALLER SWAP1 JUMP JUMPDEST DUP7 DUP7 DUP10 DUP8 PUSH1 0x40 MLOAD PUSH2 0x1112 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x44AC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x7EB SWAP1 PUSH2 0x3F15 JUMP JUMPDEST PUSH2 0x113A PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x116B JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP2 MLOAD GT PUSH2 0x117B JUMPI PUSH2 0x117B PUSH2 0x44ED JUMP JUMPDEST DUP1 PUSH2 0x1184 PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x4 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x119A SWAP3 SWAP2 SWAP1 PUSH2 0x384C JUMP JUMPDEST POP PUSH2 0x11B3 DUP2 PUSH2 0x11AE PUSH1 0x1 CHAINID EQ PUSH2 0x96D PUSH2 0x1C11 JUMP JUMPDEST PUSH2 0x20AB JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x11BE PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x11EF 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 0x1205 JUMPI PUSH2 0x1205 PUSH2 0x44ED JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x1217 PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND SWAP1 PUSH32 0xC63757ACC12B39558FE5B88C5393E4B0353FFDDAAE3A2D07E121A8FC62D39C37 SWAP1 PUSH0 SWAP1 LOG3 DUP1 PUSH2 0x1255 PUSH2 0x1C11 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 PUSH0 PUSH0 PUSH2 0x1280 PUSH2 0x1C11 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x6 SWAP2 SWAP1 SWAP2 ADD PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 POP DUP2 SWAP1 SUB PUSH2 0x12A3 JUMPI POP PUSH0 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 NOT DUP2 SUB PUSH2 0x12B4 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 0x1319 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x133D SWAP2 SWAP1 PUSH2 0x4501 JUMP JUMPDEST PUSH1 0x6 DUP2 GT ISZERO PUSH2 0x134E JUMPI PUSH2 0x134E PUSH2 0x3D94 JUMP JUMPDEST EQ PUSH2 0x135A JUMPI PUSH1 0x2 PUSH2 0x135D JUMP JUMPDEST PUSH1 0x1 JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 CALLER PUSH2 0x879 DUP2 DUP6 DUP6 PUSH2 0x1D1B 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 0x13D5 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x13F9 SWAP2 SWAP1 PUSH2 0x451F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x8A227764 PUSH2 0x140F PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x5 ADD SLOAD PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1431 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x144B JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x957 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x453A JUMP JUMPDEST PUSH2 0x147A PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x14AB 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 0x14BA PUSH1 0x20 DUP4 ADD DUP4 PUSH2 0x3F6D JUMP JUMPDEST PUSH2 0xFFFF AND LT ISZERO DUP1 ISZERO PUSH2 0x14E0 JUMPI POP PUSH1 0x32 PUSH2 0x14D9 PUSH1 0x40 DUP4 ADD PUSH1 0x20 DUP5 ADD PUSH2 0x3F6D JUMP JUMPDEST PUSH2 0xFFFF AND GT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x1508 JUMPI POP PUSH4 0xBEBC200 PUSH2 0x14FC PUSH1 0x60 DUP4 ADD PUSH1 0x40 DUP5 ADD PUSH2 0x4573 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND LT ISZERO JUMPDEST PUSH2 0x1514 JUMPI PUSH2 0x1514 PUSH2 0x44ED JUMP JUMPDEST DUP1 PUSH2 0x151D PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x3 ADD PUSH2 0x152A DUP3 DUP3 PUSH2 0x458E JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x1553 JUMPI PUSH1 0x40 MLOAD PUSH4 0x313C8981 PUSH1 0xE1 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x159E DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 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 PUSH0 PUSH2 0x15F8 DUP3 PUSH2 0x21BC JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x1607 DUP3 DUP8 DUP8 DUP8 PUSH2 0x21E8 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 0x164E 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 0xACB JUMP JUMPDEST PUSH2 0x1659 DUP11 DUP11 DUP11 PUSH2 0x1C35 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x16C0 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 0x1F29 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x5D933EB7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH20 0x0 SWAP1 PUSH4 0x5D933EB7 SWAP1 PUSH2 0x16FB SWAP1 DUP7 SWAP1 DUP7 SWAP1 DUP7 SWAP1 PUSH1 0x4 ADD PUSH2 0x4613 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1737 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH0 DUP3 RETURNDATACOPY PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD PUSH1 0x40 MSTORE PUSH2 0x1734 SWAP2 SWAP1 DUP2 ADD SWAP1 PUSH2 0x462C JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x17A4 JUMPI PUSH2 0x1743 PUSH2 0x43B5 JUMP JUMPDEST DUP1 PUSH4 0x8C379A0 SUB PUSH2 0x176B JUMPI POP PUSH2 0x1757 PUSH2 0x43CD JUMP JUMPDEST DUP1 PUSH2 0x1762 JUMPI POP PUSH2 0x176D JUMP JUMPDEST PUSH2 0xDAC DUP2 PUSH2 0x1F33 JUMP JUMPDEST POP JUMPDEST RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x1796 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x179B JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH2 0xDAC PUSH2 0x1F6A JUMP JUMPDEST PUSH2 0x1800 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 0x1F29 JUMP JUMPDEST PUSH2 0x1813 DUP3 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x1C71 JUMP JUMPDEST PUSH32 0xBAE099C209765C02C309F0FAC06AEC3AC516A3CC60D09F1A3DA4B52D673D28A3 DUP4 DUP4 DUP4 DUP9 PUSH1 0x40 MLOAD PUSH2 0x1848 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x46C0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x7D6 PUSH32 0x0 DUP4 PUSH2 0x2214 JUMP JUMPDEST PUSH0 PUSH2 0x188E PUSH2 0x22D4 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 PUSH0 DUP2 ISZERO DUP1 ISZERO PUSH2 0x18B4 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ DUP1 ISZERO PUSH2 0x18CF JUMPI POP ADDRESS EXTCODESIZE ISZERO JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x18DD JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x18FB 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 0x1925 JUMPI DUP5 SLOAD PUSH1 0xFF PUSH1 0x40 SHL NOT AND PUSH1 0x1 PUSH1 0x40 SHL OR DUP6 SSTORE JUMPDEST DUP8 PUSH2 0x192E PUSH2 0x1C11 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 PUSH0 SWAP1 PUSH32 0xC63757ACC12B39558FE5B88C5393E4B0353FFDDAAE3A2D07E121A8FC62D39C37 SWAP1 DUP3 SWAP1 LOG3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 CHAINID EQ PUSH2 0x1990 JUMPI PUSH1 0x3 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0xC JUMPDEST PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x19A8 PUSH1 0x5 PUSH1 0x32 PUSH2 0x4714 JUMP JUMPDEST PUSH2 0xFFFF AND DUP2 MSTORE PUSH4 0xBEBC200 PUSH1 0x20 SWAP1 SWAP2 ADD MSTORE PUSH2 0x19C1 PUSH2 0x1C11 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x3 SWAP2 SWAP1 SWAP2 ADD DUP1 SLOAD PUSH1 0x20 DUP5 ADD MLOAD PUSH1 0x40 SWAP1 SWAP5 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH5 0x100000000 MUL PUSH12 0xFFFFFFFFFFFFFFFF00000000 NOT PUSH2 0xFFFF SWAP6 DUP7 AND PUSH3 0x10000 MUL PUSH4 0xFFFFFFFF NOT SWAP1 SWAP4 AND SWAP6 SWAP1 SWAP5 AND SWAP5 SWAP1 SWAP5 OR OR SWAP2 SWAP1 SWAP2 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH0 PUSH1 0x1 PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x1A51 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1A3C JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x1 CHAINID EQ PUSH2 0x1A97 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 0x1ACE 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 PUSH0 DUP2 MLOAD DUP2 LT PUSH2 0x1AE0 JUMPI PUSH2 0x1AE0 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 PUSH2 0x1AF4 PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x4 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1B0A SWAP3 SWAP2 SWAP1 PUSH2 0x384C JUMP JUMPDEST POP PUSH2 0x1B49 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 PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x22FC SWAP3 POP POP POP JUMP JUMPDEST POP DUP4 ISZERO PUSH2 0x1B8C 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 0x1848 JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1B9E PUSH2 0x1C11 JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1BCF JUMPI PUSH1 0x40 MLOAD PUSH3 0x82B429 PUSH1 0xE8 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1C0D 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 PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x22FC SWAP3 POP POP POP JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58F9 SWAP1 JUMP JUMPDEST PUSH2 0x152A DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x24B1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x28 PUSH1 0x21 PUSH1 0x99 SHL ADD EQ PUSH2 0x11B3 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 0x1C9A JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH2 0x1C0D PUSH0 DUP4 DUP4 PUSH2 0x2583 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 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 PUSH0 NOT DUP2 LT ISZERO PUSH2 0xDAC JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x1D0D 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 0xACB JUMP JUMPDEST PUSH2 0xDAC DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x24B1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x1D44 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1D6D JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH2 0x152A DUP4 DUP4 DUP4 PUSH2 0x2583 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x1DA1 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH2 0x1C0D DUP3 PUSH0 DUP4 PUSH2 0x2583 JUMP JUMPDEST PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x1E04 JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x1E2E JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x957 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 PUSH0 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 PUSH1 0x60 PUSH2 0x135D DUP4 PUSH1 0x60 SHR DUP4 PUSH2 0x1F08 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 0x26A9 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 0x26A9 JUMP JUMPDEST DUP2 PUSH2 0x1C0D JUMPI PUSH2 0x1C0D DUP2 JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1F44 SWAP2 SWAP1 PUSH2 0x474B 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 0xACB SWAP2 PUSH1 0x4 ADD PUSH2 0x3976 JUMP JUMPDEST PUSH2 0x1F9E 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 0x1F33 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH2 0x957 PUSH32 0x0 PUSH1 0x5 PUSH2 0x26DD JUMP JUMPDEST PUSH1 0x60 PUSH2 0x957 PUSH32 0x0 PUSH1 0x6 PUSH2 0x26DD JUMP JUMPDEST PUSH0 DUP2 PUSH2 0x2007 JUMPI PUSH1 0x2B PUSH2 0x200A JUMP JUMPDEST PUSH1 0x2A JUMPDEST PUSH1 0xFF AND DUP4 MLOAD EQ PUSH2 0x2055 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 0xACB JUMP JUMPDEST PUSH2 0x20A1 DUP4 DUP4 PUSH2 0x2080 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 0x2786 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 0x2786 JUMP JUMPDEST PUSH1 0x60 SHL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x2 DUP1 DUP3 MSTORE PUSH1 0x60 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH0 SWAP2 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x20C2 JUMPI SWAP1 POP POP SWAP1 POP PUSH2 0x20E1 PUSH2 0xDB2 JUMP JUMPDEST DUP2 PUSH0 DUP2 MLOAD DUP2 LT PUSH2 0x20F3 JUMPI PUSH2 0x20F3 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP2 DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x2112 JUMPI PUSH2 0x2112 PUSH2 0x4737 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 0x216B SWAP1 DUP5 SWAP1 DUP8 SWAP1 PUSH1 0x4 ADD PUSH2 0x47CC JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2187 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x21AB SWAP2 SWAP1 PUSH2 0x3F47 JUMP JUMPDEST PUSH2 0x21B3 PUSH2 0x1C11 JUMP JUMPDEST PUSH1 0x5 ADD SSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x7D6 PUSH2 0x21C8 PUSH2 0x1DAC 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 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x21F8 DUP9 DUP9 DUP9 DUP9 PUSH2 0x2804 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x2208 DUP3 DUP3 PUSH2 0x28CC 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 0x2D2A8 PUSH1 0x24 DUP3 ADD MSTORE PUSH0 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 0x2265 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2289 SWAP2 SWAP1 PUSH2 0x3F47 JUMP JUMPDEST PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58FC SLOAD PUSH2 0x22C0 SWAP1 PUSH3 0x10000 SWAP1 DIV PUSH2 0xFFFF AND PUSH1 0x64 PUSH2 0x47F0 JUMP JUMPDEST PUSH2 0x22CA SWAP2 SWAP1 PUSH2 0x4803 JUMP JUMPDEST PUSH2 0x135D SWAP2 SWAP1 PUSH2 0x481A JUMP JUMPDEST PUSH0 DUP1 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 PUSH2 0x7D6 JUMP JUMPDEST PUSH32 0x0 DUP2 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SUB PUSH2 0x236B 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 0xACB JUMP JUMPDEST PUSH32 0xC373FBD4EDF171C216B9195C4184B9DA9A43E8BAF2D461AD9256FE43922F6A96 DUP2 PUSH1 0x40 MLOAD PUSH2 0x239A SWAP2 SWAP1 PUSH2 0x3976 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x23AF DUP2 PUSH1 0x1 CHAINID EQ PUSH2 0x1FFA JUMP JUMPDEST PUSH2 0x23B7 PUSH2 0x1C11 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 0x11B3 PUSH2 0x23DD PUSH2 0x1C11 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 PUSH0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x24A7 JUMPI DUP4 DUP3 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x241C SWAP1 PUSH2 0x3F15 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 0x2448 SWAP1 PUSH2 0x3F15 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2493 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x246A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2493 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2476 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 0x23FF JUMP JUMPDEST POP POP POP POP DUP3 PUSH2 0x20AB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH2 0x24DA JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2503 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 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 0xDAC 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 0x2575 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 0x25AD JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x25A2 SWAP2 SWAP1 PUSH2 0x47F0 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0x261D SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0x25FF 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 0xACB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 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 0x2639 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0x2657 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 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 0x269C SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 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 0x135D SWAP1 PUSH1 0x34 ADD PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP4 PUSH2 0x2984 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xFF DUP4 EQ PUSH2 0x26F7 JUMPI PUSH2 0x26F0 DUP4 PUSH2 0x29D0 JUMP JUMPDEST SWAP1 POP PUSH2 0x7D6 JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0x2703 SWAP1 PUSH2 0x3F15 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 0x272F SWAP1 PUSH2 0x3F15 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x277A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2751 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x277A JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x275D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x7D6 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH2 0x27B3 DUP6 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x279D SWAP2 SWAP1 PUSH2 0x482D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH1 0x1 PUSH2 0x2A0D JUMP JUMPDEST SWAP2 POP SWAP2 POP PUSH2 0x27E0 DUP5 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x27CB SWAP2 SWAP1 PUSH2 0x482D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP4 PUSH2 0x2D97 JUMP JUMPDEST PUSH0 PUSH2 0x27EF DUP3 PUSH1 0x5 PUSH1 0x8 PUSH0 PUSH2 0x2DEB JUMP JUMPDEST SWAP1 POP PUSH2 0x27FA DUP2 PUSH2 0x2DF9 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0x283D JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0x28C2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 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 0x288E JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x28B9 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0x28C2 JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28DF JUMPI PUSH2 0x28DF PUSH2 0x3D94 JUMP JUMPDEST SUB PUSH2 0x28E8 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x28FC JUMPI PUSH2 0x28FC PUSH2 0x3D94 JUMP JUMPDEST SUB PUSH2 0x291A 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 0x292E JUMPI PUSH2 0x292E PUSH2 0x3D94 JUMP JUMPDEST SUB PUSH2 0x294F JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x2963 JUMPI PUSH2 0x2963 PUSH2 0x3D94 JUMP JUMPDEST SUB PUSH2 0x1C0D JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0xACB JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x2998 SWAP2 SWAP1 PUSH2 0x482D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP1 POP PUSH0 PUSH2 0x29B9 DUP6 PUSH1 0x8 PUSH1 0x5 PUSH1 0x1 PUSH2 0x2E53 JUMP JUMPDEST SWAP1 POP PUSH2 0x29C7 DUP3 DUP3 PUSH1 0x1 PUSH2 0x2F19 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x29DC DUP4 PUSH2 0x319B JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH0 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 PUSH0 PUSH1 0x5A DUP6 MLOAD GT ISZERO PUSH2 0x2A63 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 0xACB JUMP JUMPDEST PUSH0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x2B5E JUMPI PUSH0 DUP7 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2A81 JUMPI PUSH2 0x2A81 PUSH2 0x4737 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0xF8 SHR SWAP1 POP PUSH1 0x21 DUP2 LT DUP1 ISZERO SWAP1 PUSH2 0x2AA0 JUMPI POP PUSH1 0x7E DUP2 PUSH1 0xFF AND GT ISZERO JUMPDEST PUSH2 0x2AE1 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 0xACB JUMP JUMPDEST PUSH1 0x30 NOT PUSH1 0xFF DUP3 AND ADD PUSH2 0x2B55 JUMPI DUP3 ISZERO DUP1 ISZERO PUSH2 0x2AFC JUMPI POP PUSH1 0x1 DUP3 LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x2B0C JUMPI POP DUP7 MLOAD DUP3 PUSH1 0x7 ADD GT ISZERO JUMPDEST PUSH2 0x2B51 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 0xACB JUMP JUMPDEST DUP2 SWAP3 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x2A65 JUMP JUMPDEST POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2B77 JUMPI PUSH2 0x2B77 PUSH2 0x3BB7 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 0x2BA1 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP3 POP PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2BFB JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x2BC0 JUMPI PUSH2 0x2BC0 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2BDD JUMPI PUSH2 0x2BDD PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP PUSH1 0x1 ADD PUSH2 0x2BA6 JUMP JUMPDEST POP PUSH1 0x1 DUP2 DUP7 MLOAD SUB SUB PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2C1A JUMPI PUSH2 0x2C1A PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2C43 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP2 POP PUSH0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x2D34 JUMPI PUSH0 PUSH1 0x40 MLOAD DUP1 PUSH2 0x120 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x100 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x49AA PUSH2 0x100 SWAP2 CODECOPY DUP8 DUP5 DUP5 ADD PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0x2C85 JUMPI PUSH2 0x2C85 PUSH2 0x4737 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD DUP2 MLOAD PUSH1 0xF8 SWAP2 SWAP1 SWAP2 SHR SWAP1 DUP2 LT PUSH2 0x2CA1 JUMPI PUSH2 0x2CA1 PUSH2 0x4737 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 0x2D03 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 0xACB JUMP JUMPDEST DUP1 PUSH1 0xF8 SHR DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2D19 JUMPI PUSH2 0x2D19 PUSH2 0x4737 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 0x2C48 JUMP JUMPDEST POP PUSH2 0x2D40 DUP4 DUP4 DUP7 PUSH2 0x31C2 JUMP JUMPDEST PUSH2 0x2D85 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 0xACB 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 0x1C0D 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 0xACB JUMP JUMPDEST PUSH1 0x60 PUSH2 0x29C7 DUP6 DUP6 DUP6 DUP6 PUSH2 0x32EC JUMP JUMPDEST PUSH0 DUP2 MLOAD PUSH1 0x14 EQ PUSH2 0x2E4B 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 0xACB JUMP JUMPDEST POP PUSH1 0x14 ADD MLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP6 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2E6F JUMPI PUSH2 0x2E6F PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2E98 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP2 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x2F0C JUMPI DUP7 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x2EC4 JUMPI PUSH2 0x2EC4 PUSH2 0x4737 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 0x2EEA JUMPI PUSH2 0x2EEA PUSH2 0x4737 JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH2 0x2F05 DUP2 PUSH2 0x4848 JUMP JUMPDEST SWAP1 POP PUSH2 0x2E9D JUMP JUMPDEST POP PUSH2 0x27FA DUP2 DUP7 DUP7 DUP7 PUSH2 0x32EC JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x2F27 DUP6 DUP6 DUP6 PUSH2 0x34B9 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD DUP6 MLOAD DUP8 MLOAD ADD ADD PUSH1 0x1 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2F4C JUMPI PUSH2 0x2F4C PUSH2 0x3BB7 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 0x2F76 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP7 MLOAD DUP2 LT ISZERO PUSH2 0x2FD1 JUMPI DUP7 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x2F96 JUMPI PUSH2 0x2F96 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2FB3 JUMPI PUSH2 0x2FB3 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP PUSH1 0x1 ADD PUSH2 0x2F7B JUMP JUMPDEST POP PUSH1 0x31 PUSH1 0xF8 SHL DUP2 DUP8 MLOAD DUP2 MLOAD DUP2 LT PUSH2 0x2FEA JUMPI PUSH2 0x2FEA PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP DUP6 MLOAD PUSH1 0x1 ADD PUSH0 JUMPDEST DUP7 MLOAD DUP2 LT ISZERO PUSH2 0x30CB JUMPI PUSH0 DUP8 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3023 JUMPI PUSH2 0x3023 PUSH2 0x4737 JUMP JUMPDEST ADD PUSH1 0x20 SWAP1 DUP2 ADD MLOAD PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE DUP3 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x4AAA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 DUP4 ADD MSTORE PUSH1 0xF8 SHR SWAP2 POP DUP2 LT ISZERO PUSH2 0x30C2 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x4AAA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 MSTORE POP DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x308C JUMPI PUSH2 0x308C PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP5 DUP5 ADD DUP2 MLOAD DUP2 LT PUSH2 0x30AB JUMPI PUSH2 0x30AB PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x3007 JUMP JUMPDEST POP DUP6 MLOAD ADD PUSH0 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x2208 JUMPI PUSH0 DUP5 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x30ED JUMPI PUSH2 0x30ED PUSH2 0x4737 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 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x4AAA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 MSTORE POP MLOAD DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x3192 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x20 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x4AAA PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE DUP2 MSTORE POP DUP2 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x315C JUMPI PUSH2 0x315C PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD MLOAD PUSH1 0xF8 SHR PUSH1 0xF8 SHL DUP5 DUP5 DUP5 ADD DUP2 MLOAD DUP2 LT PUSH2 0x317B JUMPI PUSH2 0x317B PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x30D1 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x7D6 JUMPI PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH0 PUSH2 0x31CD DUP6 PUSH2 0x3658 JUMP JUMPDEST SWAP1 POP PUSH0 DUP5 MLOAD DUP3 MLOAD ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x31EC JUMPI PUSH2 0x31EC PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3215 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x326F JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x3235 JUMPI PUSH2 0x3235 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3252 JUMPI PUSH2 0x3252 PUSH2 0x4737 JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x321A JUMP JUMPDEST POP PUSH0 JUMPDEST DUP6 MLOAD DUP2 LT ISZERO PUSH2 0x32CA JUMPI DUP6 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x328D JUMPI PUSH2 0x328D PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP5 MLOAD DUP4 ADD DUP2 MLOAD DUP2 LT PUSH2 0x32AD JUMPI PUSH2 0x32AD PUSH2 0x4737 JUMP JUMPDEST PUSH4 0xFFFFFFFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x3272 JUMP JUMPDEST POP DUP4 PUSH4 0xFFFFFFFF AND PUSH2 0x32DB DUP3 PUSH2 0x3752 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND EQ SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP1 PUSH2 0x32FE PUSH1 0x1 DUP1 DUP9 SHL PUSH2 0x4863 JUMP JUMPDEST SWAP1 POP PUSH0 JUMPDEST DUP9 MLOAD DUP2 LT ISZERO PUSH2 0x33F2 JUMPI PUSH0 DUP10 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x331E JUMPI PUSH2 0x331E PUSH2 0x4737 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 0x339F 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 0xACB JUMP JUMPDEST SWAP4 DUP9 SHL PUSH1 0xFF DUP6 AND OR SWAP4 SWAP3 DUP9 ADD SWAP3 JUMPDEST DUP8 DUP5 LT PUSH2 0x33E9 JUMPI PUSH1 0x40 MLOAD SWAP4 DUP9 SWAP1 SUB SWAP4 PUSH2 0x33D3 SWAP1 DUP8 SWAP1 DUP8 DUP8 SHR DUP7 AND PUSH1 0xF8 SHL SWAP1 PUSH1 0x20 ADD PUSH2 0x4876 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP6 POP PUSH2 0x33AD JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x3302 JUMP JUMPDEST POP DUP5 ISZERO PUSH2 0x343A JUMPI DUP2 ISZERO PUSH2 0x3435 JUMPI DUP4 DUP2 PUSH2 0x340B DUP5 DUP10 PUSH2 0x4863 JUMP JUMPDEST DUP6 SWAP1 SHL AND PUSH1 0xF8 SHL PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x3423 SWAP3 SWAP2 SWAP1 PUSH2 0x4876 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP4 POP JUMPDEST PUSH2 0x34AE JUMP JUMPDEST DUP7 DUP3 LT DUP1 PUSH2 0x3454 JUMPI POP DUP1 PUSH2 0x344E DUP4 DUP9 PUSH2 0x4863 JUMP JUMPDEST DUP5 SWAP1 SHL AND ISZERO JUMPDEST PUSH2 0x34AE 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 0xACB JUMP JUMPDEST POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x34C5 DUP6 PUSH2 0x3658 JUMP JUMPDEST SWAP1 POP PUSH0 DUP5 MLOAD DUP3 MLOAD ADD PUSH1 0x6 ADD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x34E7 JUMPI PUSH2 0x34E7 PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x3510 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP6 MLOAD DUP4 MLOAD ADD DUP2 LT ISZERO PUSH2 0x35D3 JUMPI DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x3578 JUMPI DUP3 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x353C JUMPI PUSH2 0x353C PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0xFF AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3559 JUMPI PUSH2 0x3559 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD SWAP1 PUSH4 0xFFFFFFFF AND SWAP1 DUP2 PUSH4 0xFFFFFFFF AND DUP2 MSTORE POP POP PUSH2 0x35CB JUMP JUMPDEST DUP6 DUP4 MLOAD DUP3 SUB DUP2 MLOAD DUP2 LT PUSH2 0x358D JUMPI PUSH2 0x358D PUSH2 0x4737 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 0x35B0 JUMPI PUSH2 0x35B0 PUSH2 0x4737 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 0x3515 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 PUSH0 DUP5 PUSH2 0x3600 DUP4 PUSH2 0x3752 JUMP JUMPDEST XOR SWAP1 POP PUSH0 JUMPDEST PUSH1 0x6 DUP2 LT ISZERO PUSH2 0x364D JUMPI DUP1 PUSH1 0x5 SUB PUSH1 0x5 MUL DUP3 PUSH4 0xFFFFFFFF AND SWAP1 SHR PUSH1 0x1F AND DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3633 JUMPI PUSH2 0x3633 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x3605 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 0x3679 JUMPI PUSH2 0x3679 PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x36A2 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x1364 JUMPI PUSH1 0x5 DUP4 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x36C4 JUMPI PUSH2 0x36C4 PUSH2 0x4737 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 0x36E9 JUMPI PUSH2 0x36E9 PUSH2 0x4737 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 0x370F JUMPI PUSH2 0x370F PUSH2 0x4737 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 0x3738 JUMPI PUSH2 0x3738 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0xFF SWAP1 SWAP3 AND PUSH1 0x20 SWAP3 DUP4 MUL SWAP2 SWAP1 SWAP2 ADD SWAP1 SWAP2 ADD MSTORE PUSH1 0x1 ADD PUSH2 0x36A7 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 PUSH0 SWAP1 PUSH1 0x1 SWAP1 DUP3 JUMPDEST DUP5 MLOAD DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x3843 JUMPI PUSH0 PUSH1 0x19 DUP5 PUSH4 0xFFFFFFFF AND SWAP1 SHR SWAP1 POP DUP6 DUP3 PUSH4 0xFFFFFFFF AND DUP2 MLOAD DUP2 LT PUSH2 0x37C9 JUMPI PUSH2 0x37C9 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x5 DUP6 PUSH4 0x1FFFFFF AND PUSH4 0xFFFFFFFF AND SWAP1 SHL XOR SWAP4 POP PUSH0 PUSH0 SWAP1 POP JUMPDEST PUSH1 0x5 DUP2 PUSH4 0xFFFFFFFF AND LT ISZERO PUSH2 0x3839 JUMPI PUSH1 0x1 PUSH4 0xFFFFFFFF DUP4 DUP2 AND SWAP1 DUP4 AND SHR DUP2 AND SWAP1 SUB PUSH2 0x3831 JUMPI DUP4 DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0x5 DUP2 LT PUSH2 0x3827 JUMPI PUSH2 0x3827 PUSH2 0x4737 JUMP JUMPDEST PUSH1 0x20 MUL ADD MLOAD DUP6 XOR SWAP5 POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x37EA JUMP JUMPDEST POP POP PUSH1 0x1 ADD PUSH2 0x3794 JUMP JUMPDEST POP SWAP1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x3890 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x3890 JUMPI DUP3 MLOAD DUP3 SWAP1 PUSH2 0x3880 SWAP1 DUP3 PUSH2 0x48EF JUMP JUMPDEST POP SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x386A JUMP JUMPDEST POP PUSH2 0x389C SWAP3 SWAP2 POP PUSH2 0x38A0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x389C JUMPI PUSH0 PUSH2 0x38B3 DUP3 DUP3 PUSH2 0x38BC JUMP JUMPDEST POP PUSH1 0x1 ADD PUSH2 0x38A0 JUMP JUMPDEST POP DUP1 SLOAD PUSH2 0x38C8 SWAP1 PUSH2 0x3F15 JUMP JUMPDEST PUSH0 DUP3 SSTORE DUP1 PUSH1 0x1F LT PUSH2 0x38D7 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 DUP2 ADD SWAP1 PUSH2 0x11B3 SWAP2 SWAP1 JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x389C JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x38EF JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3912 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x135D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x3943 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x392B JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x3962 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x3929 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 PUSH0 PUSH2 0x135D PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x394B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x39AD JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x39B8 DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x39D8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x39E3 DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x39F3 DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3A14 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x135D DUP2 PUSH2 0x3988 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3A2F JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x3A46 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3A5C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x3A73 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3A8C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3AA1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0xE0 DUP2 DUP8 SUB SLT ISZERO PUSH2 0x3AB2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3ACC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x3AD8 DUP7 DUP3 DUP8 ADD PUSH2 0x3A36 JUMP JUMPDEST SWAP5 SWAP8 SWAP1 SWAP7 POP SWAP4 SWAP5 POP POP POP POP JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x3B03 PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0x394B JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x3B15 DUP2 DUP10 PUSH2 0x394B 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 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3B6A JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0x3B4C 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 0x11B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH2 0xAD4 DUP2 PUSH2 0x3B7B JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3BAC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x3AB2 DUP2 PUSH2 0x3B7B JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0xC0 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x3BEA JUMPI PUSH2 0x3BEA PUSH2 0x3BB7 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 0x3BEA JUMPI PUSH2 0x3BEA PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0xA0 DUP2 ADD DUP2 DUP2 LT PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT OR ISZERO PUSH2 0x3BEA JUMPI PUSH2 0x3BEA PUSH2 0x3BB7 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 0x3C53 JUMPI PUSH2 0x3C53 PUSH2 0x3BB7 JUMP JUMPDEST PUSH1 0x40 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 GT ISZERO PUSH2 0x3C72 JUMPI PUSH2 0x3C72 PUSH2 0x3BB7 JUMP JUMPDEST POP PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3C90 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3CA5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x3CB5 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3CCE JUMPI PUSH2 0x3CCE PUSH2 0x3BB7 JUMP JUMPDEST DUP1 PUSH1 0x5 SHL PUSH1 0x40 MLOAD PUSH2 0x3CE2 PUSH1 0x20 DUP4 ADD DUP3 PUSH2 0x3C2E JUMP JUMPDEST SWAP2 DUP3 MSTORE PUSH1 0x20 DUP2 DUP5 ADD DUP2 ADD SWAP3 SWAP1 DUP2 ADD DUP8 DUP5 GT ISZERO PUSH2 0x3CFC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP6 ADD SWAP3 POP JUMPDEST DUP4 DUP4 LT ISZERO PUSH2 0x3D89 JUMPI DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3D20 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 ADD PUSH1 0x3F DUP2 ADD DUP10 SGT PUSH2 0x3D30 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP2 ADD CALLDATALOAD PUSH2 0x3D3E DUP2 PUSH2 0x3C5A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D4B DUP3 DUP3 PUSH2 0x3C2E JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 DUP5 DUP5 ADD ADD DUP13 LT ISZERO PUSH2 0x3D5F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 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 0x3D03 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP2 ADD PUSH1 0x4 DUP4 LT PUSH2 0x3DBC JUMPI PUSH2 0x3DBC PUSH2 0x3D94 JUMP JUMPDEST SWAP2 SWAP1 MSTORE SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 DUP5 SUB SLT DUP1 ISZERO PUSH2 0x3DD3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP SWAP1 SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x11B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x3DFF JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x3E0A DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH2 0x3E1A DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH2 0x3E38 DUP2 PUSH2 0x3DDB 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 PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3E67 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3ACC JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3E94 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x3E9F DUP2 PUSH2 0x3988 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x3EAF DUP2 PUSH2 0x3988 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x3ECC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x3AB2 DUP2 PUSH2 0x3988 JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3EE8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x3EFD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x3F09 DUP6 DUP3 DUP7 ADD PUSH2 0x3A36 JUMP JUMPDEST SWAP1 SWAP7 SWAP1 SWAP6 POP SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x3F29 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1364 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3F57 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFFFF DUP2 AND DUP2 EQ PUSH2 0x11B3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3F7D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x135D DUP2 PUSH2 0x3F5E JUMP JUMPDEST PUSH0 PUSH0 DUP4 CALLDATALOAD PUSH1 0x1E NOT DUP5 CALLDATASIZE SUB ADD DUP2 SLT PUSH2 0x3F9D JUMPI PUSH0 PUSH0 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 0x3FBB JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATASIZE SUB DUP3 SGT ISZERO PUSH2 0x3A73 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 DUP4 MSTORE DUP2 DUP2 PUSH1 0x20 DUP6 ADD CALLDATACOPY POP PUSH0 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 PUSH0 SWAP1 DUP6 ADD CALLDATALOAD PUSH2 0x4014 DUP2 PUSH2 0x3F5E JUMP JUMPDEST PUSH2 0xFFFF AND PUSH1 0x80 DUP4 ADD MSTORE PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH2 0x402B DUP2 PUSH2 0x3F5E JUMP JUMPDEST PUSH2 0xFFFF AND PUSH1 0xA0 DUP4 ADD MSTORE PUSH1 0x80 DUP6 ADD CALLDATALOAD PUSH2 0x4042 DUP2 PUSH2 0x3B7B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0x405C PUSH1 0xA0 DUP7 ADD PUSH2 0x3B8F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0xE0 DUP4 ADD MSTORE PUSH2 0x4077 PUSH1 0xC0 DUP7 ADD DUP7 PUSH2 0x3F88 JUMP JUMPDEST PUSH1 0xE0 PUSH2 0x100 DUP6 ADD MSTORE PUSH2 0x408E PUSH2 0x120 DUP6 ADD DUP3 DUP5 PUSH2 0x3FC9 JUMP JUMPDEST SWAP2 POP POP DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x27FA DUP2 DUP6 DUP8 PUSH2 0x3FC9 JUMP JUMPDEST DUP1 MLOAD PUSH1 0x14 DUP2 LT PUSH2 0xAD4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 MLOAD PUSH2 0xAD4 DUP2 PUSH2 0x3B7B JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x40CC JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x20 DUP4 ADD PUSH0 PUSH2 0x40DC DUP4 PUSH2 0x3C5A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x40E9 DUP3 DUP3 PUSH2 0x3C2E JUMP JUMPDEST DUP1 SWAP3 POP DUP5 DUP2 MSTORE DUP8 DUP6 DUP6 ADD GT ISZERO PUSH2 0x40FD JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x410B DUP6 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x3929 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH2 0xAD4 DUP2 PUSH2 0x3DDB JUMP JUMPDEST PUSH0 PUSH1 0xC0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4131 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x413D DUP2 PUSH2 0x3BCB JUMP JUMPDEST DUP1 SWAP2 POP DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4155 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 ADD PUSH1 0x40 DUP2 DUP7 SUB SLT ISZERO PUSH2 0x4166 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4172 DUP2 PUSH2 0x3BF0 JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4187 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4193 DUP8 DUP3 DUP6 ADD PUSH2 0x40BD JUMP JUMPDEST DUP3 MSTORE POP PUSH1 0x20 SWAP2 DUP3 ADD MLOAD DUP3 DUP3 ADD MSTORE DUP3 MSTORE PUSH2 0x41AD SWAP1 DUP5 ADD PUSH2 0x4116 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x41BE PUSH1 0x40 DUP5 ADD PUSH2 0x4116 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x41CF PUSH1 0x60 DUP5 ADD PUSH2 0x4116 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x41E0 PUSH1 0x80 DUP5 ADD PUSH2 0x40B2 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x41F1 PUSH1 0xA0 DUP5 ADD PUSH2 0x40B2 JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x420D JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4222 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH1 0xA0 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x4233 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x423F DUP2 PUSH2 0x3C0F JUMP JUMPDEST DUP2 MLOAD PUSH2 0x100 DUP2 LT PUSH2 0x424E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MSTORE PUSH2 0x425C PUSH1 0x20 DUP4 ADD PUSH2 0x40A4 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP3 DUP2 ADD MLOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x4277 PUSH1 0x60 DUP4 ADD PUSH2 0x40B2 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP3 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4294 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x42A0 DUP7 DUP3 DUP6 ADD PUSH2 0x4121 JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH0 DUP3 MLOAD PUSH2 0x100 DUP2 LT PUSH2 0x42C6 JUMPI PUSH2 0x42C6 PUSH2 0x3D94 JUMP JUMPDEST DUP1 PUSH1 0x20 DUP5 ADD MSTORE POP PUSH1 0x20 DUP4 ADD MLOAD PUSH1 0x14 DUP2 LT PUSH2 0x42E2 JUMPI PUSH2 0x42E2 PUSH2 0x3D94 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 0x4331 PUSH2 0x1C0 DUP7 ADD DUP3 PUSH2 0x394B 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 0x4360 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 0x29C7 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x43AA JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x135D DUP2 PUSH2 0x3B7B JUMP JUMPDEST PUSH0 PUSH1 0x3 RETURNDATASIZE GT ISZERO PUSH2 0x1ED5 JUMPI PUSH1 0x4 PUSH0 PUSH0 RETURNDATACOPY POP PUSH0 MLOAD PUSH1 0xE0 SHR SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x44 RETURNDATASIZE LT ISZERO PUSH2 0x43DA 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 0x4403 JUMPI POP POP SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x441E JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST RETURNDATASIZE DUP5 ADD PUSH1 0x3 NOT ADD DUP3 DUP3 ADD PUSH1 0x20 ADD GT ISZERO PUSH2 0x4438 JUMPI POP POP POP POP SWAP1 JUMP JUMPDEST PUSH2 0x4447 PUSH1 0x20 DUP3 DUP6 ADD ADD DUP6 PUSH2 0x3C2E JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0x7D6 JUMPI PUSH2 0x7D6 PUSH2 0x444F JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP3 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 SUB PUSH2 0x44A3 JUMPI PUSH2 0x44A3 PUSH2 0x444F 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 PUSH0 SWAP1 PUSH2 0x44D0 SWAP1 DUP4 ADD DUP7 DUP9 PUSH2 0x3FC9 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 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4511 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x7 DUP2 LT PUSH2 0x135D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x452F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x135D DUP2 PUSH2 0x3988 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x454A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x455F JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x456B DUP5 DUP3 DUP6 ADD PUSH2 0x40BD JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4583 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x135D DUP2 PUSH2 0x3B7B JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x4599 DUP2 PUSH2 0x3F5E 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 0x45BA DUP2 PUSH2 0x3F5E 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 0x45E2 DUP2 PUSH2 0x3B7B 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 POP POP JUMP JUMPDEST DUP4 DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0x29C7 PUSH1 0x40 DUP4 ADD DUP5 DUP7 PUSH2 0x3FC9 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4640 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP6 MLOAD PUSH1 0x20 DUP8 ADD MLOAD SWAP1 SWAP6 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x465D JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4669 DUP9 DUP3 DUP10 ADD PUSH2 0x40BD JUMP JUMPDEST SWAP5 POP POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4684 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4690 DUP9 DUP3 DUP10 ADD PUSH2 0x40BD JUMP JUMPDEST SWAP4 POP POP PUSH1 0x60 DUP7 ADD MLOAD PUSH2 0x46A1 DUP2 PUSH2 0x3988 JUMP JUMPDEST PUSH1 0x80 DUP8 ADD MLOAD SWAP1 SWAP3 POP PUSH2 0x46B2 DUP2 PUSH2 0x3B7B JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 SWAP1 SWAP4 POP JUMP JUMPDEST PUSH1 0x80 DUP2 MSTORE PUSH0 PUSH2 0x46D2 PUSH1 0x80 DUP4 ADD DUP8 PUSH2 0x394B 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 PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xFFFF DUP4 AND DUP1 PUSH2 0x4727 JUMPI PUSH2 0x4727 PUSH2 0x4700 JUMP JUMPDEST DUP1 PUSH2 0xFFFF DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH12 0x2BB930B83832B22BA4AA1D1 PUSH1 0xA5 SHL DUP2 MSTORE PUSH0 DUP3 MLOAD PUSH2 0x4771 DUP2 PUSH1 0xC DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x3929 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD PUSH1 0xC ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 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 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2208 JUMPI PUSH1 0x1F NOT DUP6 DUP5 SUB ADD DUP9 MSTORE PUSH2 0x47B6 DUP4 DUP4 MLOAD PUSH2 0x394B JUMP JUMPDEST PUSH1 0x20 SWAP9 DUP10 ADD SWAP9 SWAP1 SWAP4 POP SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x479A JUMP JUMPDEST PUSH1 0x40 DUP2 MSTORE PUSH0 PUSH2 0x47DE PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x477E JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x29C7 DUP2 DUP6 PUSH2 0x477E JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x7D6 JUMPI PUSH2 0x7D6 PUSH2 0x444F JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0x7D6 JUMPI PUSH2 0x7D6 PUSH2 0x444F JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x4828 JUMPI PUSH2 0x4828 PUSH2 0x4700 JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH2 0x483E DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x3929 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x44A3 JUMPI PUSH2 0x44A3 PUSH2 0x444F JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0x7D6 JUMPI PUSH2 0x7D6 PUSH2 0x444F JUMP JUMPDEST PUSH0 DUP4 MLOAD PUSH2 0x4887 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x3929 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 0x152A JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x48C9 JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x48E8 JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x48D5 JUMP JUMPDEST POP POP POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x4908 JUMPI PUSH2 0x4908 PUSH2 0x3BB7 JUMP JUMPDEST PUSH2 0x491C DUP2 PUSH2 0x4916 DUP5 SLOAD PUSH2 0x3F15 JUMP JUMPDEST DUP5 PUSH2 0x48A4 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x494E JUMPI PUSH0 DUP4 ISZERO PUSH2 0x4937 JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x48E8 JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x497D JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x495D JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x499A JUMPI DUP7 DUP5 ADD MLOAD PUSH0 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 0x667358221220512B720B044A9FEE312DFE SWAP7 0xDB 0x1E 0x24 0xAC 0xD2 0xB0 0x4B PUSH14 0x7E12D7A603F9E380745DF0FE6473 PUSH16 0x6C634300081C00330000000000000000 ","sourceMap":"1097:18203:28:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7185:111;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;178:32:51;;;160:51;;148:2;133:18;7185: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;3979:186::-;;;;;;;;;;-1:-1:-1;3979:186:7;;;;;:::i;:::-;;:::i;1919:36:28:-;;;;;;;;;;;;;;;2830:97:7;;;;;;;;;;-1:-1:-1;2908:12:7;;2830:97;;;2341:25:51;;;2329:2;2314:18;2830:97:7;2195:177:51;1336:178:1;;;;;;;;;;-1:-1:-1;1336:178:1;;;;;:::i;:::-;;:::i;:::-;;4757:244:7;;;;;;;;;;-1:-1:-1;4757:244:7;;;;;:::i;:::-;;:::i;1962:86:28:-;;;;;;;;;;;;;;;1611:184:1;;;;;;;;;;-1:-1:-1;1611:184:1;;;;;:::i;:::-;;:::i;6435:92:28:-;;;;;;;;;;-1:-1:-1;6435:92:28;;1504:1;3357:36:51;;3345:2;3330:18;6435:92:28;3215:184:51;2659:112:9;;;;;;;;;;;;;:::i;13683:137:28:-;;;;;;;;;;-1:-1:-1;13683:137:28;;;;;:::i;:::-;13802:9;-1:-1:-1;;;;;13776:36:28;;;;;;;13683:137;8850:166;;;;;;;;;;;;;:::i;8432:125::-;;;;;;;;;;;;;:::i;8565:113::-;;;;;;;;;;;;;:::i;11568:562::-;;;;;;:::i;:::-;;:::i;15760:1499::-;;;;;;;;;;-1:-1:-1;15760:1499:28;;;;;:::i;:::-;;:::i;8686:156::-;;;;;;;;;;;;;:::i;2985:116:7:-;;;;;;;;;;-1:-1:-1;2985:116:7;;;;;:::i;:::-;-1:-1:-1;;;;;3076:18:7;3050:7;3076:18;;;;;;;;;;;;2985:116;7304:278:28;;;;;;;;;;-1:-1:-1;7304:278:28;;;;;:::i;:::-;;:::i;2409:143:9:-;;;;;;;;;;-1:-1:-1;2409:143:9;;;;;:::i;:::-;;:::i;5243:557:19:-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;:::i;9543:152:28:-;;;;;;;;;;;;;:::i;:::-;;;;6749:13:51;;6764:6;6745:26;;;6727:45;;6832:4;6820:17;;;6814:24;6810:37;;;6788:20;;;6781:67;6896:17;;;6890:24;-1:-1:-1;;;;;6886:49:51;6864:20;;;6857:79;6715:2;6700:18;9543:152:28;6511:431:51;12138:1191:28;;;;;;;;;;-1:-1:-1;12138:1191:28;;;;;:::i;:::-;;:::i;1962:93:7:-;;;;;;;;;;;;;:::i;10453:403:28:-;;;;;;;;;;-1:-1:-1;10453:403:28;;;;;:::i;:::-;;:::i;11041:269::-;;;;;;;;;;-1:-1:-1;11041:269:28;;;;;:::i;:::-;;:::i;7590:834::-;;;;;;;;;;-1:-1:-1;7590:834:28;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3296:178:7:-;;;;;;;;;;-1:-1:-1;3296:178:7;;;;;:::i;:::-;;:::i;9262:273:28:-;;;;;;;;;;;;;:::i;9949:496::-;;;;;;;;;;-1:-1:-1;9949:496:28;;;;;:::i;:::-;;:::i;1683:672:9:-;;;;;;;;;;-1:-1:-1;1683:672:9;;;;;:::i;:::-;;:::i;14153:1239:28:-;;;;;;;;;;-1:-1:-1;14153:1239:28;;;;;:::i;:::-;;:::i;3532:140:7:-;;;;;;;;;;-1:-1:-1;3532:140:7;;;;;:::i;:::-;-1:-1:-1;;;;;3638:18:7;;;3612:7;3638:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3532:140;9024:230:28;;;;;;;;;;-1:-1:-1;9024:230:28;;;;;:::i;:::-;;:::i;4882:1298::-;;;;;;;;;;-1:-1:-1;4882:1298:28;;;;;:::i;:::-;;:::i;10864:169::-;;;;;;;;;;-1:-1:-1;10864:169:28;;;;;:::i;:::-;;:::i;2055:88::-;;;;;;;;;;;;;;;7185:111;7239:7;7266:11;:9;:11::i;:::-;:22;-1:-1:-1;;;;;7266:22:28;;7185:111;-1:-1:-1;7185:111:28:o;1026:213:1:-;1128:4;-1:-1:-1;;;;;;1151:41:1;;-1:-1:-1;;;1151:41:1;;:81;;-1:-1:-1;;;;;;;;;;862: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;3979:186::-;4052:4;735:10:12;4106:31:7;735:10:12;4122:7:7;4131:5;4106:8;:31::i;:::-;-1:-1:-1;4154:4:7;;3979:186;-1:-1:-1;;;3979: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;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;4757:244:7:-;4844:4;735:10:12;4900:37:7;4916:4;735:10:12;4931:5:7;4900:15;:37::i;:::-;4947:26;4957:4;4963:2;4967:5;4947:9;:26::i;:::-;-1:-1:-1;4990:4:7;;4757:244;-1:-1:-1;;;;4757: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;2659:112:9;2718:7;2744:20;:18;:20::i;:::-;2737:27;;2659:112;:::o;8850:166:28:-;8904:13;8937:71;1438:1;8971:13;:36;8937:11;:9;:11::i;:::-;:24;;;;;-1:-1:-1;;;;;;8937:33:28;;;:71::i;8432:125::-;8488:7;8515:11;:9;:11::i;:::-;:34;;;-1:-1:-1;;;;;8515:34:28;;8432:125;-1:-1:-1;8432:125:28:o;8565:113::-;8621:7;8648:11;:9;:11::i;:::-;:22;;;-1:-1:-1;;;8648:22:28;;-1:-1:-1;;;;;8648:22:28;;;-1:-1:-1;8565:113:28:o;11568:562::-;11756:206;;-1:-1:-1;;;11756:206:28;;-1:-1:-1;;;;;11834:9:28;15493:32:51;;11756:206:28;;;15475:51:51;11858:43:28;15562:32:51;15542:18;;;15535:60;15611:18;;;15604:34;;;11693:25:28;;11756:13;;:63;;15448:18:51;;11756:206:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11736:226;;-1:-1:-1;;11995:17:28;:84;11973:149;;;;-1:-1:-1;;;11973:149:28;;16086:2:51;11973:149:28;;;16068:21:51;16125:2;16105:18;;;16098:30;-1:-1:-1;;;16144:18:51;;;16137:44;16198:18;;11973:149:28;;;;;;;;;11568:562;;;:::o;15760:1499::-;15926:159;15988:11;:9;:11::i;:::-;:34;;:47;;;15949:35;;;;;;;;:::i;:::-;:86;;;;15926:159;;;;;;;;;;;;;-1:-1:-1;;;15926:159:28;;;:8;:159::i;:::-;16106:137;16129:68;16152:11;:9;:11::i;:::-;:44;;;16129:19;;;;35675:42:48;;35590:135;16129:68:28;16106:137;;;;;;;;;;;;;-1:-1:-1;;;16106:137:28;;;:8;:137::i;:::-;16389:102;;-1:-1:-1;;;16389:102:28;;16337:49;;-1:-1:-1;;;;;16389:9:28;:38;;;;:102;;16446:6;;16471:5;;;;16389:102;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16389:102:28;;;;;;;;;;;;:::i;:::-;16575;;-1:-1:-1;;;16575:102:28;;16337:154;;-1:-1:-1;16575:13:28;;:42;;:102;;16337:154;;16575:102;;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;16575:102:28;;;;;;;;-1:-1:-1;;16575:102:28;;;;;;;;;;;;:::i;:::-;;;16571:681;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;17147:16;17155:7;17147;:16::i;:::-;17097:88;16571:681;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17222:18;:16;:18::i;16571:681::-;16828:34;;;;;16881:33;;;;;16763:167;;-1:-1:-1;;;;;25244:31:51;;;25226:50;;25312:31;;;25307:2;25292:18;;25285:59;25360:18;;;25353:34;16763:167:28;;25199:18:51;16763:167:28;;;;;;;16982:13;16945:11;:9;:11::i;:::-;:34;;:50;;-1:-1:-1;;16945:50:28;-1:-1:-1;;;;;16945:50:28;;;;;;;;;;17048:34;;;;17010:11;:9;:11::i;:::-;:72;;-1:-1:-1;;;;;17010:72:28;;;;-1:-1:-1;;;17010:72:28;-1:-1:-1;;;;;17010:72:28;;;;;;;;;-1:-1:-1;16571:681:28;15915:1344;15760:1499;;;:::o;8686:156::-;8740:13;8773:61;-1:-1:-1;;;;;;8773:14:28;:23;8797:13;1438:1;8797:36;8773:23;:61::i;7304:278::-;7454:7;7486:11;:9;:11::i;:::-;:88;;;;:51;;:88;;-1:-1:-1;7486:88:28;;;;;7304:278::o;2409:143:9:-;-1:-1:-1;;;;;624:14:13;;2500:7:9;624:14:13;;;:7;:14;;;;;;2526:19:9;538:107:13;5243:557:19;5341:13;5368:18;5400:21;5435:15;5464:25;5503:12;5529:27;5632:13;:11;:13::i;:::-;5659:16;:14;:16::i;:::-;5767;;;5751:1;5767:16;;;;;;;;;-1:-1:-1;;;5581:212:19;;;-1:-1:-1;5581:212:19;;-1:-1:-1;5689:13:19;;-1:-1:-1;5724:4:19;;-1:-1:-1;5751:1:19;-1:-1:-1;5767:16:19;-1:-1:-1;5581:212:19;-1:-1:-1;5243:557:19:o;9543:152:28:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;9653:11:28;:9;:11::i;:::-;9646:41;;;;;;;;9653:34;;;;;9646:41;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9646:41:28;;;;;;;-1:-1:-1;9543:152:28:o;12138:1191::-;12249:19;-1:-1:-1;;;;;12308:32:28;;:23;735:10:12;12318:12:28;656:96:12;12308:23:28;:32;;12286:100;;;;-1:-1:-1;;;12286:100:28;;25600:2:51;12286:100:28;;;25582:21:51;25639:2;25619:18;;;25612:30;-1:-1:-1;;;25658:18:51;;;25651:48;25716:18;;12286:100:28;25398:342:51;12286:100:28;12397:30;12430:11;:9;:11::i;:::-;:34;;;-1:-1:-1;;;;;12430:34:28;;;;-1:-1:-1;12498:32:28;;;-1:-1:-1;12498:32:28;12476:105;;;;-1:-1:-1;;;12476:105:28;;25947:2:51;12476:105:28;;;25929:21:51;25986:2;25966:18;;;25959:30;26025:25;26005:18;;;25998:53;26068:18;;12476:105:28;25745:347:51;12476:105:28;12592:25;12620:113;12652:18;;12620:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;12686:13:28;1438:1;12686:36;;-1:-1:-1;12620:17:28;;-1:-1:-1;12620:113:28:i;:::-;12592:141;-1:-1:-1;;;;;;;12781:14:28;23431:38:48;;12767:13:28;;;23431:38:48;12744:97:28;;;;-1:-1:-1;;;12744:97:28;;26299:2:51;12744:97:28;;;26281:21:51;26338:2;26318:18;;;26311:30;-1:-1:-1;;;26357:18:51;;;26350:47;26414:18;;12744:97:28;26097:341:51;12744:97:28;12942:31;12968:5;12942:23;:31;:::i;:::-;12905:11;:9;:11::i;:::-;:34;;:68;;-1:-1:-1;;12905:68:28;-1:-1:-1;;;;;12905:68:28;;;;;;13039:26;;735:10:12;;13039:26:28;;:5;:26::i;:::-;13128:11;:9;:11::i;:::-;:22;;13125:25;;13128:22;;13125:25;;-1:-1:-1;;;13125:25:28;;-1:-1:-1;;;;;13125:25:28;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;13125:25:28;;;;;-1:-1:-1;;;;;13125:25:28;;;;;-1:-1:-1;;;;;13111:39:28;;;13192:129;13216:12;735:10:12;;656:96;13216:12:28;13244:18;;13278:5;13299:11;13192:129;;;;;;;;;;:::i;:::-;;;;;;;;12275:1054;;12138:1191;;;;;:::o;1962:93:7:-;2009:13;2041:7;2034:14;;;;;:::i;10453:403:28:-;2341:11;:9;:11::i;:::-;:22;-1:-1:-1;;;;;2341:22:28;735:10:12;-1:-1:-1;;;;;2325:38:28;;2303:101;;;;-1:-1:-1;;;2303:101:28;;;;;;;;;;;;10606:1:::1;10580:16;:23;:27;10573:35;;;;:::i;:::-;10665:16;10619:11;:9;:11::i;:::-;:43;;:62;;;;;;;;;;;;:::i;:::-;;10692:156;10734:16;10766:71;1438:1;10800:13;:36;10766:11;:9;:11::i;:71::-;10692:27;:156::i;:::-;10453:403:::0;:::o;11041:269::-;2341:11;:9;:11::i;:::-;:22;-1:-1:-1;;;;;2341:22:28;735:10:12;-1:-1:-1;;;;;2325:38:28;;2303:101;;;;-1:-1:-1;;;2303:101:28;;;;;;;;;;;;-1:-1:-1;;;;;11154:25:28;::::1;11147:33;;;;:::i;:::-;11243:11;-1:-1:-1::0;;;;;11196:59:28::1;11219:11;:9;:11::i;:::-;:22:::0;11196:59:::1;::::0;-1:-1:-1;;;;;11219:22:28;;::::1;::::0;11196:59:::1;::::0;11219:22:::1;::::0;11196:59:::1;11291:11;11266;:9;:11::i;:::-;:36:::0;;-1:-1:-1;;;;;;11266:36:28::1;-1:-1:-1::0;;;;;11266:36:28;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;11041:269:28:o;7590:834::-;7736:14;7768:29;7800:11;:9;:11::i;:::-;:112;;;;:51;;;;;:112;;;;;;;-1:-1:-1;7927:26:28;;;7923:494;;-1:-1:-1;7977:22:28;;7590:834;-1:-1:-1;;7590:834:28:o;7923:494::-;-1:-1:-1;;8031:21:28;:88;8027:390;;-1:-1:-1;8143:19:28;;7590:834;-1:-1:-1;;7590:834:28:o;8027:390::-;8282:25;8231:47;;-1:-1:-1;;;8231:47:28;;;;;2341:25:51;;;8231:9:28;-1:-1:-1;;;;;8231:24:28;;;;2314:18:51;;8231:47:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:76;;;;;;;;:::i;:::-;;:159;;8370:20;8231:159;;;8327:23;8231:159;8205:200;7590:834;-1:-1:-1;;;7590:834:28:o;8027:390::-;7757:667;7590:834;;;:::o;3296:178:7:-;3365:4;735:10:12;3419:27:7;735:10:12;3436:2:7;3440:5;3419:9;:27::i;9262:273:28:-;9342:12;9374:9;-1:-1:-1;;;;;9374:32:28;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;9374:75:28;;9468:11;:9;:11::i;:::-;:44;;;9374:153;;;;;;;;;;;;;2341:25:51;;2329:2;2314:18;;2195:177;9374:153:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9374:153:28;;;;;;;;;;;;:::i;9949:496::-;2341:11;:9;:11::i;:::-;:22;-1:-1:-1;;;;;2341:22:28;735:10:12;-1:-1:-1;;;;;2325:38:28;;2303:101;;;;-1:-1:-1;;;2303:101:28;;;;;;;;;;;;1707:1:::1;10096:22;;::::0;::::1;:9:::0;:22:::1;:::i;:::-;:63;;;;:168;;;;-1:-1:-1::0;1796:2:28::1;10180:28;::::0;;;::::1;::::0;::::1;;:::i;:::-;:84;;;;10096:168;:273;;;;-1:-1:-1::0;1883:11:28::1;10285:31;::::0;;;::::1;::::0;::::1;;:::i;:::-;-1:-1:-1::0;;;;;10285:84:28::1;;;10096:273;10075:305;;;;:::i;:::-;10428:9;10391:11;:9;:11::i;:::-;:34;;:46;::::0;:34;:46:::1;:::i;:::-;-1:-1:-1::0;;;9949:496:28:o;1683:672:9:-;1904:8;1886:15;:26;1882:97;;;1935:33;;-1:-1:-1;;;1935:33:9;;;;;2341:25:51;;;2314:18;;1935:33:9;2195:177:51;1882:97:9;1989:18;1024:95;2048:5;2055:7;2064:5;2071:16;2081:5;-1:-1:-1;;;;;1121:14:13;819:7;1121:14;;;:7;:14;;;;;:16;;;;;;;;;759:395;2071:16:9;2020:78;;;;;;30108:25:51;;;;-1:-1:-1;;;;;30169:32:51;;;30149:18;;;30142:60;30238:32;;;;30218:18;;;30211:60;30287:18;;;30280:34;30330:19;;;30323:35;30374:19;;;30367:35;;;30080:19;;2020:78:9;;;;;;;;;;;;2010:89;;;;;;1989:110;;2110:12;2125:28;2142:10;2125:16;:28::i;:::-;2110:43;;2164:14;2181:28;2195:4;2201:1;2204;2207;2181:13;:28::i;:::-;2164:45;;2233:5;-1:-1:-1;;;;;2223:15:9;:6;-1:-1:-1;;;;;2223:15:9;;2219:88;;2261:35;;-1:-1:-1;;;2261:35:9;;-1:-1:-1;;;;;30605:32:51;;;2261:35:9;;;30587:51:51;30674:32;;30654:18;;;30647:60;30560:18;;2261:35:9;30413:300:51;2219:88:9;2317:31;2326:5;2333:7;2342:5;2317:8;:31::i;:::-;1872:483;;;1683:672;;;;;;;:::o;14153:1239:28:-;14316:54;13802:9;-1:-1:-1;;;;;13776:36:28;14340:10;13776:36;14316:54;;;;;;;;;;;;;-1:-1:-1;;;14316:54:28;;;:8;:54::i;:::-;14387:111;;-1:-1:-1;;;14387:111:28;;:13;;:41;;:111;;14443:7;;14466:11;;;;14387:111;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14387:111:28;;;;;;;;;;;;:::i;:::-;;;14383:1002;;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;;;;;15280:16;15288:7;15280;:16::i;14383:1002::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15355:18;:16;:18::i;14383:1002::-;14762:145;14830:24;14805:19;14789:37;;;;;;:65;14762:145;;;;;;;;;;;;;-1:-1:-1;;;14762:145:28;;;:8;:145::i;:::-;14967:28;14973:13;14988:6;-1:-1:-1;;;;;14967:28:28;:5;:28::i;:::-;15046:169;15072:17;15109:13;15142:6;15168:32;15046:169;;;;;;;;;:::i;:::-;;;;;;;;14499:730;;;;;14153:1239;;;:::o;9024:230::-;9115:7;9142:104;9199:9;9224:11;9142:42;:104::i;4882:1298::-;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;5121:11:28::1;5096;:9;:11::i;:::-;:36:::0;;-1:-1:-1;;;;;;5096:36:28::1;-1:-1:-1::0;;;;;5096:36:28;;::::1;;::::0;;5148:47:::1;::::0;;;::::1;::::0;-1:-1:-1;;5148:47:28::1;::::0;-1:-1:-1;;5148:47:28::1;5363:319;;;;;;;;1438:1;5410:13;:36;:81;;1707:1;5410:81;;;5449:2;5410:81;5363:319;;::::0;;::::1;;5526:56;5581:1;1796:2;5526:56;:::i;:::-;5363:319;;::::0;;1883:11:::1;5363:319;::::0;;::::1;::::0;5326:11:::1;:9;:11::i;:::-;:356:::0;;:34:::1;::::0;;;::::1;:356:::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;::::0;-1:-1:-1;;;;;5326:356:28::1;::::0;::::1;-1:-1:-1::0;;5326:356:28::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;5326:356:28;;;;;;::::1;::::0;;;;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;5734:15:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5693:56;;1438:1;5803:13;:36;:135;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;5760:22;5783:1;5760:25;;;;;;;;:::i;:::-;;;;;;:189;;;;6006:22;5960:11;:9;:11::i;:::-;:43;;:68;;;;;;;;;;;;:::i;:::-;;6131:41;6152:19;;6131:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;6131:20:28::1;::::0;-1:-1:-1;;;6131:41:28:i:1;:::-;5043:1137;5068:14:2::0;5064:101;;;5098:23;;-1:-1:-1;;;;5098:23:2;;;5140:14;;-1:-1:-1;33137:50:51;;5140:14:2;;33125:2:51;33110:18;5140:14:2;32984:209:51;5064:101:2;4092:1079;;;;;4882:1298:28;;;:::o;10864:169::-;2341:11;:9;:11::i;:::-;:22;-1:-1:-1;;;;;2341:22:28;735:10:12;-1:-1:-1;;;;;2325:38:28;;2303:101;;;;-1:-1:-1;;;2303:101:28;;;;;;;;;;;;10984:41:::1;11005:19;;10984:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;10984:20:28::1;::::0;-1:-1:-1;;;10984:41:28:i:1;:::-;10864:169:::0;;:::o;19176:121::-;8116:25:30;;2659:112:9:o;8707:128:7:-;8791:37;8800:5;8807:7;8816:5;8823:4;8791:8;:37::i;6781:146:28:-;-1:-1:-1;;;;;6862:34:28;;-1:-1:-1;;;;;6862:34:28;6858:61;;6905:14;;-1:-1:-1;;;6905:14:28;;;;;;;;;;;7439:208:7;-1:-1:-1;;;;;7509:21:7;;7505:91;;7553:32;;-1:-1:-1;;;7553:32:7;;7582:1;7553:32;;;160:51:51;133:18;;7553:32:7;14:203:51;7505:91:7;7605:35;7621:1;7625:7;7634:5;7605:7;:35::i;10396:476::-;-1:-1:-1;;;;;3638:18:7;;;10495:24;3638:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10561:36:7;;10557:309;;;10636:5;10617:16;:24;10613:130;;;10668:60;;-1:-1:-1;;;10668:60:7;;-1:-1:-1;;;;;33418:32:51;;10668:60:7;;;33400:51:51;33467:18;;;33460:34;;;33510:18;;;33503:34;;;33373:18;;10668:60:7;33198:345:51;10613:130:7;10784:57;10793:5;10800:7;10828:5;10809:16;:24;10835:5;10784:8;:57::i;5374:300::-;-1:-1:-1;;;;;5457:18:7;;5453:86;;5498:30;;-1:-1:-1;;;5498:30:7;;5525:1;5498:30;;;160:51:51;133:18;;5498:30:7;14:203:51;5453:86:7;-1:-1:-1;;;;;5552:16:7;;5548:86;;5591:32;;-1:-1:-1;;;5591:32:7;;5620:1;5591:32;;;160:51:51;133:18;;5591:32:7;14:203:51;5548:86:7;5643:24;5651:4;5657:2;5661:5;5643:7;:24::i;7965:206::-;-1:-1:-1;;;;;8035:21:7;;8031:89;;8079:30;;-1:-1:-1;;;8079:30:7;;8106:1;8079:30;;;160:51:51;133:18;;8079:30:7;14:203:51;8031:89:7;8129:35;8137:7;8154:1;8158:5;8129: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;;;37010:25:51;4326:11:19;37051:18:51;;;37044:34;;;;4339:14:19;37094:18:51;;;37087:34;4355:13:19;37137:18:51;;;37130:34;4378:4:19;37180:19:51;;;37173:61;4268:7:19;;36982:19:51;;4304:80:19;;;;;;;;;;;;4294:91;;;;;;4287:98;;4213:179;;4017:184;3945:262;:::o;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;18158:146:28:-;18244:9;18239:58;;18270:15;18278:6;18312:201;18472:6;18404:89;;;;;;;;:::i;:::-;;;;-1:-1:-1;;18404:89:28;;;;;;;;;;-1:-1:-1;;;18376:129:28;;;;;;;:::i;18521:91::-;18574:30;;;;;;;;;;;;;;-1:-1:-1;;;18574:30:28;;;:7;:30::i;:::-;18521:91::o;6120:126:19:-;6166:13;6198:41;:5;6225:13;6198:26;:41::i;6572:135::-;6621:13;6653:47;:8;6683:16;6653: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;;34199:2:51;23581:75:48;;;34181:21:51;34238:2;34218:18;;;34211:30;-1:-1:-1;;;34257:18:51;;;34250:52;34319:18;;23581:75:48;33997: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;17615:535:28:-;17826:15;;;17839:1;17826:15;;;;;;;;;17796:27;;17826:15;;;;;;;;;;;;;;;;;;;;17796:45;;17869:14;:12;:14::i;:::-;17852:11;17864:1;17852:14;;;;;;;;:::i;:::-;;;;;;:31;;;;17911:19;17894:11;17906:1;17894:14;;;;;;;;:::i;:::-;;;;;;;;;;:36;17988:154;;-1:-1:-1;;;17988:154:28;;-1:-1:-1;;;;;17988:41:28;:74;;;;:154;;18081:11;;18111:16;;17988:154;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17941:11;:9;:11::i;:::-;:44;;:201;-1:-1:-1;;;17615:535:28:o;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;8167:433:30:-;8400:163;;-1:-1:-1;;;8400:163:30;;;;;35878:25:51;;;780:7:30;35919:18:51;;;35912:49;8270:7:30;;692:3;;-1:-1:-1;;;;;8400:37:30;;;;;35851:18:51;;8400:163:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8331:29;:48;8313:66;;8331:48;;;;;692:3;8313:66;:::i;:::-;8312:251;;;;:::i;:::-;8297:295;;;;:::i;9071:205:2:-;9129:30;;3147:66;9186:27;8819:122;18620:548:28;18782:24;18757:19;18741:37;;;;;;:65;18719:137;;;;-1:-1:-1;;;18719:137:28;;36602:2:51;18719:137:28;;;36584:21:51;36641:2;36621:18;;;36614:30;-1:-1:-1;;;36660:18:51;;;36653:52;36722:18;;18719:137:28;36400:346:51;18719:137:28;18872:33;18885:19;18872:33;;;;;;:::i;:::-;;;;;;;;18943:76;18961:19;1438:1;18982:13;:36;18943:17;:76::i;:::-;18916:11;:9;:11::i;:::-;:24;;:103;;-1:-1:-1;;;;;;18916:103:28;;;;;;;;;;;;19030:130;19072:11;:9;:11::i;:::-;:43;;19030:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19130:19;19030:27;:130::i;9682:432:7:-;-1:-1:-1;;;;;9794:19:7;;9790:89;;9836:32;;-1:-1:-1;;;9836:32:7;;9865:1;9836:32;;;160:51:51;133:18;;9836:32:7;14:203:51;9790:89:7;-1:-1:-1;;;;;9892:21:7;;9888:90;;9936:31;;-1:-1:-1;;;9936:31:7;;9964:1;9936:31;;;160:51:51;133:18;;9936:31:7;14:203:51;9888:90:7;-1:-1:-1;;;;;9987:18:7;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10032:76;;;;10082:7;-1:-1:-1;;;;;10066:31:7;10075:5;-1:-1:-1;;;;;10066:31:7;;10091:5;10066:31;;;;2341:25:51;;2329:2;2314:18;;2195:177;10066:31:7;;;;;;;;9682:432;;;;:::o;5989:1107::-;-1:-1:-1;;;;;6078:18:7;;6074:540;;6230:5;6214:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6074:540:7;;-1:-1:-1;6074:540:7;;-1:-1:-1;;;;;6288:15:7;;6266:19;6288:15;;;;;;;;;;;6321:19;;;6317:115;;;6367:50;;-1:-1:-1;;;6367:50:7;;-1:-1:-1;;;;;33418:32:51;;6367:50:7;;;33400:51:51;33467:18;;;33460:34;;;33510:18;;;33503:34;;;33373:18;;6367:50:7;33198:345:51;6317:115:7;-1:-1:-1;;;;;6552:15:7;;:9;:15;;;;;;;;;;6570:19;;;;6552:37;;6074:540;-1:-1:-1;;;;;6628:16:7;;6624:425;;6791:12;:21;;;;;;;6624:425;;;-1:-1:-1;;;;;7002:13:7;;:9;:13;;;;;;;;;;:22;;;;;;6624:425;7079:2;-1:-1:-1;;;;;7064:25:7;7073:4;-1:-1:-1;;;;;7064:25:7;;7083:5;7064:25;;;;2341::51;;2329:2;2314:18;;2195:177;7064:25:7;;;;;;;;5989:1107;;;:::o;2579:183:46:-;2723:22;;2681:13;37390:15:51;;;-1:-1:-1;;;;;;37386:53:51;2723:22:46;;;37374:66:51;2681:13:46;2714:40;;37456:12:51;;2723:22:46;;;;;;;;;;;;2747:6;2714:8;:40::i;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;;;;;;;;;38000:25:51;;;38073:4;38061:17;;38041:18;;;38034:45;;;;38095:18;;;38088:34;;;38138:18;;;38131:34;;;6541:24:18;;37972: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;;38378:2:51;7378:112:46;;;38360:21:51;38417:2;38397:18;;;38390:30;38456:31;38436:18;;;38429:59;38505:18;;7378:112:46;38176: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;;38736:2:51;7618:148:46;;;38718:21:51;38775:2;38755:18;;;38748:30;-1:-1:-1;;;38794:18:51;;;38787:48;38852:18;;7618:148:46;38534: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;;39083:2:51;7842:214:46;;;39065:21:51;39122:2;39102:18;;;39095:30;-1:-1:-1;;;39141:18:51;;;39134:52;39203:18;;7842:214:46;38881: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;;39434:2:51;8468:55:46;;;39416:21:51;39473:2;39453:18;;;39446:30;39512;39492:18;;;39485:58;39560:18;;8468:55:46;39232: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;;39791:2:51;8595:115:46;;;39773:21:51;39830:2;39810:18;;;39803:30;-1:-1:-1;;;39849:18:51;;;39842:52;39911:18;;8595:115:46;39589: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;;40142:2:51;5693:67:46;;;40124:21:51;40181:2;40161:18;;;40154:30;-1:-1:-1;;;40200:18:51;;;40193:50;40260:18;;5693:67:46;39940: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;;40491:2:51;5883:57:46;;;40473:21:51;40530:2;40510:18;;;40503:30;40569:29;40549:18;;;40542:57;40616:18;;5883:57:46;40289: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;-1:-1:-1;11563:50:46;-1:-1:-1;11631:8:46;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;;41173:2:51;12439:166:46;;;41155:21:51;41212:2;41192:18;;;41185:30;41251:34;41231:18;;;41224:62;-1:-1:-1;;;41302:18:51;;;41295:52;41364:19;;12439:166:46;40971: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;;41999:2:51;13232:156:46;;;41981:21:51;42038:2;42018:18;;;42011:30;42077:34;42057:18;;;42050:62;-1:-1:-1;;;42128:18:51;;;42121:35;42173:19;;13232:156:46;41797: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;;-1:-1:-1;10671:6:46;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;9744:1;9733:12;;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;3586:247::-;3645:6;3698:2;3686:9;3677:7;3673:23;3669:32;3666:52;;;3714:1;3711;3704:12;3666:52;3753:9;3740:23;3772:31;3797:5;3772:31;:::i;3838:263::-;3934:6;3987:2;3975:9;3966:7;3962:23;3958:32;3955:52;;;4003:1;4000;3993:12;3955:52;-1:-1:-1;4048:23:51;;3838:263;-1:-1:-1;3838:263:51:o;4106:347::-;4157:8;4167:6;4221:3;4214:4;4206:6;4202:17;4198:27;4188:55;;4239:1;4236;4229:12;4188:55;-1:-1:-1;4262:20:51;;-1:-1:-1;;;;;4294:30:51;;4291:50;;;4337:1;4334;4327:12;4291:50;4374:4;4366:6;4362:17;4350:29;;4426:3;4419:4;4410:6;4402;4398:19;4394:30;4391:39;4388:59;;;4443:1;4440;4433:12;4388:59;4106:347;;;;;:::o;4458:698::-;4572:6;4580;4588;4641:2;4629:9;4620:7;4616:23;4612:32;4609:52;;;4657:1;4654;4647:12;4609:52;4697:9;4684:23;-1:-1:-1;;;;;4722:6:51;4719:30;4716:50;;;4762:1;4759;4752:12;4716:50;4785:22;;4841:3;4823:16;;;4819:26;4816:46;;;4858:1;4855;4848:12;4816:46;4881:2;-1:-1:-1;4936:2:51;4921:18;;4908:32;-1:-1:-1;;;;;4952:32:51;;4949:52;;;4997:1;4994;4987:12;4949:52;5036:60;5088:7;5077:8;5066:9;5062:24;5036:60;:::i;:::-;4458:698;;5115:8;;-1:-1:-1;5010:86:51;;-1:-1:-1;;;;4458:698:51:o;5161:1238::-;5567:3;5562;5558:13;5550:6;5546:26;5535:9;5528:45;5609:3;5604:2;5593:9;5589:18;5582:31;5509:4;5636:46;5677:3;5666:9;5662:19;5654:6;5636:46;:::i;:::-;5730:9;5722:6;5718:22;5713:2;5702:9;5698:18;5691:50;5764:33;5790:6;5782;5764:33;:::i;:::-;5828:2;5813:18;;5806:34;;;-1:-1:-1;;;;;5877:32:51;;5871:3;5856:19;;5849:61;5897:3;5926:19;;5919:35;;;5991:22;;;5985:3;5970:19;;5963:51;6063:13;;6085:22;;;6135:2;6161:15;;;;-1:-1:-1;6123:15:51;;;;-1:-1:-1;6204:169:51;6218:6;6215:1;6212:13;6204:169;;;6279:13;;6267:26;;6322:2;6348:15;;;;6313:12;;;;6240:1;6233:9;6204:169;;;-1:-1:-1;6390:3:51;;5161:1238;-1:-1:-1;;;;;;;;;;;5161:1238:51:o;6947:129::-;-1:-1:-1;;;;;7025:5:51;7021:30;7014:5;7011:41;7001:69;;7066:1;7063;7056:12;7081:132;7148:20;;7177:30;7148:20;7177:30;:::i;7218:543::-;7297:6;7305;7313;7366:2;7354:9;7345:7;7341:23;7337:32;7334:52;;;7382:1;7379;7372:12;7334:52;7421:9;7408:23;7440:30;7464:5;7440:30;:::i;7766:127::-;7827:10;7822:3;7818:20;7815:1;7808:31;7858:4;7855:1;7848:15;7882:4;7879:1;7872:15;7898:225;7984:4;7976:6;7972:17;8055:6;8043:10;8040:22;-1:-1:-1;;;;;8007:10:51;8004:34;8001:62;7998:88;;;8066:18;;:::i;:::-;8102:2;8095:22;-1:-1:-1;7898:225:51:o;8128:223::-;8214:2;8206:6;8202:15;8283:6;8271:10;8268:22;-1:-1:-1;;;;;8235:10:51;8232:34;8229:62;8226:88;;;8294:18;;:::i;8356:225::-;8442:4;8434:6;8430:17;8513:6;8501:10;8498:22;-1:-1:-1;;;;;8465:10:51;8462:34;8459:62;8456:88;;;8524:18;;:::i;8586:249::-;8696:2;8677:13;;-1:-1:-1;;8673:27:51;8661:40;;-1:-1:-1;;;;;8716:34:51;;8752:22;;;8713:62;8710:88;;;8778:18;;:::i;:::-;8814:2;8807:22;-1:-1:-1;;8586:249:51:o;8840:187::-;8889:4;-1:-1:-1;;;;;8914:6:51;8911:30;8908:56;;;8944:18;;:::i;:::-;-1:-1:-1;9010:2:51;8989:15;-1:-1:-1;;8985:29:51;9016:4;8981:40;;8840:187::o;9032:1646::-;9126:6;9179:2;9167:9;9158:7;9154:23;9150:32;9147:52;;;9195:1;9192;9185:12;9147:52;9235:9;9222:23;-1:-1:-1;;;;;9260:6:51;9257:30;9254:50;;;9300:1;9297;9290:12;9254:50;9323:22;;9376:4;9368:13;;9364:27;-1:-1:-1;9354:55:51;;9405:1;9402;9395:12;9354:55;9445:2;9432:16;-1:-1:-1;;;;;9463:6:51;9460:30;9457:56;;;9493:18;;:::i;:::-;9539:6;9536:1;9532:14;9575:2;9569:9;9587:40;9623:2;9619;9615:11;9607:6;9587:40;:::i;:::-;9662:22;;;9712:2;9742:11;;;9738:20;;;9662:22;9700:15;;9770:19;;;9767:39;;;9802:1;9799;9792:12;9767:39;9834:2;9830;9826:11;9815:22;;9846:801;9862:6;9857:3;9854:15;9846:801;;;9948:3;9935:17;-1:-1:-1;;;;;9971:11:51;9968:35;9965:55;;;10016:1;10013;10006:12;9965:55;10043:20;;10098:2;10090:11;;10086:25;-1:-1:-1;10076:53:51;;10125:1;10122;10115:12;10076:53;10179:2;10175;10171:11;10158:25;10206:38;10235:8;10206:38;:::i;:::-;10279:2;10273:9;10295:33;10325:2;10315:8;10295:33;:::i;:::-;10341:26;;;10386:35;10394:17;;;10386:35;10383:48;-1:-1:-1;10380:68:51;;;10444:1;10441;10434:12;10380:68;10506:8;10501:2;10497;10493:11;10488:2;10478:8;10474:17;10461:54;10569:1;10564:2;10553:8;10543;10539:23;10535:32;10528:43;10596:8;10591:3;10584:21;;;;;10634:2;10629:3;10625:12;10618:19;;9888:2;9883:3;9879:12;9872:19;;9846:801;;;-1:-1:-1;10666:6:51;9032:1646;-1:-1:-1;;;;;;9032:1646:51:o;10683:127::-;10744:10;10739:3;10735:20;10732:1;10725:31;10775:4;10772:1;10765:15;10799:4;10796:1;10789:15;10815:250;10966:2;10951:18;;10999:1;10988:13;;10978:47;;11005:18;;:::i;:::-;11034:25;;;10815:250;:::o;11293:240::-;11389:6;11449:2;11437:9;11428:7;11424:23;11420:32;11464:2;11461:22;;;11479:1;11476;11469:12;11461:22;-1:-1:-1;11518:9:51;;11293:240;-1:-1:-1;;11293:240:51:o;11538:114::-;11622:4;11615:5;11611:16;11604:5;11601:27;11591:55;;11642:1;11639;11632:12;11657:1009;11768:6;11776;11784;11792;11800;11808;11816;11869:3;11857:9;11848:7;11844:23;11840:33;11837:53;;;11886:1;11883;11876:12;11837:53;11925:9;11912:23;11944:31;11969:5;11944:31;:::i;:::-;11994:5;-1:-1:-1;12051:2:51;12036:18;;12023:32;12064:33;12023:32;12064:33;:::i;:::-;12116:7;-1:-1:-1;12196:2:51;12181:18;;12168:32;;-1:-1:-1;12299:2:51;12284:18;;12271:32;;-1:-1:-1;12381:3:51;12366:19;;12353:33;12395:31;12353:33;12395:31;:::i;:::-;11657:1009;;;;-1:-1:-1;11657:1009:51;;;;12445:7;12525:3;12510:19;;12497:33;;-1:-1:-1;12629:3:51;12614:19;;;12601:33;;11657:1009;-1:-1:-1;;11657:1009:51:o;12671:523::-;12750:6;12758;12766;12819:2;12807:9;12798:7;12794:23;12790:32;12787:52;;;12835:1;12832;12825:12;12787:52;12880:23;;;-1:-1:-1;12978:2:51;12963:18;;12950:32;-1:-1:-1;;;;;12994:30:51;;12991:50;;;13037:1;13034;13027:12;13199:388;13267:6;13275;13328:2;13316:9;13307:7;13303:23;13299:32;13296:52;;;13344:1;13341;13334:12;13296:52;13383:9;13370:23;13402:31;13427:5;13402:31;:::i;:::-;13452:5;-1:-1:-1;13509:2:51;13494:18;;13481:32;13522:33;13481:32;13522:33;:::i;:::-;13574:7;13564:17;;;13199:388;;;;;:::o;13823:545::-;13903:6;13911;13919;13972:2;13960:9;13951:7;13947:23;13943:32;13940:52;;;13988:1;13985;13978:12;13940:52;14027:9;14014:23;14046:31;14071:5;14046:31;:::i;14373:410::-;14444:6;14452;14505:2;14493:9;14484:7;14480:23;14476:32;14473:52;;;14521:1;14518;14511:12;14473:52;14561:9;14548:23;-1:-1:-1;;;;;14586:6:51;14583:30;14580:50;;;14626:1;14623;14616:12;14580:50;14665:58;14715:7;14706:6;14695:9;14691:22;14665:58;:::i;:::-;14742:8;;14639:84;;-1:-1:-1;14373:410:51;-1:-1:-1;;;;14373:410:51:o;14788:380::-;14867:1;14863:12;;;;14910;;;14931:61;;14985:4;14977:6;14973:17;14963:27;;14931:61;15038:2;15030:6;15027:14;15007:18;15004:38;15001:161;;15084:10;15079:3;15075:20;15072:1;15065:31;15119:4;15116:1;15109:15;15147:4;15144:1;15137:15;15649:230;15719:6;15772:2;15760:9;15751:7;15747:23;15743:32;15740:52;;;15788:1;15785;15778:12;15740:52;-1:-1:-1;15833:16:51;;15649:230;-1:-1:-1;15649:230:51:o;16227:117::-;16312:6;16305:5;16301:18;16294:5;16291:29;16281:57;;16334:1;16331;16324:12;16349:245;16407:6;16460:2;16448:9;16439:7;16435:23;16431:32;16428:52;;;16476:1;16473;16466:12;16428:52;16515:9;16502:23;16534:30;16558:5;16534:30;:::i;16599:500::-;16657:5;16664:6;16724:3;16711:17;16810:2;16806:7;16795:8;16779:14;16775:29;16771:43;16751:18;16747:68;16737:96;;16829:1;16826;16819:12;16737:96;16857:33;;16961:4;16948:18;;;-1:-1:-1;16909:21:51;;-1:-1:-1;;;;;;16978:30:51;;16975:50;;;17021:1;17018;17011:12;16975:50;17068:6;17052:14;17048:27;17041:5;17037:39;17034:59;;;17089:1;17086;17079:12;17104:266;17192:6;17187:3;17180:19;17244:6;17237:5;17230:4;17225:3;17221:14;17208:43;-1:-1:-1;17296:1:51;17271:16;;;17289:4;17267:27;;;17260:38;;;;17352:2;17331:15;;;-1:-1:-1;;17327:29:51;17318:39;;;17314:50;;17104:266::o;17375:1440::-;17628:2;17610:21;;;17672:20;;17708:18;;;17701:33;17804:4;17792:17;;17779:31;17841:2;17826:18;;17819:35;17591:4;;17891:15;;17878:29;17916:32;17878:29;17916:32;:::i;:::-;17998:6;17985:20;17979:3;17964:19;;17957:49;18055:2;18043:15;;18030:29;18068:32;18030:29;18068:32;:::i;:::-;18150:6;18137:20;18131:3;18116:19;;18109:49;18207:3;18195:16;;18182:30;18221:32;18182:30;18221:32;:::i;:::-;-1:-1:-1;;;;;18290:32:51;18284:3;18269:19;;18262:61;18352:35;18382:3;18370:16;;18352:35;:::i;:::-;-1:-1:-1;;;;;6469:30:51;18443:4;18428:20;;6457:43;18494:56;18545:3;18533:16;;18537:6;18494:56;:::i;:::-;18587:4;18581:3;18570:9;18566:19;18559:33;18612:76;18683:3;18672:9;18668:19;18654:12;18638:14;18612:76;:::i;:::-;18601:87;;;18735:9;18730:3;18726:19;18719:4;18708:9;18704:20;18697:49;18763:46;18805:3;18797:6;18789;18763:46;:::i;18820:160::-;18911:13;;18953:2;18943:13;;18933:41;;18970:1;18967;18960:12;18985:160;19087:13;;19109:30;19087:13;19109:30;:::i;19150:569::-;19203:5;19256:3;19249:4;19241:6;19237:17;19233:27;19223:55;;19274:1;19271;19264:12;19223:55;19307:6;19301:13;19346:4;19338:6;19334:17;19375:1;19395:36;19424:6;19395:36;:::i;:::-;19460:2;19454:9;19472:31;19500:2;19492:6;19472:31;:::i;:::-;19523:6;19512:17;;19553:6;19545;19538:22;19593:3;19584:6;19579:3;19575:16;19572:25;19569:45;;;19610:1;19607;19600:12;19569:45;19623:66;19682:6;19675:4;19667:6;19663:17;19658:3;19623:66;:::i;:::-;19707:6;19150:569;-1:-1:-1;;;;;;;19150:569:51:o;19724:134::-;19801:13;;19823:29;19801:13;19823:29;:::i;19863:1272::-;19925:5;19973:4;19961:9;19956:3;19952:19;19948:30;19945:50;;;19991:1;19988;19981:12;19945:50;20024:2;20018:9;20036:32;20061:6;20036:32;:::i;:::-;20086:6;20077:15;;20121:9;20115:16;-1:-1:-1;;;;;20146:6:51;20143:30;20140:50;;;20186:1;20183;20176:12;20140:50;20209:22;;20261:2;20247:12;;;20243:21;20240:41;;;20277:1;20274;20267:12;20240:41;20312:2;20306:9;20324:34;20349:8;20324:34;:::i;:::-;20389:2;20383:9;-1:-1:-1;;;;;20407:8:51;20404:32;20401:52;;;20449:1;20446;20439:12;20401:52;20479:51;20526:3;20515:8;20511:2;20507:17;20479:51;:::i;:::-;20462:69;;-1:-1:-1;20590:2:51;20582:11;;;20576:18;20610:17;;;20603:34;20646:24;;20703:47;;20731:18;;20703:47;:::i;:::-;20698:2;20690:6;20686:15;20679:72;20784:47;20827:2;20816:9;20812:18;20784:47;:::i;:::-;20779:2;20771:6;20767:15;20760:72;20865:47;20908:2;20897:9;20893:18;20865:47;:::i;:::-;20860:2;20852:6;20848:15;20841:72;20947:73;21015:3;21004:9;21000:19;20947:73;:::i;:::-;20941:3;20933:6;20929:16;20922:99;21055:73;21123:3;21112:9;21108:19;21055:73;:::i;:::-;21049:3;21041:6;21037:16;21030:99;;19863:1272;;;;:::o;21140:1075::-;21239:6;21292:2;21280:9;21271:7;21267:23;21263:32;21260:52;;;21308:1;21305;21298:12;21260:52;21341:9;21335:16;-1:-1:-1;;;;;21366:6:51;21363:30;21360:50;;;21406:1;21403;21396:12;21360:50;21429:22;;21485:4;21467:16;;;21463:27;21460:47;;;21503:1;21500;21493:12;21460:47;21536:2;21530:9;21548:32;21573:6;21548:32;:::i;:::-;21608:2;21602:9;21640:3;21633:5;21630:14;21620:42;;21658:1;21655;21648:12;21620:42;21671:21;;21725:54;21775:2;21767:11;;21725:54;:::i;:::-;21720:2;21708:15;;21701:79;21839:2;21831:11;;;21825:18;21859:15;;;21852:32;21917:65;21978:2;21970:11;;21917:65;:::i;:::-;21912:2;21904:6;21900:15;21893:90;22022:3;22018:2;22014:12;22008:19;-1:-1:-1;;;;;22042:8:51;22039:32;22036:52;;;22084:1;22081;22074:12;22036:52;22122:61;22175:7;22164:8;22160:2;22156:17;22122:61;:::i;:::-;22116:3;22104:16;;22097:87;-1:-1:-1;22108:6:51;21140:1075;-1:-1:-1;;;;21140:1075:51:o;22220:1662::-;22415:2;22404:9;22397:21;22378:4;22443:6;22437:13;22476:3;22472:2;22469:11;22459:45;;22484:18;;:::i;:::-;22540:2;22535;22524:9;22520:18;22513:30;;22590:2;22582:6;22578:15;22572:22;22630:2;22616:12;22613:20;22603:54;;22637:18;;:::i;:::-;22693:12;22688:2;22677:9;22673:18;22666:40;;22760:2;22752:6;22748:15;22742:22;22737:2;22726:9;22722:18;22715:50;-1:-1:-1;;;;;22824:2:51;22816:6;22812:15;22806:22;22802:47;22796:3;22785:9;22781:19;22774:76;22899:3;22891:6;22887:16;22881:23;22942:4;22935;22924:9;22920:20;22913:34;22984:14;22978:21;23036:3;23030;23019:9;23015:19;23008:32;23077:14;23071:21;23129:2;23123:3;23112:9;23108:19;23101:31;23155:54;23204:3;23193:9;23189:19;23173:14;23155:54;:::i;:::-;23272:2;23252:23;;;23246:30;23240:3;23225:19;;23218:59;23324:23;;;23318:30;23350:4;23314:41;23308:3;23293:19;;23286:70;-1:-1:-1;23413:2:51;23393:23;;23387:30;;23426:53;23474:3;23459:19;;23387:30;3202:4;3191:16;3179:29;;3135:75;23426:53;23536:2;23516:23;;23510:30;3202:4;3191:16;23597:3;23582:19;;3179:29;23659:3;23639:24;;23633:31;-1:-1:-1;;;;;6469:30:51;;;23722:3;23707:19;;6457:43;23784:4;23764:25;;;23758:32;6469:30;;;23848:3;23833:19;;6457:43;23633:31;-1:-1:-1;23799:54:51;6404:102;23887:249;23956:6;24009:2;23997:9;23988:7;23984:23;23980:32;23977:52;;;24025:1;24022;24015:12;23977:52;24057:9;24051:16;24076:30;24100:5;24076:30;:::i;24141:179::-;24176:3;24218:1;24200:16;24197:23;24194:120;;;24264:1;24261;24258;24243:23;-1:-1:-1;24301:1:51;24295:8;24290:3;24286:18;24141:179;:::o;24325:628::-;24364:3;24406:4;24388:16;24385:26;24382:39;;;24325:628;:::o;24382:39::-;24448:2;24442:9;24488:16;-1:-1:-1;;24484:29:51;24481:1;24442:9;24460:54;24543:4;24537:11;24617:16;24610:4;24602:6;24598:17;24595:39;-1:-1:-1;;;;;24566:6:51;24563:30;24560:75;24557:88;;;24638:5;;24325:628;:::o;24557:88::-;24675:6;24669:4;24665:17;24711:3;24705:10;-1:-1:-1;;;;;24730:6:51;24727:30;24724:43;;;24760:5;;;;24325:628;:::o;24724:43::-;24825:16;24815:27;;-1:-1:-1;;24811:40:51;24786:16;;;24804:4;24782:27;24779:73;24776:86;;;24855:5;;;;24325:628;:::o;24776:86::-;24871:57;24922:4;24913:6;24905;24901:19;24897:30;24891:4;24871:57;:::i;:::-;-1:-1:-1;24944:3:51;24325:628;-1:-1:-1;;;24325:628:51:o;26443:127::-;26504:10;26499:3;26495:20;26492:1;26485:31;26535:4;26532:1;26525:15;26559:4;26556:1;26549:15;26575:194;-1:-1:-1;;;;;26673:26:51;;;26645;;;26641:59;;26712:28;;26709:54;;;26743:18;;:::i;26774:204::-;26812:3;-1:-1:-1;;;;;26849:5:51;26845:30;-1:-1:-1;;;;;26890:7:51;26887:31;26884:57;;26921:18;;:::i;:::-;26970:1;26957:15;;26774:204;-1:-1:-1;;26774:204:51:o;26983:511::-;-1:-1:-1;;;;;27225:32:51;;27207:51;;27294:3;27289:2;27274:18;;27267:31;;;-1:-1:-1;;27315:62:51;;27357:19;;27349:6;27341;27315:62;:::i;:::-;-1:-1:-1;;;;;27413:31:51;;;;27408:2;27393:18;;27386:59;-1:-1:-1;27476:2:51;27461:18;27454:34;27307:70;26983:511;-1:-1:-1;;;26983:511:51:o;27499:127::-;27560:10;27555:3;27551:20;27548:1;27541:31;27591:4;27588:1;27581:15;27615:4;27612:1;27605:15;27631:277;27718:6;27771:2;27759:9;27750:7;27746:23;27742:32;27739:52;;;27787:1;27784;27777:12;27739:52;27819:9;27813:16;27858:1;27851:5;27848:12;27838:40;;27874:1;27871;27864:12;27913:284;28016:6;28069:2;28057:9;28048:7;28044:23;28040:32;28037:52;;;28085:1;28082;28075:12;28037:52;28117:9;28111:16;28136:31;28161:5;28136:31;:::i;28415:335::-;28494:6;28547:2;28535:9;28526:7;28522:23;28518:32;28515:52;;;28563:1;28560;28553:12;28515:52;28596:9;28590:16;-1:-1:-1;;;;;28621:6:51;28618:30;28615:50;;;28661:1;28658;28651:12;28615:50;28684:60;28736:7;28727:6;28716:9;28712:22;28684:60;:::i;:::-;28674:70;28415:335;-1:-1:-1;;;;28415:335:51:o;28755:245::-;28813:6;28866:2;28854:9;28845:7;28841:23;28837:32;28834:52;;;28882:1;28879;28872:12;28834:52;28921:9;28908:23;28940:30;28964:5;28940:30;:::i;29005:811::-;29191:5;29178:19;29206:32;29230:7;29206:32;:::i;:::-;29270:6;29261:7;29257:20;29247:30;;29302:4;29296:11;29353:2;29344:5;29340:10;29336:2;29332:19;29329:27;29323:4;29316:41;29405:2;29398:5;29394:14;29381:28;29418:32;29442:7;29418:32;:::i;:::-;29497:10;29487:7;29483:2;29479:16;29475:33;29459:49;;29567:8;29562:2;29548:10;29544:15;29540:2;29536:24;29533:32;29530:46;29524:4;29517:60;29625:2;29618:5;29614:14;29601:28;29638:32;29662:7;29638:32;:::i;:::-;29781:26;29771:7;29767:2;29763:16;29759:49;29753:2;29723:26;29719:31;29715:2;29711:40;29708:48;29698:8;29695:62;29692:117;29686:4;29679:131;;;;;29005:811;;:::o;30718:323::-;30911:6;30900:9;30893:25;30954:2;30949;30938:9;30934:18;30927:30;30874:4;30974:61;31031:2;31020:9;31016:18;31008:6;31000;30974:61;:::i;31046:967::-;31208:6;31216;31224;31232;31240;31293:3;31281:9;31272:7;31268:23;31264:33;31261:53;;;31310:1;31307;31300:12;31261:53;31355:16;;31439:2;31424:18;;31418:25;31355:16;;-1:-1:-1;;;;;;31455:30:51;;31452:50;;;31498:1;31495;31488:12;31452:50;31521:60;31573:7;31564:6;31553:9;31549:22;31521:60;:::i;:::-;31511:70;;;31627:2;31616:9;31612:18;31606:25;-1:-1:-1;;;;;31646:8:51;31643:32;31640:52;;;31688:1;31685;31678:12;31640:52;31711:62;31765:7;31754:8;31743:9;31739:24;31711:62;:::i;:::-;31701:72;;;31818:2;31807:9;31803:18;31797:25;31831:33;31856:7;31831:33;:::i;:::-;31935:3;31920:19;;31914:26;31883:7;;-1:-1:-1;31949:32:51;31914:26;31949:32;:::i;:::-;32000:7;31990:17;;;31046:967;;;;;;;;:::o;32018:522::-;32287:3;32276:9;32269:22;32250:4;32308:46;32349:3;32338:9;32334:19;32326:6;32308:46;:::i;:::-;-1:-1:-1;;;;;32390:32:51;;;;32385:2;32370:18;;32363:60;-1:-1:-1;;;;;;32459:31:51;;;;32454:2;32439:18;;32432:59;32522:2;32507:18;;;32500:34;32300:54;32018:522;-1:-1:-1;32018:522:51:o;32545:127::-;32606:10;32601:3;32597:20;32594:1;32587:31;32637:4;32634:1;32627:15;32661:4;32658:1;32651:15;32677:170;32716:1;32750:6;32747:1;32743:14;32776:3;32766:37;;32783:18;;:::i;:::-;32837:3;32828:6;32825:1;32821:14;32817:24;32812:29;;;32677:170;;;;:::o;32852:127::-;32913:10;32908:3;32904:20;32901:1;32894:31;32944:4;32941:1;32934:15;32968:4;32965:1;32958:15;33548:444;-1:-1:-1;;;33805:3:51;33798:27;33780:3;33854:6;33848:13;33870:75;33938:6;33933:2;33928:3;33924:12;33917:4;33909:6;33905:17;33870:75;:::i;:::-;33965:16;;;;33983:2;33961:25;;33548:444;-1:-1:-1;;33548:444:51:o;34348:579::-;34400:3;34431;34463:5;34457:12;34490:6;34485:3;34478:19;34522:4;34517:3;34513:14;34506:21;;34580:4;34570:6;34567:1;34563:14;34556:5;34552:26;34548:37;34619:4;34612:5;34608:16;34642:1;34652:249;34666:6;34663:1;34660:13;34652:249;;;34753:2;34749:7;34741:5;34735:4;34731:16;34727:30;34722:3;34715:43;34779:38;34812:4;34803:6;34797:13;34779:38;:::i;:::-;34852:4;34877:14;;;;34771:46;;-1:-1:-1;34840:17:51;;;;;34688:1;34681:9;34652:249;;34932:503;35229:2;35218:9;35211:21;35192:4;35255:55;35306:2;35295:9;35291:18;35283:6;35255:55;:::i;:::-;35358:9;35350:6;35346:22;35341:2;35330:9;35326:18;35319:50;35386:43;35422:6;35414;35386:43;:::i;35972:125::-;36037:9;;;36058:10;;;36055:36;;;36071:18;;:::i;36102:168::-;36175:9;;;36206;;36223:15;;;36217:22;;36203:37;36193:71;;36244:18;;:::i;36275:120::-;36315:1;36341;36331:35;;36346:18;;:::i;:::-;-1:-1:-1;36380:9:51;;36275:120::o;37479:289::-;37610:3;37648:6;37642:13;37664:66;37723:6;37718:3;37711:4;37703:6;37699:17;37664:66;:::i;:::-;37746:16;;;;;37479:289;-1:-1:-1;;37479:289:51:o;40645:188::-;40683:3;40727:10;40720:5;40716:22;40762:10;40753:7;40750:23;40747:49;;40776:18;;:::i;40838:128::-;40905:9;;;40926:11;;;40923:37;;;40940:18;;:::i;41394:398::-;41549:3;41587:6;41581:13;41603:66;41662:6;41657:3;41650:4;41642:6;41638:17;41603:66;:::i;:::-;-1:-1:-1;;;;;;41730:26:51;;;;41691:16;;;;41716:41;;;41784:1;41773:13;;41394:398;-1:-1:-1;;41394:398:51:o;42329:518::-;42431:2;42426:3;42423:11;42420:421;;;42467:5;42464:1;42457:16;42511:4;42508:1;42498:18;42581:2;42569:10;42565:19;42562:1;42558:27;42552:4;42548:38;42617:4;42605:10;42602:20;42599:47;;;-1:-1:-1;42640:4:51;42599:47;42695:2;42690:3;42686:12;42683:1;42679:20;42673:4;42669:31;42659:41;;42750:81;42768:2;42761:5;42758:13;42750:81;;;42827:1;42813:16;;42794:1;42783:13;42750:81;;;42754:3;;42329:518;;;:::o;43023:1299::-;43149:3;43143:10;-1:-1:-1;;;;;43168:6:51;43165:30;43162:56;;;43198:18;;:::i;:::-;43227:97;43317:6;43277:38;43309:4;43303:11;43277:38;:::i;:::-;43271:4;43227:97;:::i;:::-;43373:4;43404:2;43393:14;;43421:1;43416:649;;;;44109:1;44126:6;44123:89;;;-1:-1:-1;44178:19:51;;;44172:26;44123:89;-1:-1:-1;;42980:1:51;42976:11;;;42972:24;42968:29;42958:40;43004:1;43000:11;;;42955:57;44225:81;;43386:930;;43416:649;42276:1;42269:14;;;42313:4;42300:18;;-1:-1:-1;;43452:20:51;;;43570:222;43584:7;43581:1;43578:14;43570:222;;;43666:19;;;43660:26;43645:42;;43773:4;43758:20;;;;43726:1;43714:14;;;;43600:12;43570:222;;;43574:3;43820:6;43811:7;43808:19;43805:201;;;43881:19;;;43875:26;-1:-1:-1;;43964:1:51;43960:14;;;43976:3;43956:24;43952:37;43948:42;43933:58;43918:74;;43805:201;-1:-1:-1;;;;44052:1:51;44036:14;;;44032:22;44019:36;;-1:-1:-1;43023: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","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","settleWitOracleSettings((uint16,uint16,uint64))":"b9dcadf2","settleWitRpcProviders(string[])":"96fe8eb1","settleWitUnwrapper(string)":"f577caee","supportsInterface(bytes4)":"01ffc9a7","symbol()":"95d89b41","totalReserve()":"4c68df67","totalSupply()":"18160ddd","totalUnwraps()":"520a5495","transfer(address,uint256)":"a9059cbb","transferCuratorship(address)":"a41942a4","transferFrom(address,address,uint256)":"23b872dd","unwrap(uint64,string)":"8a510f27","witCustodian()":"7090c8d6","witOracle()":"1014d375","witOracleCrossChainProofOfInclusionTemplate()":"f69a00b6","witOracleCrossChainProofOfReserveTemplate()":"27ae6883","witOracleEstimateWrappingFee(uint256)":"ddb2bf5c","witOracleProofOfReserveRadonBytecode()":"acb734bb","witOracleQuerySettings()":"873234cf","witUnwrapper()":"4ba0d150","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\":\"witUnwrapper\",\"type\":\"string\"}],\"name\":\"NewUnwrapper\",\"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\":\"address\",\"name\":\"_evmCurator\",\"type\":\"address\"},{\"internalType\":\"string\",\"name\":\"_witUnwrapperBech32\",\"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\":[{\"components\":[{\"internalType\":\"uint16\",\"name\":\"minWitnesses\",\"type\":\"uint16\"},{\"internalType\":\"uint16\",\"name\":\"baseFeeOverhead100\",\"type\":\"uint16\"},{\"internalType\":\"uint64\",\"name\":\"unitaryRewardNanowits\",\"type\":\"uint64\"}],\"internalType\":\"struct IWrappedWIT.WitOracleSettings\",\"name\":\"_settings\",\"type\":\"tuple\"}],\"name\":\"settleWitOracleSettings\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string[]\",\"name\":\"_witRpcProviders\",\"type\":\"string[]\"}],\"name\":\"settleWitRpcProviders\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_witUnwrapperBech32\",\"type\":\"string\"}],\"name\":\"settleWitUnwrapper\",\"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\":\"totalReserve\",\"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\":[{\"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\":\"witCustodian\",\"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\":[{\"internalType\":\"uint256\",\"name\":\"evmGasPrice\",\"type\":\"uint256\"}],\"name\":\"witOracleEstimateWrappingFee\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witOracleProofOfReserveRadonBytecode\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"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\":\"struct IWrappedWIT.WitOracleSettings\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"witUnwrapper\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"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\":\"See {IERC20-allowance}.\"},\"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\":\"See {IERC20-balanceOf}.\"},\"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\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `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.\"},\"settleWitOracleSettings((uint16,uint16,uint64))\":{\"notice\":\"=============================================================================================================== --- Wrapped/WIT authoritative methods -------------------------------------------------------------------------\"},\"wrap(bytes32)\":{\"notice\":\"=============================================================================================================== --- Wrapped/WIT permissionless wrap/unwrap operations ---------------------------------------------------------\"}},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/WrappedWIT.sol\":\"WrappedWIT\"},\"evmVersion\":\"shanghai\",\"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\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x41f6b3b9e030561e7896dbef372b499cc8d418a80c3884a4d65a68f2fdc7493a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://80b0992a11b2fd1f75ced2971696d07bbd1d19ce6761dd50d8b6d48aa435f42a\",\"dweb:/ipfs/QmZDe5xd2gXHjVEjv9t8C1KQ68K5T8qFwdinwQgmP3rF3x\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":{\"keccak256\":\"0xaa7f0646f49ebe2606eeca169f85c56451bbaeeeb06265fa076a03369a25d1d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ee931d4e832385765967efe6366dcc6d00d6a2d794f9c66ee38283c03882de9c\",\"dweb:/ipfs/QmR6SkuJGYxpQeLz38rBdghqaWqEPfzUsL9kBoXgEXKtbD\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x27dbc90e5136ffe46c04f7596fc2dbcc3acebd8d504da3d93fdb8496e6de04f6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea8b92e4245d75a5579c10f22f118f7b4ba07c57341f181f0b2a85ff8663de3\",\"dweb:/ipfs/Qme3Ss5ByjmkxxkMdLpyu7fQ1PCtjNFH1wEFszt2BZePiG\"]},\"@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\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@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\":\"0x9b1118896b06db88c42326400552acb7a8d104c1cc0ad164ed45bfa28c10f323\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5093d5fd8dfb80093f52a0ca106657f29ccdaf9fe701b644f0e4513abc73a480\",\"dweb:/ipfs/QmSXubKdqqtcLPQ1geFgXtifxrwkAseMQTiULF4BBeadGH\"]},\"contracts/WrappedWIT.sol\":{\"keccak256\":\"0x8be3e3e97f67d8a7609003b6379bed5fb606dfb7376958754b7b7db23cf9fdd1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a79bf2479de29fcdeef8064d59cf91bb6a8cbc4e068f77828609f2ad0999379e\",\"dweb:/ipfs/Qma4FTLu7jAimH6NGSr8ursJZZCgzozEr8oS7DJcAjYo8h\"]},\"contracts/WrappedWITLib.sol\":{\"keccak256\":\"0xb6993eb216c5eb94ea444efd3fcd39964edf039c6c5e2a31facd526ffbb3b992\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a13666f4e1e0b6d4d6c1c473313c26096c592e8eda0c32119d8b8bcd07691d81\",\"dweb:/ipfs/QmYRXmNSA6nukNAWyXyxbJk58VJfVPwcCtyvuaLk2d692e\"]},\"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},"@_9113":{"entryPoint":null,"id":9113,"parameterSlots":0,"returnSlots":0},"@_transferOwnership_561":{"entryPoint":89,"id":561,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_623":{"entryPoint":63,"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":"6080604052348015600e575f5ffd5b503380603357604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b603a81603f565b5060a8565b600180546001600160a01b03191690556056816059565b50565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6109cf806100b55f395ff3fe608060405234801561000f575f5ffd5b5060043610610085575f3560e01c8063c7d4684f11610058578063c7d4684f146100da578063e30c3978146100ed578063f02ef925146100fe578063f2fde38b14610111575f5ffd5b806358ebadb014610089578063715018a6146100b857806379ba5097146100c25780638da5cb5b146100ca575b5f5ffd5b61009c6100973660046106c1565b610124565b6040516001600160a01b03909116815260200160405180910390f35b6100c0610134565b005b6100c0610147565b5f546001600160a01b031661009c565b61009c6100e836600461071d565b610190565b6001546001600160a01b031661009c565b61009c61010c36600461081f565b6101e2565b6100c061011f3660046108dd565b610321565b5f61012e82610391565b92915050565b61013c610464565b6101455f610490565b565b60015433906001600160a01b031681146101845760405163118cdaa760e01b81526001600160a01b03821660048201526024015b60405180910390fd5b61018d81610490565b50565b5f610199610464565b6101da845f1b84848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506104a992505050565b949350505050565b5f6101eb610464565b610239885f1b88888887604051602001610206929190610918565b60408051601f1981840301815290829052610225939291602001610959565b6040516020818303038152906040526104a9565b90505f816001600160a01b03168584604051602401610259929190610918565b60408051601f198184030181529181526020820180516001600160e01b03166379ccf11760e11b1790525161028e919061097e565b5f604051808303815f865af19150503d805f81146102c7576040519150601f19603f3d011682016040523d82523d5f602084013e6102cc565b606091505b50509050806103155760405162461bcd60e51b81526020600482015260156024820152741a5b9a5d1a585b1a5e985d1a5bdb8819985a5b1959605a1b604482015260640161017b565b50979650505050505050565b610329610464565b600180546001600160a01b0383166001600160a01b031990911681179091556103595f546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b604080518082018252601081526f67363d3d37363d34f03d5260086018f360801b60209182015281516001600160f81b03198183015230606090811b6bffffffffffffffffffffffff19908116602184015260358301959095527f21c35dbe1b344a2488cf3321d6ce542f8e9f305544ff09e4993a62319a497c1f605580840191909152845180840390910181526075830185528051908401206135a560f21b6095840152901b9093166097840152600160f81b60ab8401528151608c81850301815260ac909301909152815191012090565b5f546001600160a01b031633146101455760405163118cdaa760e01b815233600482015260240161017b565b600180546001600160a01b031916905561018d816104bc565b5f6104b583835f61050b565b9392505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f61051584610391565b90506001600160a01b0381163b1561056f5760405162461bcd60e51b815260206004820152601e60248201527f437265617465333a2074617267657420616c7265616479206578697374730000604482015260640161017b565b6040805180820190915260108082526f67363d3d37363d34f03d5260086018f360801b602083019081525f9291879184f591506001600160a01b0382166105f85760405162461bcd60e51b815260206004820152601f60248201527f437265617465333a206572726f72206372656174696e6720666163746f727900604482015260640161017b565b5f826001600160a01b03168587604051610612919061097e565b5f6040518083038185875af1925050503d805f811461064c576040519150601f19603f3d011682016040523d82523d5f602084013e610651565b606091505b5050905080801561066b57506001600160a01b0384163b15155b6106b75760405162461bcd60e51b815260206004820152601e60248201527f437265617465333a206572726f72206372656174696e67207461726765740000604482015260640161017b565b5050509392505050565b5f602082840312156106d1575f5ffd5b5035919050565b5f5f83601f8401126106e8575f5ffd5b50813567ffffffffffffffff8111156106ff575f5ffd5b602083019150836020828501011115610716575f5ffd5b9250929050565b5f5f5f6040848603121561072f575f5ffd5b83359250602084013567ffffffffffffffff81111561074c575f5ffd5b610758868287016106d8565b9497909650939450505050565b80356001600160a01b038116811461077b575f5ffd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126107a3575f5ffd5b813567ffffffffffffffff8111156107bd576107bd610780565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156107ec576107ec610780565b604052818152838201602001851015610803575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f5f5f5f5f5f5f60c0888a031215610835575f5ffd5b87359650602088013567ffffffffffffffff811115610852575f5ffd5b61085e8a828b016106d8565b9097509550610871905060408901610765565b935061087f60608901610765565b9250608088013567ffffffffffffffff81111561089a575f5ffd5b6108a68a828b01610794565b92505060a088013567ffffffffffffffff8111156108c2575f5ffd5b6108ce8a828b01610794565b91505092959891949750929550565b5f602082840312156108ed575f5ffd5b6104b582610765565b5f5b838110156109105781810151838201526020016108f8565b50505f910152565b60018060a01b0383168152604060208201525f82518060408401526109448160608501602087016108f6565b601f01601f1916919091016060019392505050565b828482375f8382015f815283516109748183602088016108f6565b0195945050505050565b5f825161098f8184602087016108f6565b919091019291505056fea26469706673582212207e539165882acd3f0733a504a74797288a16100ec82b9228d886139c7122130b64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xE JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLER DUP1 PUSH1 0x33 JUMPI PUSH1 0x40 MLOAD PUSH4 0x1E4FBDF7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3A DUP2 PUSH1 0x3F JUMP JUMPDEST POP PUSH1 0xA8 JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH1 0x56 DUP2 PUSH1 0x59 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 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 0x9CF DUP1 PUSH2 0xB5 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x85 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xC7D4684F GT PUSH2 0x58 JUMPI DUP1 PUSH4 0xC7D4684F EQ PUSH2 0xDA JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0xED JUMPI DUP1 PUSH4 0xF02EF925 EQ PUSH2 0xFE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x111 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x58EBADB0 EQ PUSH2 0x89 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xB8 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xC2 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xCA JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x9C PUSH2 0x97 CALLDATASIZE PUSH1 0x4 PUSH2 0x6C1 JUMP JUMPDEST PUSH2 0x124 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 0xC0 PUSH2 0x134 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC0 PUSH2 0x147 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9C JUMP JUMPDEST PUSH2 0x9C PUSH2 0xE8 CALLDATASIZE PUSH1 0x4 PUSH2 0x71D JUMP JUMPDEST PUSH2 0x190 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9C JUMP JUMPDEST PUSH2 0x9C PUSH2 0x10C CALLDATASIZE PUSH1 0x4 PUSH2 0x81F JUMP JUMPDEST PUSH2 0x1E2 JUMP JUMPDEST PUSH2 0xC0 PUSH2 0x11F CALLDATASIZE PUSH1 0x4 PUSH2 0x8DD JUMP JUMPDEST PUSH2 0x321 JUMP JUMPDEST PUSH0 PUSH2 0x12E DUP3 PUSH2 0x391 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x13C PUSH2 0x464 JUMP JUMPDEST PUSH2 0x145 PUSH0 PUSH2 0x490 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 SLOAD CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 EQ PUSH2 0x184 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 0x18D DUP2 PUSH2 0x490 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x199 PUSH2 0x464 JUMP JUMPDEST PUSH2 0x1DA DUP5 PUSH0 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 PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x4A9 SWAP3 POP POP POP JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1EB PUSH2 0x464 JUMP JUMPDEST PUSH2 0x239 DUP9 PUSH0 SHL DUP9 DUP9 DUP9 DUP8 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x206 SWAP3 SWAP2 SWAP1 PUSH2 0x918 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH2 0x225 SWAP4 SWAP3 SWAP2 PUSH1 0x20 ADD PUSH2 0x959 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x4A9 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP5 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x259 SWAP3 SWAP2 SWAP1 PUSH2 0x918 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 0x28E SWAP2 SWAP1 PUSH2 0x97E JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP7 GAS CALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x2C7 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x2CC JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x315 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 0x17B JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x329 PUSH2 0x464 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 0x359 PUSH0 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 PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x145 JUMPI PUSH1 0x40 MLOAD PUSH4 0x118CDAA7 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x17B JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH2 0x18D DUP2 PUSH2 0x4BC JUMP JUMPDEST PUSH0 PUSH2 0x4B5 DUP4 DUP4 PUSH0 PUSH2 0x50B JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 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 PUSH0 PUSH2 0x515 DUP5 PUSH2 0x391 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE ISZERO PUSH2 0x56F 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 0x17B 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 PUSH0 SWAP3 SWAP2 DUP8 SWAP2 DUP5 CREATE2 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5F8 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 0x17B JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x612 SWAP2 SWAP1 PUSH2 0x97E JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x64C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x651 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x66B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO ISZERO JUMPDEST PUSH2 0x6B7 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 0x17B JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x6E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x6FF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x716 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x72F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x74C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x758 DUP7 DUP3 DUP8 ADD PUSH2 0x6D8 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 0x77B JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x7A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7BD JUMPI PUSH2 0x7BD PUSH2 0x780 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 0x7EC JUMPI PUSH2 0x7EC PUSH2 0x780 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x803 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x835 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x852 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x85E DUP11 DUP3 DUP12 ADD PUSH2 0x6D8 JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP PUSH2 0x871 SWAP1 POP PUSH1 0x40 DUP10 ADD PUSH2 0x765 JUMP JUMPDEST SWAP4 POP PUSH2 0x87F PUSH1 0x60 DUP10 ADD PUSH2 0x765 JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x89A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8A6 DUP11 DUP3 DUP12 ADD PUSH2 0x794 JUMP JUMPDEST SWAP3 POP POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x8C2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8CE DUP11 DUP3 DUP12 ADD PUSH2 0x794 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x8ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4B5 DUP3 PUSH2 0x765 JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x910 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x8F8 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x944 DUP2 PUSH1 0x60 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x8F6 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 PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE DUP4 MLOAD PUSH2 0x974 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x8F6 JUMP JUMPDEST ADD SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH2 0x98F DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x8F6 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH31 0x539165882ACD3F0733A504A74797288A16100EC82B9228D886139C7122130B PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"311:2596:29:-:0;;;364:36;;;;;;;;;-1:-1:-1;386: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;311: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:-;311:2596:29;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_checkOwner_499":{"entryPoint":1124,"id":499,"parameterSlots":0,"returnSlots":0},"@_msgSender_1631":{"entryPoint":null,"id":1631,"parameterSlots":0,"returnSlots":1},"@_transferOwnership_561":{"entryPoint":1212,"id":561,"parameterSlots":1,"returnSlots":0},"@_transferOwnership_623":{"entryPoint":1168,"id":623,"parameterSlots":1,"returnSlots":0},"@acceptOwnership_647":{"entryPoint":327,"id":647,"parameterSlots":0,"returnSlots":0},"@deployBridged_9192":{"entryPoint":400,"id":9192,"parameterSlots":3,"returnSlots":1},"@deployCanonical_9170":{"entryPoint":482,"id":9170,"parameterSlots":7,"returnSlots":1},"@deploy_7767":{"entryPoint":1193,"id":7767,"parameterSlots":2,"returnSlots":1},"@deploy_7834":{"entryPoint":1291,"id":7834,"parameterSlots":3,"returnSlots":1},"@determineAddr_7885":{"entryPoint":913,"id":7885,"parameterSlots":1,"returnSlots":1},"@determineAddr_9209":{"entryPoint":292,"id":9209,"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":308,"id":513,"parameterSlots":0,"returnSlots":0},"@transferOwnership_606":{"entryPoint":801,"id":606,"parameterSlots":1,"returnSlots":0},"abi_decode_address":{"entryPoint":1893,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_bytes_calldata":{"entryPoint":1752,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_string":{"entryPoint":1940,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":2269,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":1729,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_bytes_calldata_ptr":{"entryPoint":1821,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_uint256t_bytes_calldata_ptrt_addresst_addresst_string_memory_ptrt_string_memory_ptr":{"entryPoint":2079,"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":2393,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":2430,"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":2328,"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":2294,"id":null,"parameterSlots":3,"returnSlots":0},"panic_error_0x41":{"entryPoint":1920,"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":"608060405234801561000f575f5ffd5b5060043610610085575f3560e01c8063c7d4684f11610058578063c7d4684f146100da578063e30c3978146100ed578063f02ef925146100fe578063f2fde38b14610111575f5ffd5b806358ebadb014610089578063715018a6146100b857806379ba5097146100c25780638da5cb5b146100ca575b5f5ffd5b61009c6100973660046106c1565b610124565b6040516001600160a01b03909116815260200160405180910390f35b6100c0610134565b005b6100c0610147565b5f546001600160a01b031661009c565b61009c6100e836600461071d565b610190565b6001546001600160a01b031661009c565b61009c61010c36600461081f565b6101e2565b6100c061011f3660046108dd565b610321565b5f61012e82610391565b92915050565b61013c610464565b6101455f610490565b565b60015433906001600160a01b031681146101845760405163118cdaa760e01b81526001600160a01b03821660048201526024015b60405180910390fd5b61018d81610490565b50565b5f610199610464565b6101da845f1b84848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152506104a992505050565b949350505050565b5f6101eb610464565b610239885f1b88888887604051602001610206929190610918565b60408051601f1981840301815290829052610225939291602001610959565b6040516020818303038152906040526104a9565b90505f816001600160a01b03168584604051602401610259929190610918565b60408051601f198184030181529181526020820180516001600160e01b03166379ccf11760e11b1790525161028e919061097e565b5f604051808303815f865af19150503d805f81146102c7576040519150601f19603f3d011682016040523d82523d5f602084013e6102cc565b606091505b50509050806103155760405162461bcd60e51b81526020600482015260156024820152741a5b9a5d1a585b1a5e985d1a5bdb8819985a5b1959605a1b604482015260640161017b565b50979650505050505050565b610329610464565b600180546001600160a01b0383166001600160a01b031990911681179091556103595f546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b604080518082018252601081526f67363d3d37363d34f03d5260086018f360801b60209182015281516001600160f81b03198183015230606090811b6bffffffffffffffffffffffff19908116602184015260358301959095527f21c35dbe1b344a2488cf3321d6ce542f8e9f305544ff09e4993a62319a497c1f605580840191909152845180840390910181526075830185528051908401206135a560f21b6095840152901b9093166097840152600160f81b60ab8401528151608c81850301815260ac909301909152815191012090565b5f546001600160a01b031633146101455760405163118cdaa760e01b815233600482015260240161017b565b600180546001600160a01b031916905561018d816104bc565b5f6104b583835f61050b565b9392505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f61051584610391565b90506001600160a01b0381163b1561056f5760405162461bcd60e51b815260206004820152601e60248201527f437265617465333a2074617267657420616c7265616479206578697374730000604482015260640161017b565b6040805180820190915260108082526f67363d3d37363d34f03d5260086018f360801b602083019081525f9291879184f591506001600160a01b0382166105f85760405162461bcd60e51b815260206004820152601f60248201527f437265617465333a206572726f72206372656174696e6720666163746f727900604482015260640161017b565b5f826001600160a01b03168587604051610612919061097e565b5f6040518083038185875af1925050503d805f811461064c576040519150601f19603f3d011682016040523d82523d5f602084013e610651565b606091505b5050905080801561066b57506001600160a01b0384163b15155b6106b75760405162461bcd60e51b815260206004820152601e60248201527f437265617465333a206572726f72206372656174696e67207461726765740000604482015260640161017b565b5050509392505050565b5f602082840312156106d1575f5ffd5b5035919050565b5f5f83601f8401126106e8575f5ffd5b50813567ffffffffffffffff8111156106ff575f5ffd5b602083019150836020828501011115610716575f5ffd5b9250929050565b5f5f5f6040848603121561072f575f5ffd5b83359250602084013567ffffffffffffffff81111561074c575f5ffd5b610758868287016106d8565b9497909650939450505050565b80356001600160a01b038116811461077b575f5ffd5b919050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f8301126107a3575f5ffd5b813567ffffffffffffffff8111156107bd576107bd610780565b604051601f8201601f19908116603f0116810167ffffffffffffffff811182821017156107ec576107ec610780565b604052818152838201602001851015610803575f5ffd5b816020850160208301375f918101602001919091529392505050565b5f5f5f5f5f5f5f60c0888a031215610835575f5ffd5b87359650602088013567ffffffffffffffff811115610852575f5ffd5b61085e8a828b016106d8565b9097509550610871905060408901610765565b935061087f60608901610765565b9250608088013567ffffffffffffffff81111561089a575f5ffd5b6108a68a828b01610794565b92505060a088013567ffffffffffffffff8111156108c2575f5ffd5b6108ce8a828b01610794565b91505092959891949750929550565b5f602082840312156108ed575f5ffd5b6104b582610765565b5f5b838110156109105781810151838201526020016108f8565b50505f910152565b60018060a01b0383168152604060208201525f82518060408401526109448160608501602087016108f6565b601f01601f1916919091016060019392505050565b828482375f8382015f815283516109748183602088016108f6565b0195945050505050565b5f825161098f8184602087016108f6565b919091019291505056fea26469706673582212207e539165882acd3f0733a504a74797288a16100ec82b9228d886139c7122130b64736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x85 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xC7D4684F GT PUSH2 0x58 JUMPI DUP1 PUSH4 0xC7D4684F EQ PUSH2 0xDA JUMPI DUP1 PUSH4 0xE30C3978 EQ PUSH2 0xED JUMPI DUP1 PUSH4 0xF02EF925 EQ PUSH2 0xFE JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x111 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x58EBADB0 EQ PUSH2 0x89 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xB8 JUMPI DUP1 PUSH4 0x79BA5097 EQ PUSH2 0xC2 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xCA JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x9C PUSH2 0x97 CALLDATASIZE PUSH1 0x4 PUSH2 0x6C1 JUMP JUMPDEST PUSH2 0x124 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 0xC0 PUSH2 0x134 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC0 PUSH2 0x147 JUMP JUMPDEST PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9C JUMP JUMPDEST PUSH2 0x9C PUSH2 0xE8 CALLDATASIZE PUSH1 0x4 PUSH2 0x71D JUMP JUMPDEST PUSH2 0x190 JUMP JUMPDEST PUSH1 0x1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x9C JUMP JUMPDEST PUSH2 0x9C PUSH2 0x10C CALLDATASIZE PUSH1 0x4 PUSH2 0x81F JUMP JUMPDEST PUSH2 0x1E2 JUMP JUMPDEST PUSH2 0xC0 PUSH2 0x11F CALLDATASIZE PUSH1 0x4 PUSH2 0x8DD JUMP JUMPDEST PUSH2 0x321 JUMP JUMPDEST PUSH0 PUSH2 0x12E DUP3 PUSH2 0x391 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x13C PUSH2 0x464 JUMP JUMPDEST PUSH2 0x145 PUSH0 PUSH2 0x490 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x1 SLOAD CALLER SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 EQ PUSH2 0x184 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 0x18D DUP2 PUSH2 0x490 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x199 PUSH2 0x464 JUMP JUMPDEST PUSH2 0x1DA DUP5 PUSH0 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 PUSH0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH2 0x4A9 SWAP3 POP POP POP JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1EB PUSH2 0x464 JUMP JUMPDEST PUSH2 0x239 DUP9 PUSH0 SHL DUP9 DUP9 DUP9 DUP8 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x206 SWAP3 SWAP2 SWAP1 PUSH2 0x918 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE SWAP1 DUP3 SWAP1 MSTORE PUSH2 0x225 SWAP4 SWAP3 SWAP2 PUSH1 0x20 ADD PUSH2 0x959 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH2 0x4A9 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP5 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x259 SWAP3 SWAP2 SWAP1 PUSH2 0x918 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 0x28E SWAP2 SWAP1 PUSH2 0x97E JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP7 GAS CALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x2C7 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x2CC JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x315 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 0x17B JUMP JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x329 PUSH2 0x464 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 0x359 PUSH0 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 PUSH0 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x145 JUMPI PUSH1 0x40 MLOAD PUSH4 0x118CDAA7 PUSH1 0xE0 SHL DUP2 MSTORE CALLER PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x17B JUMP JUMPDEST PUSH1 0x1 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP1 SSTORE PUSH2 0x18D DUP2 PUSH2 0x4BC JUMP JUMPDEST PUSH0 PUSH2 0x4B5 DUP4 DUP4 PUSH0 PUSH2 0x50B JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 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 PUSH0 PUSH2 0x515 DUP5 PUSH2 0x391 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND EXTCODESIZE ISZERO PUSH2 0x56F 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 0x17B 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 PUSH0 SWAP3 SWAP2 DUP8 SWAP2 DUP5 CREATE2 SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5F8 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 0x17B JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x612 SWAP2 SWAP1 PUSH2 0x97E JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x64C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x651 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 DUP1 ISZERO PUSH2 0x66B JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND EXTCODESIZE ISZERO ISZERO JUMPDEST PUSH2 0x6B7 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 0x17B JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x6D1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x6E8 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x6FF JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x716 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x72F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x74C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x758 DUP7 DUP3 DUP8 ADD PUSH2 0x6D8 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 0x77B JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x7A3 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7BD JUMPI PUSH2 0x7BD PUSH2 0x780 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 0x7EC JUMPI PUSH2 0x7EC PUSH2 0x780 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD PUSH1 0x20 ADD DUP6 LT ISZERO PUSH2 0x803 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP6 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 SWAP2 DUP2 ADD PUSH1 0x20 ADD SWAP2 SWAP1 SWAP2 MSTORE SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xC0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x835 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP8 CALLDATALOAD SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x852 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x85E DUP11 DUP3 DUP12 ADD PUSH2 0x6D8 JUMP JUMPDEST SWAP1 SWAP8 POP SWAP6 POP PUSH2 0x871 SWAP1 POP PUSH1 0x40 DUP10 ADD PUSH2 0x765 JUMP JUMPDEST SWAP4 POP PUSH2 0x87F PUSH1 0x60 DUP10 ADD PUSH2 0x765 JUMP JUMPDEST SWAP3 POP PUSH1 0x80 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x89A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8A6 DUP11 DUP3 DUP12 ADD PUSH2 0x794 JUMP JUMPDEST SWAP3 POP POP PUSH1 0xA0 DUP9 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x8C2 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x8CE DUP11 DUP3 DUP12 ADD PUSH2 0x794 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x8ED JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x4B5 DUP3 PUSH2 0x765 JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x910 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x8F8 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x1 DUP1 PUSH1 0xA0 SHL SUB DUP4 AND DUP2 MSTORE PUSH1 0x40 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 DUP3 MLOAD DUP1 PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x944 DUP2 PUSH1 0x60 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x8F6 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 PUSH0 DUP4 DUP3 ADD PUSH0 DUP2 MSTORE DUP4 MLOAD PUSH2 0x974 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x8F6 JUMP JUMPDEST ADD SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP3 MLOAD PUSH2 0x98F DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x8F6 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH31 0x539165882ACD3F0733A504A74797288A16100EC82B9228D886139C7122130B PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"311:2596:29:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2744:160;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;409:32:51;;;391:51;;379:2;364:18;2744: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;;2199:284:29;;;;;;:::i;:::-;;:::i;1232:99:4:-;1311:13;;-1:-1:-1;;;;;1311:13:4;1232:99;;1040:896:29;;;;;;:::i;:::-;;:::i;1649:178:4:-;;;;;;:::i;:::-;;:::i;2744:160:29:-;2828:7;2860:36;2890:4;2860:21;:36::i;:::-;2853:43;2744:160;-1:-1:-1;;2744: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;2199:284:29:-;2363:7;1531:13:3;:11;:13::i;:::-;2395:80:29::1;2432:4;2424:13;;2452:12;;2395:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;2395:14:29::1;::::0;-1:-1:-1;;;2395:80:29:i:1;:::-;2388:87:::0;2199:284;-1:-1:-1;;;;2199:284:29:o;1040:896::-;1381:17;1531:13:3;:11;:13::i;:::-;1428:264:29::1;1465:4;1457:13;;1520:12;;1584:22;1629:18;1551:115;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;1551:115:29;;::::1;::::0;;;;;;;1485:196:::1;::::0;;;1551:115:::1;1485:196;;:::i;:::-;;;;;;;;;;;;;1428:14;:264::i;:::-;1416:276;;1704:13;1722:9;-1:-1:-1::0;;;;;1722:14:29::1;1818:12;1845:18;1737:137;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;1737:137:29;;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;1737:137:29::1;-1:-1:-1::0;;;1737:137:29::1;::::0;;1722:153;::::1;::::0;1737:137;1722:153:::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1703:172;;;1894:8;1886:42;;;::::0;-1:-1:-1;;;1886:42:29;;5368:2:51;1886: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;;1886:42:29::1;5166:345:51::0;1886:42:29::1;1405:531;1040: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;5022:1163:26:-;2448:24;;;;;;;;;;;-1:-1:-1;;;2448:24:26;;;;;5236:216;;-1:-1:-1;;;;;;5236:216:26;;;5802:26:51;5329:4:26;5865:2:51;5861:15;;;-1:-1:-1;;5857:53:51;;;5844:11;;;5837:74;5927:12;;;5920:28;;;;2438:35:26;5964:12:51;;;;5957:28;;;;5236:216:26;;;;;;;;;;6001:12:51;;;5236:216:26;;5200:275;;;;;;-1:-1:-1;;;5652:457:26;;;6355:28:51;6416:15;;6412:53;;;6399:11;;;6392:74;-1:-1:-1;;;6482:12:51;;;6475:33;5652:457:26;;;;;;;;;6524:12:51;;;;5652:457:26;;;5616:516;;;;;;5022: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;2874:167:26:-;2970:7;3002:31;3009:5;3016:13;3031:1;3002:6;:31::i;:::-;2995:38;2874:167;-1:-1:-1;;;2874: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;3524:1056:26:-;3635:17;3719:20;3733:5;3719:13;:20::i;:::-;3707:32;-1:-1:-1;;;;;;3754:21:26;;;:26;3750:72;;3782:40;;-1:-1:-1;;;3782:40:26;;6749:2:51;3782:40:26;;;6731:21:51;6788:2;6768:18;;;6761:30;6827:32;6807:18;;;6800:60;6877:18;;3782:40:26;6547:354:51;3750:72:26;3921:24;;;;;;;;;;;;;-1:-1:-1;;;3921:24:26;;;;;;3862:16;;3921:24;4263:5;;3862:16;4200:69;4188:81;-1:-1:-1;;;;;;4298:22:26;;4290:66;;;;-1:-1:-1;;;4290:66:26;;7108:2:51;4290:66:26;;;7090:21:51;7147:2;7127:18;;;7120:30;7186:33;7166:18;;;7159:61;7237:18;;4290:66:26;6906:355:51;4290:66:26;4418:13;4437:8;-1:-1:-1;;;;;4437:13:26;4458:6;4466:13;4437:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4417:63;;;4499:8;:38;;;;-1:-1:-1;;;;;;4511:21:26;;;:26;;4499:38;4491:81;;;;-1:-1:-1;;;4491:81:26;;7468:2:51;4491:81:26;;;7450:21:51;7507:2;7487:18;;;7480:30;7546:32;7526:18;;;7519:60;7596:18;;4491:81:26;7266:354:51;4491:81:26;3659:921;;;3524: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\":\"shanghai\",\"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\":\"0x7241780fc1f0eef432018fa46eb516c3da4462a0503536bfc8fff66379b59c8d\",\"license\":\"AGPL-3.0-only\",\"urls\":[\"bzz-raw://a878972b2f7efa068c389f1ddf540a0c0664a1da3c6aac2b8ccda8fa189e846d\",\"dweb:/ipfs/Qmcs1WmNDyZbipAUtTjZCTyLn4AETdbSpTMdUS85AZMGwu\"]},\"contracts/WrappedWITDeployer.sol\":{\"keccak256\":\"0xd6d18aad17ac4b638862b5b3e0528e52b48047e42356b7605485b98794cbf99f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://208b59c1f3ac159adf31482b4336d78e3d221bc575bca7d03bdffa86cfa35d92\",\"dweb:/ipfs/QmbyNcBy7RdHHoBd5XQnAU6cmuBop1m4NDaHxM6GyCUzNH\"]}},\"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":"6124a0610034600b8282823980515f1a607314602857634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040526004361061004a575f3560e01c80633752120b1461004e5780635d933eb71461008057806367c4440f146100b0575b5f5ffd5b818015610059575f5ffd5b5061006d610068366004611cfe565b6100db565b6040519081526020015b60405180910390f35b81801561008b575f5ffd5b5061009f61009a366004611d3c565b610354565b604051610077959493929190611dfe565b6100c36100be366004612051565b6106c7565b6040516001600160401b039091168152602001610077565b5f8181525f51602061242b5f395f51905f5260205260409020545f19811461034d576040805160018082528183019092525f91816020015b6060815260200190600190039081610113579050509050610133836107e9565b815f8151811061014557610145612103565b60200260200101819052505f846001600160a01b031663f0e271bc836101755f51602061244b5f395f51905f5290565b6004016040518363ffffffff1660e01b8152600401610195929190612117565b6020604051808303815f875af11580156101b1573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101d59190612265565b9050856001600160a01b0316633b3195b73483604051806060016040528061010061ffff1681526020016102135f51602061244b5f395f51905f5290565b6003015461ffff1681526020015f51602061244b5f395f51905f526003015464010000000090046001600160401b039081169091526040805180820182523081526202d2a86020808301918252835160e08a901b6001600160e01b03191681526004810197909752855161ffff90811660248901529086015116604487015293909101519091166064840152516001600160a01b031660848301525162ffffff1660a482015260c40160206040518083038185885af11580156102d8573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906102fd9190612265565b5f8581525f51602061242b5f395f51905f52602090815260408083208490558383527f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c59009091529020859055925050505b9392505050565b5f8381527f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c5900602052604081205490606090819080846103cd5760405162461bcd60e51b815260206004820152601060248201526f1a5b9d985b1a59081c5d595c9e481a5960821b60448201526064015b60405180910390fd5b5f8581525f51602061242b5f395f51905f5260205260409020546001016104365760405162461bcd60e51b815260206004820152601a60248201527f7769742f7772617020747820616c7265616479206d696e74656400000000000060448201526064016103c4565b5f61044387890189612051565b90505f815160ff8111156104595761045961227c565b146104a65760405162461bcd60e51b815260206004820152601860248201527f717565727920736f6c7665642077697468206572726f7273000000000000000060448201526064016103c4565b6001816020015160138111156104be576104be61227c565b146105025760405162461bcd60e51b81526020600482015260146024820152731a5b9d985b1a59081c5d595c9e481c995cdd5b1d60621b60448201526064016103c4565b5f8681525f51602061242b5f395f51905f52602052604081205f199055610528826108f7565b905061054c815f8151811061053f5761053f612103565b60200260200101516109cd565b6001600160401b03166001146105a45760405162461bcd60e51b815260206004820152601860248201527f756e66696e616c697a656420717565727920726573756c74000000000000000060448201526064016103c4565b6105c7816002815181106105ba576105ba612103565b6020026020010151610a26565b95506105df816003815181106105ba576105ba612103565b94506106076106026105fd836001815181106105ba576105ba612103565b610b28565b610c12565b93505f6106208260048151811061053f5761053f612103565b90506106388260058151811061053f5761053f612103565b93506106655f51602061244b5f395f51905f52546001600160401b0383811691600160c01b900416610c25565b156106b957835f51602061244b5f395f51905f5260010180545f906106949084906001600160401b03166122a4565b92506101000a8154816001600160401b0302191690836001600160401b031602179055505b505050939792965093509350565b5f606081835160ff8111156106de576106de61227c565b036106ef576106ec83610c3b565b90505b5f835160ff8111156107035761070361227c565b14801561073b575061073b5f51602061244b5f395f51905f525460608501516001600160401b0390811691600160c01b900416610c25565b8015610748575080516003145b6107855760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a59081c995c1bdc9d60921b60448201526064016103c4565b8060028151811061079857610798612103565b6020026020010151816001815181106107b3576107b3612103565b6020026020010151825f815181106107cd576107cd612103565b60200260200101516107df91906122a4565b61034d91906122a4565b6040805181815260608181018352915f91906020820181803683370190505090505f5b81518160ff1610156108f0576108546004856108296002856122d7565b60ff166020811061083c5761083c612103565b1a60f81b6001600160f81b031916901c60f81c610cce565b828261085f816122f8565b935060ff168151811061087457610874612103565b60200101906001600160f81b03191690815f1a9053506108b5846108996002846122d7565b60ff16602081106108ac576108ac612103565b1a600f16610cce565b82826108c0816122f8565b935060ff16815181106108d5576108d5612103565b60200101906001600160f81b03191690815f1a90535061080c565b5092915050565b606081600161090582610d01565b158015610937575080601381111561091f5761091f61227c565b826020015160138111156109355761093561227c565b145b61097d5760405162461bcd60e51b815260206004820152601760248201527663626f723a2063616e6e6f74206665746368206461746160481b60448201526064016103c4565b61098a8460800151610d0e565b92506109998260800151610eb9565b826020019060138111156109af576109af61227c565b908160138111156109c2576109c261227c565b815250505050919050565b5f815f8060ff16826040015160ff1614610a0b57604080830151905161800560e51b815260ff918216600482015290821660248201526044016103c4565b610a1c845f01518560600151610f80565b92505b5050919050565b60608160038060ff16826040015160ff1614610a6657604080830151905161800560e51b815260ff918216600482015290821660248201526044016103c4565b610a77845f01518560600151610f80565b6001600160401b03166080850181905267fffffffffffffffe1901610b11575f5b80610b0b575f610aaf865f01518760400151611047565b90506001600160401b038082161015610b005784610ad9610ad1600484612316565b8851906110ec565b604051602001610aea929190612343565b6040516020818303038152906040529450610b05565b600191505b50610a98565b50610a1f565b60808401518451610b21916110ec565b9250610a1f565b60606002825181610b3b57610b3b6122c3565b046001600160401b03811115610b5357610b53611e54565b6040519080825280601f01601f191660200182016040528015610b7d576020820181803683370190505b5090505f5b8151811015610c0c575f610bb1848360020281518110610ba457610ba4612103565b016020015160f81c611270565b90505f610bcf858460020260010181518110610ba457610ba4612103565b905080826010020160f81b848481518110610bec57610bec612103565b60200101906001600160f81b03191690815f1a9053505050600101610b82565b50919050565b5f610c1c82611334565b60601c92915050565b6001600160401b03808216908316115b92915050565b6060816001610c4982610d01565b158015610c7b5750806013811115610c6357610c6361227c565b82602001516013811115610c7957610c7961227c565b145b610cc15760405162461bcd60e51b815260206004820152601760248201527663626f723a2063616e6e6f74206665746368206461746160481b60448201526064016103c4565b61098a8460800151611340565b5f600a8260ff1610610ced57610ce5826057612371565b60f81b610c35565b610cf8826030612371565b60f81b92915050565b5f610c35825f0151611482565b60608160048060ff16826040015160ff1614610d4e57604080830151905161800560e51b815260ff918216600482015290821660248201526044016103c4565b5f610d60855f01518660600151610f80565b9050610d6d8160016122a4565b6001600160401b03166001600160401b03811115610d8d57610d8d611e54565b604051908082528060200260200182016040528015610dc657816020015b610db3611ca2565b815260200190600190039081610dab5790505b5093505f5b816001600160401b0316811015610e8957610de5866114b9565b9550610df0866114e1565b858281518110610e0257610e02612103565b6020026020010181905250600460ff16866040015160ff1603610e5a575f610e2987610d0e565b90508060018251610e3a919061238a565b81518110610e4a57610e4a612103565b6020026020010151965050610e81565b600560ff16866040015160ff1603610e76575f610e2987611578565b610e7f8661175e565b505b600101610dcb565b508484826001600160401b031681518110610ea657610ea6612103565b6020026020010181905250505050919050565b5f610ecd8251805151602090910151101590565b610f7b576006826040015160ff1611610f155760408201516502020183808360d11b9060ff1660078110610f0357610f03612103565b1a6013811115610c3557610c3561227c565b816040015160ff16600703610f7b57816060015160ff1660141480610f415750816060015160ff166015145b15610f4e57506002919050565b6019826060015160ff1610158015610f6e5750601b826060015160ff1611155b15610f7b57506005919050565b919050565b5f60188260ff161015610f97575060ff8116610c35565b8160ff16601803610fb557610fab8361191e565b60ff169050610c35565b8160ff16601903610fd457610fc98361197e565b61ffff169050610c35565b8160ff16601a03610ff557610fe8836119e9565b63ffffffff169050610c35565b8160ff16601b036110105761100983611a47565b9050610c35565b8160ff16601f0361102957506001600160401b03610c35565b604051636d785b1360e01b815260ff831660048201526024016103c4565b5f5f6110528461191e565b90508060ff1660ff0361106f576001600160401b03915050610c35565b61107c8482601f16610f80565b91506001600160401b03808316106110b257604051636d785b1360e01b81526001600160401b03831660048201526024016103c4565b60ff83166007600583901c16146108f05760405161800560e51b81526007600583901c16600482015260ff841660248201526044016103c4565b6060816001600160401b03166001600160401b0381111561110f5761110f611e54565b6040519080825280601f01601f191660200182016040528015611139576020820181803683370190505b5090505f5b826001600160401b0316816001600160401b03161015611267575f6111628561191e565b905060808116156112295760e08160ff16101561119e576111828561191e565b603f16600682601f1660ff16901b179050600184039350611229565b60f08160ff1610156111e3576111b38561191e565b603f1660066111c18761191e565b603f1660ff16901b600c83600f1660ff16901b17179050600284039350611229565b6111ec8561191e565b603f1660066111fa8761191e565b603f16901b600c61120a8861191e565b603f1660ff16901b601284600f1660ff16901b17171790506003840393505b8060f81b83836001600160401b03168151811061124857611248612103565b60200101906001600160f81b03191690815f1a9053505060010161113e565b50908152919050565b5f60308260ff1610158015611289575060398260ff1611155b1561129957610c3560308361239d565b60418260ff16101580156112b1575060468260ff1611155b156112cc576112c160418361239d565b610c3590600a612371565b60618260ff16101580156112e4575060668260ff1611155b156112f4576112c160618361239d565b60405162461bcd60e51b815260206004820152601560248201527424b73b30b634b2103432bc1031b430b930b1ba32b960591b60448201526064016103c4565b5f610c35826014611aa5565b60608160048060ff16826040015160ff161461138057604080830151905161800560e51b815260ff918216600482015290821660248201526044016103c4565b5f611392855f01518660600151610f80565b90506001600160401b03808216101561145657806001600160401b03166001600160401b038111156113c6576113c6611e54565b6040519080825280602002602001820160405280156113ef578160200160208202803683370190505b5093505f5b816001600160401b0316811015611450575f611412875f0151611b1a565b905061141d816109cd565b86838151811061142f5761142f612103565b6001600160401b0390921660209283029190910190910152506001016113f4565b5061147a565b604051636d785b1360e01b81526001600160401b03821660048201526024016103c4565b505050919050565b5f60f08260ff8111156114975761149761227c565b1480610c35575060f18260ff8111156114b2576114b261227c565b1492915050565b6114c1611ca2565b815180515160209091015110156114dd578151610c3590611b1a565b5090565b6114e9611ca2565b6040805160c0810180835284516101008301845260609091525f60e0830152825180840190935280518352602090810151908301529081908152602001836020015160ff168152602001836040015160ff168152602001836060015160ff16815260200183608001516001600160401b031681526020018360a001516001600160401b03168152509050919050565b60608160058060ff16826040015160ff16146115b857604080830151905161800560e51b815260ff918216600482015290821660248201526044016103c4565b5f6115ca855f01518660600151610f80565b6115d59060026123b6565b90506115e28160016122a4565b6001600160401b03166001600160401b0381111561160257611602611e54565b60405190808252806020026020018201604052801561163b57816020015b611628611ca2565b8152602001906001900390816116205790505b5093505f5b816001600160401b0316811015610e895761165a866114b9565b9550611665866114e1565b85828151811061167757611677612103565b602090810291909101015261168d6002826123d8565b1580156116a25750604086015160ff16600314155b156116d057604080870151905161800560e51b815260ff9091166004820152600360248201526044016103c4565b604086015160ff16600414806116ed5750604086015160ff166005145b1561174b5760408601515f9060ff166004146117115761170c87611578565b61171a565b61171a87610d0e565b9050806001825161172b919061238a565b8151811061173b5761173b612103565b6020026020010151965050611756565b6117548661175e565b505b600101611640565b611766611ca2565b604082015160ff1615806117815750604082015160ff166001145b806117ba5750604082015160ff1660071480156117a657506019826060015160ff1610155b80156117ba5750601b826060015160ff1611155b156117ec576117c882611c37565b6001600160401b0316825f01516020018181516117e591906123eb565b9052505090565b604082015160ff16600314806118095750604082015160ff166002145b1561184a575f611820835f01518460600151610f80565b9050806001600160401b0316835f015160200181815161184091906123eb565b9052506114dd9050565b604082015160ff16600414806118675750604082015160ff166005145b1561188f5761187d825f01518360600151610f80565b6001600160401b031660808301525090565b604082015160ff1660071415806118c15750816060015160ff166014141580156118c15750816060015160ff16601514155b156114dd5760405162461bcd60e51b815260206004820152602760248201527f5769746e657443424f522e736b69703a20756e737570706f72746564206d616a6044820152666f72207479706560c81b60648201526084016103c4565b5f8160200151825f01515180821115611954576040516363a056dd60e01b815260048101839052602481018290526044016103c4565b8351602085018051808301600101519550908190611971826123fe565b8152505050505050919050565b5f8160200151600261199091906123eb565b825151808211156119be576040516363a056dd60e01b815260048101839052602481018290526044016103c4565b83516020850180516002818401810151965090916119dc82846123eb565b9052509395945050505050565b5f816020015160046119fb91906123eb565b82515180821115611a29576040516363a056dd60e01b815260048101839052602481018290526044016103c4565b83516020850180516004818401810151965090916119dc82846123eb565b5f81602001516008611a5991906123eb565b82515180821115611a87576040516363a056dd60e01b815260048101839052602481018290526044016103c4565b83516020850180516008818401810151965090916119dc82846123eb565b5f60208260ff161115611aba57611aba612416565b5f8260ff16845111611acd578351611ad2565b8260ff165b90505f5b81811015611b125780600802858281518110611af457611af4612103565b01602001516001600160f81b031916901c9290921791600101611ad6565b505092915050565b611b22611ca2565b81515182905f03611b46576040516309036d4760e21b815260040160405180910390fd5b5f60ff816001600160401b038160015b8015611bc757611b658961191e565b955081611b71816123fe565b6007600589901c169650601f881695509250506005198501611bc0576020890151611b9c8a86610f80565b9350808a60200151611bae919061238a565b611bb890846123eb565b925050611b56565b505f611b56565b600760ff86161115611bf15760405163bd2ac87960e01b815260ff861660048201526024016103c4565b506040805160c08101825298895260ff95861660208a015293851693880193909352921660608601526001600160401b0390811660808601521660a08401525090919050565b5f6018826060015160ff161015611c4f57505f919050565b601c826060015160ff161015611c7e5760188260600151611c70919061239d565b60ff166001901b9050919050565b6060820151604051636d785b1360e01b815260ff90911660048201526024016103c4565b604080516101008101909152606060c082019081525f60e0830152819081525f6020820181905260408201819052606082018190526080820181905260a09091015290565b6001600160a01b0381168114611cfb575f5ffd5b50565b5f5f5f60608486031215611d10575f5ffd5b8335611d1b81611ce7565b92506020840135611d2b81611ce7565b929592945050506040919091013590565b5f5f5f60408486031215611d4e575f5ffd5b8335925060208401356001600160401b03811115611d6a575f5ffd5b8401601f81018613611d7a575f5ffd5b80356001600160401b03811115611d8f575f5ffd5b866020828401011115611da0575f5ffd5b939660209190910195509293505050565b5f5b83811015611dcb578181015183820152602001611db3565b50505f910152565b5f8151808452611dea816020860160208601611db1565b601f01601f19169290920160200192915050565b85815260a060208201525f611e1660a0830187611dd3565b8281036040840152611e288187611dd3565b6001600160a01b0395909516606084015250506001600160401b03919091166080909101529392505050565b634e487b7160e01b5f52604160045260245ffd5b60405160c081016001600160401b0381118282101715611e8a57611e8a611e54565b60405290565b604080519081016001600160401b0381118282101715611e8a57611e8a611e54565b60405160a081016001600160401b0381118282101715611e8a57611e8a611e54565b604051601f8201601f191681016001600160401b0381118282101715611efc57611efc611e54565b604052919050565b80356001600160401b0381168114610f7b575f5ffd5b803560ff81168114610f7b575f5ffd5b5f60c08284031215611f3a575f5ffd5b611f42611e68565b905081356001600160401b03811115611f59575f5ffd5b820160408185031215611f6a575f5ffd5b611f72611e90565b81356001600160401b03811115611f87575f5ffd5b8201601f81018613611f97575f5ffd5b80356001600160401b03811115611fb057611fb0611e54565b611fc3601f8201601f1916602001611ed4565b818152876020838501011115611fd7575f5ffd5b816020840160208301375f602092820183015283529283013582840152508252612002908301611f1a565b602082015261201360408301611f1a565b604082015261202460608301611f1a565b606082015261203560808301611f04565b608082015261204660a08301611f04565b60a082015292915050565b5f60208284031215612061575f5ffd5b81356001600160401b03811115612076575f5ffd5b820160a08185031215612087575f5ffd5b61208f611eb2565b8135610100811061209e575f5ffd5b81526020820135601481106120b1575f5ffd5b6020820152604082810135908201526120cc60608301611f04565b606082015260808201356001600160401b038111156120e9575f5ffd5b6120f586828501611f2a565b608083015250949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f604082016040835280855180835260608501915060608160051b8601019250602087015f5b8281101561216e57605f19878603018452612159858351611dd3565b9450602093840193919091019060010161213d565b50505050828103602084015280845480835260208301915060208160051b840101865f5260205f205f5b8381101561225757858303601f1901855281545f90600181811c908216806121c157607f821691505b6020821081036121df57634e487b7160e01b5f52602260045260245ffd5b818752602087018180156121fa57600181146122105761223c565b60ff198516825283151560051b8201955061223c565b5f888152602090205f5b858110156122365781548482015260019091019060200161221a565b83019650505b50505060209790970196509093505060019182019101612198565b509098975050505050505050565b5f60208284031215612275575f5ffd5b5051919050565b634e487b7160e01b5f52602160045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b6001600160401b038181168382160190811115610c3557610c35612290565b634e487b7160e01b5f52601260045260245ffd5b5f60ff8316806122e9576122e96122c3565b8060ff84160491505092915050565b5f60ff821660ff810361230d5761230d612290565b60010192915050565b5f6001600160401b0383168061232e5761232e6122c3565b806001600160401b0384160491505092915050565b5f8351612354818460208801611db1565b835190830190612368818360208801611db1565b01949350505050565b60ff8181168382160190811115610c3557610c35612290565b81810381811115610c3557610c35612290565b60ff8281168282160390811115610c3557610c35612290565b6001600160401b0381811683821602908116908181146108f0576108f0612290565b5f826123e6576123e66122c3565b500690565b80820180821115610c3557610c35612290565b5f6001820161240f5761240f612290565b5060010190565b634e487b7160e01b5f52600160045260245ffdfe6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58ff6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58f9a2646970667358221220b43bbdcdf1e6990af6ef1861b380dbfd3141b2b1fbdf097d97179470f57636cd64736f6c634300081c0033","opcodes":"PUSH2 0x24A0 PUSH2 0x34 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x28 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4A JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3752120B EQ PUSH2 0x4E JUMPI DUP1 PUSH4 0x5D933EB7 EQ PUSH2 0x80 JUMPI DUP1 PUSH4 0x67C4440F EQ PUSH2 0xB0 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x59 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x6D PUSH2 0x68 CALLDATASIZE PUSH1 0x4 PUSH2 0x1CFE JUMP JUMPDEST PUSH2 0xDB 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 0x8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9F PUSH2 0x9A CALLDATASIZE PUSH1 0x4 PUSH2 0x1D3C JUMP JUMPDEST PUSH2 0x354 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x77 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1DFE JUMP JUMPDEST PUSH2 0xC3 PUSH2 0xBE CALLDATASIZE PUSH1 0x4 PUSH2 0x2051 JUMP JUMPDEST PUSH2 0x6C7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x77 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x242B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH0 NOT DUP2 EQ PUSH2 0x34D JUMPI PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH0 SWAP2 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x113 JUMPI SWAP1 POP POP SWAP1 POP PUSH2 0x133 DUP4 PUSH2 0x7E9 JUMP JUMPDEST DUP2 PUSH0 DUP2 MLOAD DUP2 LT PUSH2 0x145 JUMPI PUSH2 0x145 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xF0E271BC DUP4 PUSH2 0x175 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x195 SWAP3 SWAP2 SWAP1 PUSH2 0x2117 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1B1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1D5 SWAP2 SWAP1 PUSH2 0x2265 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 0x213 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x3 ADD SLOAD PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x3 ADD SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE ADDRESS DUP2 MSTORE PUSH3 0x2D2A8 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 DUP3 MSTORE DUP4 MLOAD PUSH1 0xE0 DUP11 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP8 SWAP1 SWAP8 MSTORE DUP6 MLOAD PUSH2 0xFFFF SWAP1 DUP2 AND PUSH1 0x24 DUP10 ADD MSTORE SWAP1 DUP7 ADD MLOAD AND PUSH1 0x44 DUP8 ADD MSTORE SWAP4 SWAP1 SWAP2 ADD MLOAD SWAP1 SWAP2 AND PUSH1 0x64 DUP5 ADD MSTORE MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x84 DUP4 ADD MSTORE MLOAD PUSH3 0xFFFFFF AND PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0xC4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2D8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2FD SWAP2 SWAP1 PUSH2 0x2265 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x242B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 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 PUSH0 DUP4 DUP2 MSTORE PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C5900 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 PUSH1 0x60 SWAP1 DUP2 SWAP1 DUP1 DUP5 PUSH2 0x3CD 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 PUSH0 DUP6 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x242B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 ADD PUSH2 0x436 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH2 0x443 DUP8 DUP10 ADD DUP10 PUSH2 0x2051 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x459 JUMPI PUSH2 0x459 PUSH2 0x227C JUMP JUMPDEST EQ PUSH2 0x4A6 JUMPI PUSH1 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 0x3C4 JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x4BE JUMPI PUSH2 0x4BE PUSH2 0x227C JUMP JUMPDEST EQ PUSH2 0x502 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 0x3C4 JUMP JUMPDEST PUSH0 DUP7 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x242B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH0 NOT SWAP1 SSTORE PUSH2 0x528 DUP3 PUSH2 0x8F7 JUMP JUMPDEST SWAP1 POP PUSH2 0x54C DUP2 PUSH0 DUP2 MLOAD DUP2 LT PUSH2 0x53F JUMPI PUSH2 0x53F PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x9CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ PUSH2 0x5A4 JUMPI PUSH1 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 0x3C4 JUMP JUMPDEST PUSH2 0x5C7 DUP2 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xA26 JUMP JUMPDEST SWAP6 POP PUSH2 0x5DF DUP2 PUSH1 0x3 DUP2 MLOAD DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x2103 JUMP JUMPDEST SWAP5 POP PUSH2 0x607 PUSH2 0x602 PUSH2 0x5FD DUP4 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x2103 JUMP JUMPDEST PUSH2 0xB28 JUMP JUMPDEST PUSH2 0xC12 JUMP JUMPDEST SWAP4 POP PUSH0 PUSH2 0x620 DUP3 PUSH1 0x4 DUP2 MLOAD DUP2 LT PUSH2 0x53F JUMPI PUSH2 0x53F PUSH2 0x2103 JUMP JUMPDEST SWAP1 POP PUSH2 0x638 DUP3 PUSH1 0x5 DUP2 MLOAD DUP2 LT PUSH2 0x53F JUMPI PUSH2 0x53F PUSH2 0x2103 JUMP JUMPDEST SWAP4 POP PUSH2 0x665 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH2 0xC25 JUMP JUMPDEST ISZERO PUSH2 0x6B9 JUMPI DUP4 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 ADD DUP1 SLOAD PUSH0 SWAP1 PUSH2 0x694 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x22A4 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 PUSH0 PUSH1 0x60 DUP2 DUP4 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x6DE JUMPI PUSH2 0x6DE PUSH2 0x227C JUMP JUMPDEST SUB PUSH2 0x6EF JUMPI PUSH2 0x6EC DUP4 PUSH2 0xC3B JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 DUP4 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x703 JUMPI PUSH2 0x703 PUSH2 0x227C JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x73B JUMPI POP PUSH2 0x73B PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 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 0xC25 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x748 JUMPI POP DUP1 MLOAD PUSH1 0x3 EQ JUMPDEST PUSH2 0x785 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 0x3C4 JUMP JUMPDEST DUP1 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x798 JUMPI PUSH2 0x798 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x7B3 JUMPI PUSH2 0x7B3 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 PUSH0 DUP2 MLOAD DUP2 LT PUSH2 0x7CD JUMPI PUSH2 0x7CD PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x7DF SWAP2 SWAP1 PUSH2 0x22A4 JUMP JUMPDEST PUSH2 0x34D SWAP2 SWAP1 PUSH2 0x22A4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP2 DUP2 MSTORE PUSH1 0x60 DUP2 DUP2 ADD DUP4 MSTORE SWAP2 PUSH0 SWAP2 SWAP1 PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH0 JUMPDEST DUP2 MLOAD DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x8F0 JUMPI PUSH2 0x854 PUSH1 0x4 DUP6 PUSH2 0x829 PUSH1 0x2 DUP6 PUSH2 0x22D7 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP2 LT PUSH2 0x83C JUMPI PUSH2 0x83C PUSH2 0x2103 JUMP JUMPDEST BYTE PUSH1 0xF8 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 SHR PUSH1 0xF8 SHR PUSH2 0xCCE JUMP JUMPDEST DUP3 DUP3 PUSH2 0x85F DUP2 PUSH2 0x22F8 JUMP JUMPDEST SWAP4 POP PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x874 JUMPI PUSH2 0x874 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP PUSH2 0x8B5 DUP5 PUSH2 0x899 PUSH1 0x2 DUP5 PUSH2 0x22D7 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP2 LT PUSH2 0x8AC JUMPI PUSH2 0x8AC PUSH2 0x2103 JUMP JUMPDEST BYTE PUSH1 0xF AND PUSH2 0xCCE JUMP JUMPDEST DUP3 DUP3 PUSH2 0x8C0 DUP2 PUSH2 0x22F8 JUMP JUMPDEST SWAP4 POP PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x8D5 JUMPI PUSH2 0x8D5 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP PUSH2 0x80C JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x1 PUSH2 0x905 DUP3 PUSH2 0xD01 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x937 JUMPI POP DUP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x91F JUMPI PUSH2 0x91F PUSH2 0x227C JUMP JUMPDEST DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x935 JUMPI PUSH2 0x935 PUSH2 0x227C JUMP JUMPDEST EQ JUMPDEST PUSH2 0x97D 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 0x3C4 JUMP JUMPDEST PUSH2 0x98A DUP5 PUSH1 0x80 ADD MLOAD PUSH2 0xD0E JUMP JUMPDEST SWAP3 POP PUSH2 0x999 DUP3 PUSH1 0x80 ADD MLOAD PUSH2 0xEB9 JUMP JUMPDEST DUP3 PUSH1 0x20 ADD SWAP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x9AF JUMPI PUSH2 0x9AF PUSH2 0x227C JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x9C2 JUMPI PUSH2 0x9C2 PUSH2 0x227C JUMP JUMPDEST DUP2 MSTORE POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 PUSH0 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0xA0B 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 0x3C4 JUMP JUMPDEST PUSH2 0xA1C DUP5 PUSH0 ADD MLOAD DUP6 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 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 0xA66 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 0x3C4 JUMP JUMPDEST PUSH2 0xA77 DUP5 PUSH0 ADD MLOAD DUP6 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x80 DUP6 ADD DUP2 SWAP1 MSTORE PUSH8 0xFFFFFFFFFFFFFFFE NOT ADD PUSH2 0xB11 JUMPI PUSH0 JUMPDEST DUP1 PUSH2 0xB0B JUMPI PUSH0 PUSH2 0xAAF DUP7 PUSH0 ADD MLOAD DUP8 PUSH1 0x40 ADD MLOAD PUSH2 0x1047 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND LT ISZERO PUSH2 0xB00 JUMPI DUP5 PUSH2 0xAD9 PUSH2 0xAD1 PUSH1 0x4 DUP5 PUSH2 0x2316 JUMP JUMPDEST DUP9 MLOAD SWAP1 PUSH2 0x10EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xAEA SWAP3 SWAP2 SWAP1 PUSH2 0x2343 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP5 POP PUSH2 0xB05 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP JUMPDEST POP PUSH2 0xA98 JUMP JUMPDEST POP PUSH2 0xA1F JUMP JUMPDEST PUSH1 0x80 DUP5 ADD MLOAD DUP5 MLOAD PUSH2 0xB21 SWAP2 PUSH2 0x10EC JUMP JUMPDEST SWAP3 POP PUSH2 0xA1F JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP3 MLOAD DUP2 PUSH2 0xB3B JUMPI PUSH2 0xB3B PUSH2 0x22C3 JUMP JUMPDEST DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xB53 JUMPI PUSH2 0xB53 PUSH2 0x1E54 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 0xB7D JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xC0C JUMPI PUSH0 PUSH2 0xBB1 DUP5 DUP4 PUSH1 0x2 MUL DUP2 MLOAD DUP2 LT PUSH2 0xBA4 JUMPI PUSH2 0xBA4 PUSH2 0x2103 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0xF8 SHR PUSH2 0x1270 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xBCF DUP6 DUP5 PUSH1 0x2 MUL PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0xBA4 JUMPI PUSH2 0xBA4 PUSH2 0x2103 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 PUSH1 0x10 MUL ADD PUSH1 0xF8 SHL DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xBEC JUMPI PUSH2 0xBEC PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP POP POP PUSH1 0x1 ADD PUSH2 0xB82 JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xC1C DUP3 PUSH2 0x1334 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 0xC49 DUP3 PUSH2 0xD01 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0xC7B JUMPI POP DUP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xC63 JUMPI PUSH2 0xC63 PUSH2 0x227C JUMP JUMPDEST DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xC79 JUMPI PUSH2 0xC79 PUSH2 0x227C JUMP JUMPDEST EQ JUMPDEST PUSH2 0xCC1 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 0x3C4 JUMP JUMPDEST PUSH2 0x98A DUP5 PUSH1 0x80 ADD MLOAD PUSH2 0x1340 JUMP JUMPDEST PUSH0 PUSH1 0xA DUP3 PUSH1 0xFF AND LT PUSH2 0xCED JUMPI PUSH2 0xCE5 DUP3 PUSH1 0x57 PUSH2 0x2371 JUMP JUMPDEST PUSH1 0xF8 SHL PUSH2 0xC35 JUMP JUMPDEST PUSH2 0xCF8 DUP3 PUSH1 0x30 PUSH2 0x2371 JUMP JUMPDEST PUSH1 0xF8 SHL SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xC35 DUP3 PUSH0 ADD MLOAD PUSH2 0x1482 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x4 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0xD4E 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH2 0xD60 DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 JUMP JUMPDEST SWAP1 POP PUSH2 0xD6D DUP2 PUSH1 0x1 PUSH2 0x22A4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xD8D JUMPI PUSH2 0xD8D PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xDC6 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xDB3 PUSH2 0x1CA2 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xDAB JUMPI SWAP1 POP JUMPDEST POP SWAP4 POP PUSH0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0xE89 JUMPI PUSH2 0xDE5 DUP7 PUSH2 0x14B9 JUMP JUMPDEST SWAP6 POP PUSH2 0xDF0 DUP7 PUSH2 0x14E1 JUMP JUMPDEST DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xE02 JUMPI PUSH2 0xE02 PUSH2 0x2103 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 0xE5A JUMPI PUSH0 PUSH2 0xE29 DUP8 PUSH2 0xD0E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 DUP3 MLOAD PUSH2 0xE3A SWAP2 SWAP1 PUSH2 0x238A JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0xE4A JUMPI PUSH2 0xE4A PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP7 POP POP PUSH2 0xE81 JUMP JUMPDEST PUSH1 0x5 PUSH1 0xFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND SUB PUSH2 0xE76 JUMPI PUSH0 PUSH2 0xE29 DUP8 PUSH2 0x1578 JUMP JUMPDEST PUSH2 0xE7F DUP7 PUSH2 0x175E JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 ADD PUSH2 0xDCB JUMP JUMPDEST POP DUP5 DUP5 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 MLOAD DUP2 LT PUSH2 0xEA6 JUMPI PUSH2 0xEA6 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xECD DUP3 MLOAD DUP1 MLOAD MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD LT ISZERO SWAP1 JUMP JUMPDEST PUSH2 0xF7B JUMPI PUSH1 0x6 DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND GT PUSH2 0xF15 JUMPI PUSH1 0x40 DUP3 ADD MLOAD PUSH6 0x20201838083 PUSH1 0xD1 SHL SWAP1 PUSH1 0xFF AND PUSH1 0x7 DUP2 LT PUSH2 0xF03 JUMPI PUSH2 0xF03 PUSH2 0x2103 JUMP JUMPDEST BYTE PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x227C JUMP JUMPDEST DUP2 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND PUSH1 0x7 SUB PUSH2 0xF7B JUMPI DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x14 EQ DUP1 PUSH2 0xF41 JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x15 EQ JUMPDEST ISZERO PUSH2 0xF4E JUMPI POP PUSH1 0x2 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x19 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0xF6E JUMPI POP PUSH1 0x1B DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0xF7B JUMPI POP PUSH1 0x5 SWAP2 SWAP1 POP JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x18 DUP3 PUSH1 0xFF AND LT ISZERO PUSH2 0xF97 JUMPI POP PUSH1 0xFF DUP2 AND PUSH2 0xC35 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x18 SUB PUSH2 0xFB5 JUMPI PUSH2 0xFAB DUP4 PUSH2 0x191E JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP PUSH2 0xC35 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x19 SUB PUSH2 0xFD4 JUMPI PUSH2 0xFC9 DUP4 PUSH2 0x197E JUMP JUMPDEST PUSH2 0xFFFF AND SWAP1 POP PUSH2 0xC35 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1A SUB PUSH2 0xFF5 JUMPI PUSH2 0xFE8 DUP4 PUSH2 0x19E9 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH2 0xC35 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1B SUB PUSH2 0x1010 JUMPI PUSH2 0x1009 DUP4 PUSH2 0x1A47 JUMP JUMPDEST SWAP1 POP PUSH2 0xC35 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1F SUB PUSH2 0x1029 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH2 0xC35 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1052 DUP5 PUSH2 0x191E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xFF AND PUSH1 0xFF SUB PUSH2 0x106F JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 POP POP PUSH2 0xC35 JUMP JUMPDEST PUSH2 0x107C DUP5 DUP3 PUSH1 0x1F AND PUSH2 0xF80 JUMP JUMPDEST SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP4 AND LT PUSH2 0x10B2 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 0x3C4 JUMP JUMPDEST PUSH1 0xFF DUP4 AND PUSH1 0x7 PUSH1 0x5 DUP4 SWAP1 SHR AND EQ PUSH2 0x8F0 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 0x3C4 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 0x110F JUMPI PUSH2 0x110F PUSH2 0x1E54 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 0x1139 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND LT ISZERO PUSH2 0x1267 JUMPI PUSH0 PUSH2 0x1162 DUP6 PUSH2 0x191E JUMP JUMPDEST SWAP1 POP PUSH1 0x80 DUP2 AND ISZERO PUSH2 0x1229 JUMPI PUSH1 0xE0 DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x119E JUMPI PUSH2 0x1182 DUP6 PUSH2 0x191E 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 0x1229 JUMP JUMPDEST PUSH1 0xF0 DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x11E3 JUMPI PUSH2 0x11B3 DUP6 PUSH2 0x191E JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0x6 PUSH2 0x11C1 DUP8 PUSH2 0x191E 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 0x1229 JUMP JUMPDEST PUSH2 0x11EC DUP6 PUSH2 0x191E JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0x6 PUSH2 0x11FA DUP8 PUSH2 0x191E JUMP JUMPDEST PUSH1 0x3F AND SWAP1 SHL PUSH1 0xC PUSH2 0x120A DUP9 PUSH2 0x191E 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 0x1248 JUMPI PUSH2 0x1248 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP POP PUSH1 0x1 ADD PUSH2 0x113E JUMP JUMPDEST POP SWAP1 DUP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x30 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x1289 JUMPI POP PUSH1 0x39 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x1299 JUMPI PUSH2 0xC35 PUSH1 0x30 DUP4 PUSH2 0x239D JUMP JUMPDEST PUSH1 0x41 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x12B1 JUMPI POP PUSH1 0x46 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x12CC JUMPI PUSH2 0x12C1 PUSH1 0x41 DUP4 PUSH2 0x239D JUMP JUMPDEST PUSH2 0xC35 SWAP1 PUSH1 0xA PUSH2 0x2371 JUMP JUMPDEST PUSH1 0x61 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x12E4 JUMPI POP PUSH1 0x66 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x12F4 JUMPI PUSH2 0x12C1 PUSH1 0x61 DUP4 PUSH2 0x239D 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH2 0xC35 DUP3 PUSH1 0x14 PUSH2 0x1AA5 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x4 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0x1380 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH2 0x1392 DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND LT ISZERO PUSH2 0x1456 JUMPI DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x13C6 JUMPI PUSH2 0x13C6 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x13EF JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP4 POP PUSH0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0x1450 JUMPI PUSH0 PUSH2 0x1412 DUP8 PUSH0 ADD MLOAD PUSH2 0x1B1A JUMP JUMPDEST SWAP1 POP PUSH2 0x141D DUP2 PUSH2 0x9CD JUMP JUMPDEST DUP7 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x142F JUMPI PUSH2 0x142F PUSH2 0x2103 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 0x13F4 JUMP JUMPDEST POP PUSH2 0x147A 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 0x3C4 JUMP JUMPDEST POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xF0 DUP3 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x1497 JUMPI PUSH2 0x1497 PUSH2 0x227C JUMP JUMPDEST EQ DUP1 PUSH2 0xC35 JUMPI POP PUSH1 0xF1 DUP3 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x14B2 JUMPI PUSH2 0x14B2 PUSH2 0x227C JUMP JUMPDEST EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x14C1 PUSH2 0x1CA2 JUMP JUMPDEST DUP2 MLOAD DUP1 MLOAD MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD LT ISZERO PUSH2 0x14DD JUMPI DUP2 MLOAD PUSH2 0xC35 SWAP1 PUSH2 0x1B1A JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x14E9 PUSH2 0x1CA2 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 PUSH0 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 0x15B8 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH2 0x15CA DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 JUMP JUMPDEST PUSH2 0x15D5 SWAP1 PUSH1 0x2 PUSH2 0x23B6 JUMP JUMPDEST SWAP1 POP PUSH2 0x15E2 DUP2 PUSH1 0x1 PUSH2 0x22A4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1602 JUMPI PUSH2 0x1602 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x163B JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1628 PUSH2 0x1CA2 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1620 JUMPI SWAP1 POP JUMPDEST POP SWAP4 POP PUSH0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0xE89 JUMPI PUSH2 0x165A DUP7 PUSH2 0x14B9 JUMP JUMPDEST SWAP6 POP PUSH2 0x1665 DUP7 PUSH2 0x14E1 JUMP JUMPDEST DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1677 JUMPI PUSH2 0x1677 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x168D PUSH1 0x2 DUP3 PUSH2 0x23D8 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x16A2 JUMPI POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x3 EQ ISZERO JUMPDEST ISZERO PUSH2 0x16D0 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 0x3C4 JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x4 EQ DUP1 PUSH2 0x16ED JUMPI POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x5 EQ JUMPDEST ISZERO PUSH2 0x174B JUMPI PUSH1 0x40 DUP7 ADD MLOAD PUSH0 SWAP1 PUSH1 0xFF AND PUSH1 0x4 EQ PUSH2 0x1711 JUMPI PUSH2 0x170C DUP8 PUSH2 0x1578 JUMP JUMPDEST PUSH2 0x171A JUMP JUMPDEST PUSH2 0x171A DUP8 PUSH2 0xD0E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 DUP3 MLOAD PUSH2 0x172B SWAP2 SWAP1 PUSH2 0x238A JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x173B JUMPI PUSH2 0x173B PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP7 POP POP PUSH2 0x1756 JUMP JUMPDEST PUSH2 0x1754 DUP7 PUSH2 0x175E JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x1640 JUMP JUMPDEST PUSH2 0x1766 PUSH2 0x1CA2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND ISZERO DUP1 PUSH2 0x1781 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x1 EQ JUMPDEST DUP1 PUSH2 0x17BA JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x7 EQ DUP1 ISZERO PUSH2 0x17A6 JUMPI POP PUSH1 0x19 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x17BA JUMPI POP PUSH1 0x1B DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x17EC JUMPI PUSH2 0x17C8 DUP3 PUSH2 0x1C37 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP3 PUSH0 ADD MLOAD PUSH1 0x20 ADD DUP2 DUP2 MLOAD PUSH2 0x17E5 SWAP2 SWAP1 PUSH2 0x23EB JUMP JUMPDEST SWAP1 MSTORE POP POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x3 EQ DUP1 PUSH2 0x1809 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x2 EQ JUMPDEST ISZERO PUSH2 0x184A JUMPI PUSH0 PUSH2 0x1820 DUP4 PUSH0 ADD MLOAD DUP5 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP4 PUSH0 ADD MLOAD PUSH1 0x20 ADD DUP2 DUP2 MLOAD PUSH2 0x1840 SWAP2 SWAP1 PUSH2 0x23EB JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0x14DD SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x4 EQ DUP1 PUSH2 0x1867 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x5 EQ JUMPDEST ISZERO PUSH2 0x188F JUMPI PUSH2 0x187D DUP3 PUSH0 ADD MLOAD DUP4 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 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 0x18C1 JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x14 EQ ISZERO DUP1 ISZERO PUSH2 0x18C1 JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x15 EQ ISZERO JUMPDEST ISZERO PUSH2 0x14DD 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 0x3C4 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x20 ADD MLOAD DUP3 PUSH0 ADD MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1954 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 0x3C4 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD DUP1 DUP4 ADD PUSH1 0x1 ADD MLOAD SWAP6 POP SWAP1 DUP2 SWAP1 PUSH2 0x1971 DUP3 PUSH2 0x23FE JUMP JUMPDEST DUP2 MSTORE POP POP POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x2 PUSH2 0x1990 SWAP2 SWAP1 PUSH2 0x23EB JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x19BE 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 0x3C4 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x2 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x19DC DUP3 DUP5 PUSH2 0x23EB JUMP JUMPDEST SWAP1 MSTORE POP SWAP4 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x4 PUSH2 0x19FB SWAP2 SWAP1 PUSH2 0x23EB JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1A29 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 0x3C4 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x4 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x19DC DUP3 DUP5 PUSH2 0x23EB JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x8 PUSH2 0x1A59 SWAP2 SWAP1 PUSH2 0x23EB JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1A87 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 0x3C4 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x8 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x19DC DUP3 DUP5 PUSH2 0x23EB JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 PUSH1 0xFF AND GT ISZERO PUSH2 0x1ABA JUMPI PUSH2 0x1ABA PUSH2 0x2416 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0xFF AND DUP5 MLOAD GT PUSH2 0x1ACD JUMPI DUP4 MLOAD PUSH2 0x1AD2 JUMP JUMPDEST DUP3 PUSH1 0xFF AND JUMPDEST SWAP1 POP PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B12 JUMPI DUP1 PUSH1 0x8 MUL DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1AF4 JUMPI PUSH2 0x1AF4 PUSH2 0x2103 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 0x1AD6 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1B22 PUSH2 0x1CA2 JUMP JUMPDEST DUP2 MLOAD MLOAD DUP3 SWAP1 PUSH0 SUB PUSH2 0x1B46 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9036D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xFF DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 PUSH1 0x1 JUMPDEST DUP1 ISZERO PUSH2 0x1BC7 JUMPI PUSH2 0x1B65 DUP10 PUSH2 0x191E JUMP JUMPDEST SWAP6 POP DUP2 PUSH2 0x1B71 DUP2 PUSH2 0x23FE 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 0x1BC0 JUMPI PUSH1 0x20 DUP10 ADD MLOAD PUSH2 0x1B9C DUP11 DUP7 PUSH2 0xF80 JUMP JUMPDEST SWAP4 POP DUP1 DUP11 PUSH1 0x20 ADD MLOAD PUSH2 0x1BAE SWAP2 SWAP1 PUSH2 0x238A JUMP JUMPDEST PUSH2 0x1BB8 SWAP1 DUP5 PUSH2 0x23EB JUMP JUMPDEST SWAP3 POP POP PUSH2 0x1B56 JUMP JUMPDEST POP PUSH0 PUSH2 0x1B56 JUMP JUMPDEST PUSH1 0x7 PUSH1 0xFF DUP7 AND GT ISZERO PUSH2 0x1BF1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xBD2AC879 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0xFF DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3C4 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 PUSH0 PUSH1 0x18 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO PUSH2 0x1C4F JUMPI POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1C DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO PUSH2 0x1C7E JUMPI PUSH1 0x18 DUP3 PUSH1 0x60 ADD MLOAD PUSH2 0x1C70 SWAP2 SWAP1 PUSH2 0x239D 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 0x3C4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x100 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 PUSH1 0xC0 DUP3 ADD SWAP1 DUP2 MSTORE PUSH0 PUSH1 0xE0 DUP4 ADD MSTORE DUP2 SWAP1 DUP2 MSTORE PUSH0 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 0x1CFB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1D10 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1D1B DUP2 PUSH2 0x1CE7 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1D2B DUP2 PUSH2 0x1CE7 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1D4E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1D6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x1D7A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1D8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x1DA0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1DCB JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1DB3 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x1DEA DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1DB1 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 PUSH0 PUSH2 0x1E16 PUSH1 0xA0 DUP4 ADD DUP8 PUSH2 0x1DD3 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x1E28 DUP2 DUP8 PUSH2 0x1DD3 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 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 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 0x1E8A JUMPI PUSH2 0x1E8A PUSH2 0x1E54 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 0x1E8A JUMPI PUSH2 0x1E8A PUSH2 0x1E54 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 0x1E8A JUMPI PUSH2 0x1E8A PUSH2 0x1E54 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 0x1EFC JUMPI PUSH2 0x1EFC PUSH2 0x1E54 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 0xF7B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0xF7B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xC0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F3A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1F42 PUSH2 0x1E68 JUMP JUMPDEST SWAP1 POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1F59 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH1 0x40 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x1F6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1F72 PUSH2 0x1E90 JUMP JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1F87 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x1F97 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1FB0 JUMPI PUSH2 0x1FB0 PUSH2 0x1E54 JUMP JUMPDEST PUSH2 0x1FC3 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x1ED4 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP8 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x1FD7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 SWAP3 DUP3 ADD DUP4 ADD MSTORE DUP4 MSTORE SWAP3 DUP4 ADD CALLDATALOAD DUP3 DUP5 ADD MSTORE POP DUP3 MSTORE PUSH2 0x2002 SWAP1 DUP4 ADD PUSH2 0x1F1A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2013 PUSH1 0x40 DUP4 ADD PUSH2 0x1F1A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x2024 PUSH1 0x60 DUP4 ADD PUSH2 0x1F1A JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x2035 PUSH1 0x80 DUP4 ADD PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x2046 PUSH1 0xA0 DUP4 ADD PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2061 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2076 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH1 0xA0 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x2087 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x208F PUSH2 0x1EB2 JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x100 DUP2 LT PUSH2 0x209E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP3 ADD CALLDATALOAD PUSH1 0x14 DUP2 LT PUSH2 0x20B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP3 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x20CC PUSH1 0x60 DUP4 ADD PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP3 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x20E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x20F5 DUP7 DUP3 DUP6 ADD PUSH2 0x1F2A JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 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 PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x216E JUMPI PUSH1 0x5F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x2159 DUP6 DUP4 MLOAD PUSH2 0x1DD3 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x213D 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 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2257 JUMPI DUP6 DUP4 SUB PUSH1 0x1F NOT ADD DUP6 MSTORE DUP2 SLOAD PUSH0 SWAP1 PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x21C1 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x21DF JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP8 MSTORE PUSH1 0x20 DUP8 ADD DUP2 DUP1 ISZERO PUSH2 0x21FA JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x2210 JUMPI PUSH2 0x223C JUMP JUMPDEST PUSH1 0xFF NOT DUP6 AND DUP3 MSTORE DUP4 ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD SWAP6 POP PUSH2 0x223C JUMP JUMPDEST PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x2236 JUMPI DUP2 SLOAD DUP5 DUP3 ADD MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x20 ADD PUSH2 0x221A 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 0x2198 JUMP JUMPDEST POP SWAP1 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2275 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x2290 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x22E9 JUMPI PUSH2 0x22E9 PUSH2 0x22C3 JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 SUB PUSH2 0x230D JUMPI PUSH2 0x230D PUSH2 0x2290 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND DUP1 PUSH2 0x232E JUMPI PUSH2 0x232E PUSH2 0x22C3 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP4 MLOAD PUSH2 0x2354 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x1DB1 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x2368 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1DB1 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 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x2290 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x2290 JUMP JUMPDEST PUSH1 0xFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x2290 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 0x8F0 JUMPI PUSH2 0x8F0 PUSH2 0x2290 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x23E6 JUMPI PUSH2 0x23E6 PUSH2 0x22C3 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x2290 JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0x240F JUMPI PUSH2 0x240F PUSH2 0x2290 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID PUSH2 0x1647 CALLDATASIZE PC 0xE8 PUSH28 0x23E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58FF611647 CALLDATASIZE PC 0xE8 PUSH28 0x23E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58F9A26469 PUSH17 0x667358221220B43BBDCDF1E6990AF6EF18 PUSH2 0xB380 0xDB REVERT BALANCE COINBASE 0xB2 0xB1 0xFB 0xDF MULMOD PUSH30 0x97179470F57636CD64736F6C634300081C00330000000000000000000000 ","sourceMap":"298:8305:30:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;298:8305:30;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_hexCharToByte_16556":{"entryPoint":4720,"id":16556,"parameterSlots":1,"returnSlots":1},"@_readIndefiniteStringLength_20051":{"entryPoint":4167,"id":20051,"parameterSlots":2,"returnSlots":1},"@_toHexChar_16592":{"entryPoint":3278,"id":16592,"parameterSlots":1,"returnSlots":1},"@data_9648":{"entryPoint":null,"id":9648,"parameterSlots":0,"returnSlots":1},"@eof_18652":{"entryPoint":null,"id":18652,"parameterSlots":1,"returnSlots":1},"@fetchCborArray_14268":{"entryPoint":2295,"id":14268,"parameterSlots":1,"returnSlots":1},"@fetchUint64Array_14428":{"entryPoint":3131,"id":14428,"parameterSlots":1,"returnSlots":1},"@fork_16726":{"entryPoint":null,"id":16726,"parameterSlots":1,"returnSlots":1},"@fork_18813":{"entryPoint":5345,"id":18813,"parameterSlots":1,"returnSlots":1},"@fromBuffer_18786":{"entryPoint":6938,"id":18786,"parameterSlots":1,"returnSlots":1},"@gt_14915":{"entryPoint":3109,"id":14915,"parameterSlots":2,"returnSlots":1},"@keepWaiting_14100":{"entryPoint":3329,"id":14100,"parameterSlots":1,"returnSlots":1},"@keepWaiting_14837":{"entryPoint":5250,"id":14837,"parameterSlots":1,"returnSlots":1},"@parseHexString_15900":{"entryPoint":2856,"id":15900,"parameterSlots":1,"returnSlots":1},"@parseWitOracleProofOfReserve_9346":{"entryPoint":1735,"id":9346,"parameterSlots":1,"returnSlots":1},"@peekLength_18997":{"entryPoint":7223,"id":18997,"parameterSlots":1,"returnSlots":1},"@peekRadonDataType_14505":{"entryPoint":3769,"id":14505,"parameterSlots":1,"returnSlots":1},"@processWitOracleQueryResult_9527":{"entryPoint":852,"id":9527,"parameterSlots":3,"returnSlots":5},"@readArray_19118":{"entryPoint":3342,"id":19118,"parameterSlots":1,"returnSlots":1},"@readLength_19315":{"entryPoint":3968,"id":19315,"parameterSlots":2,"returnSlots":1},"@readMap_19249":{"entryPoint":5496,"id":19249,"parameterSlots":1,"returnSlots":1},"@readString_19829":{"entryPoint":2598,"id":19829,"parameterSlots":1,"returnSlots":1},"@readText_17546":{"entryPoint":4332,"id":17546,"parameterSlots":2,"returnSlots":1},"@readUint16_17615":{"entryPoint":6526,"id":17615,"parameterSlots":1,"returnSlots":1},"@readUint32_17651":{"entryPoint":6633,"id":17651,"parameterSlots":1,"returnSlots":1},"@readUint64_17687":{"entryPoint":6727,"id":17687,"parameterSlots":1,"returnSlots":1},"@readUint8_17579":{"entryPoint":6430,"id":17579,"parameterSlots":1,"returnSlots":1},"@readUintArray_19992":{"entryPoint":4928,"id":19992,"parameterSlots":1,"returnSlots":1},"@readUint_19921":{"entryPoint":2509,"id":19921,"parameterSlots":1,"returnSlots":1},"@settle_18837":{"entryPoint":5305,"id":18837,"parameterSlots":1,"returnSlots":1},"@skip_18957":{"entryPoint":5982,"id":18957,"parameterSlots":1,"returnSlots":1},"@toAddress_15527":{"entryPoint":3090,"id":15527,"parameterSlots":1,"returnSlots":1},"@toBytes20_15559":{"entryPoint":4916,"id":15559,"parameterSlots":1,"returnSlots":1},"@toFixedBytes_15628":{"entryPoint":6821,"id":15628,"parameterSlots":2,"returnSlots":1},"@toHexString_15738":{"entryPoint":2025,"id":15738,"parameterSlots":1,"returnSlots":1},"@witOracleQueryWitnetValueTransferProofOfInclusion_9640":{"entryPoint":219,"id":9640,"parameterSlots":3,"returnSlots":1},"abi_decode_struct_CBOR":{"entryPoint":7978,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_WitOracle_$9767t_contract$_IWitOracleRadonRequestModal_$10613t_userDefinedValueType$_TransactionHash_$13108":{"entryPoint":7422,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_struct$_DataResult_$13240_memory_ptr":{"entryPoint":8273,"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":7484,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_userDefinedValueType$_RadonHash_$13102_fromMemory":{"entryPoint":8805,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint8":{"entryPoint":7962,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_userDefinedValueType_Timestamp":{"entryPoint":7940,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_string":{"entryPoint":7635,"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":9027,"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":8471,"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_$13102_t_struct$_QuerySLA_$13324_memory_ptr_t_struct$_QueryCallback_$13287_memory_ptr__to_t_bytes32_t_struct$_QuerySLA_$13324_memory_ptr_t_struct$_QueryCallback_$13287_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_userDefinedValueType$_TransactionHash_$13108_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":7678,"id":null,"parameterSlots":6,"returnSlots":1},"allocate_memory":{"entryPoint":7892,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_memory_2692":{"entryPoint":7784,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_2693":{"entryPoint":7824,"id":null,"parameterSlots":0,"returnSlots":1},"allocate_memory_2695":{"entryPoint":7858,"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":9195,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint64":{"entryPoint":8868,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint8":{"entryPoint":9073,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint64":{"entryPoint":8982,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint8":{"entryPoint":8919,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint64":{"entryPoint":9142,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":9098,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint8":{"entryPoint":9117,"id":null,"parameterSlots":2,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":7601,"id":null,"parameterSlots":3,"returnSlots":0},"increment_t_uint256":{"entryPoint":9214,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint8":{"entryPoint":8952,"id":null,"parameterSlots":1,"returnSlots":1},"mod_t_uint256":{"entryPoint":9176,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x01":{"entryPoint":9238,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x11":{"entryPoint":8848,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":8899,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":8828,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":8451,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":7764,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_WitOracle":{"entryPoint":7399,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:18633:51","nodeType":"YulBlock","src":"0:18633: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_$9767t_contract$_IWitOracleRadonRequestModal_$10613t_userDefinedValueType$_TransactionHash_$13108","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_$13108_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_2692","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_2693","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_2695","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_2692","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_2693","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_2695","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_$13240_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:2401:51","nodeType":"YulBlock","src":"8059:2401: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:1370:51","nodeType":"YulBlock","src":"9061:1370: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:17:51","nodeType":"YulVariableDeclaration","src":"9206:17:51","value":{"kind":"number","nativeSrc":"9222:1:51","nodeType":"YulLiteral","src":"9222:1:51","type":"","value":"0"},"variables":[{"name":"length_2","nativeSrc":"9210:8:51","nodeType":"YulTypedName","src":"9210:8:51","type":""}]},{"nativeSrc":"9236:29:51","nodeType":"YulAssignment","src":"9236:29:51","value":{"arguments":[{"kind":"number","nativeSrc":"9252:1:51","nodeType":"YulLiteral","src":"9252:1:51","type":"","value":"1"},{"name":"slotValue","nativeSrc":"9255:9:51","nodeType":"YulIdentifier","src":"9255:9:51"}],"functionName":{"name":"shr","nativeSrc":"9248:3:51","nodeType":"YulIdentifier","src":"9248:3:51"},"nativeSrc":"9248:17:51","nodeType":"YulFunctionCall","src":"9248:17:51"},"variableNames":[{"name":"length_2","nativeSrc":"9236:8:51","nodeType":"YulIdentifier","src":"9236:8:51"}]},{"nativeSrc":"9278:43:51","nodeType":"YulVariableDeclaration","src":"9278:43:51","value":{"arguments":[{"name":"slotValue","nativeSrc":"9308:9:51","nodeType":"YulIdentifier","src":"9308:9:51"},{"kind":"number","nativeSrc":"9319:1:51","nodeType":"YulLiteral","src":"9319:1:51","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"9304:3:51","nodeType":"YulIdentifier","src":"9304:3:51"},"nativeSrc":"9304:17:51","nodeType":"YulFunctionCall","src":"9304:17:51"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"9282:18:51","nodeType":"YulTypedName","src":"9282:18:51","type":""}]},{"body":{"nativeSrc":"9376:63:51","nodeType":"YulBlock","src":"9376:63:51","statements":[{"nativeSrc":"9394:31:51","nodeType":"YulAssignment","src":"9394:31:51","value":{"arguments":[{"name":"length_2","nativeSrc":"9410:8:51","nodeType":"YulIdentifier","src":"9410:8:51"},{"kind":"number","nativeSrc":"9420:4:51","nodeType":"YulLiteral","src":"9420:4:51","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"9406:3:51","nodeType":"YulIdentifier","src":"9406:3:51"},"nativeSrc":"9406:19:51","nodeType":"YulFunctionCall","src":"9406:19:51"},"variableNames":[{"name":"length_2","nativeSrc":"9394:8:51","nodeType":"YulIdentifier","src":"9394:8:51"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"9344:18:51","nodeType":"YulIdentifier","src":"9344:18:51"}],"functionName":{"name":"iszero","nativeSrc":"9337:6:51","nodeType":"YulIdentifier","src":"9337:6:51"},"nativeSrc":"9337:26:51","nodeType":"YulFunctionCall","src":"9337:26:51"},"nativeSrc":"9334:105:51","nodeType":"YulIf","src":"9334:105:51"},{"body":{"nativeSrc":"9510:127:51","nodeType":"YulBlock","src":"9510:127:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9535:1:51","nodeType":"YulLiteral","src":"9535:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9542:3:51","nodeType":"YulLiteral","src":"9542:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"9547:10:51","nodeType":"YulLiteral","src":"9547:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9538:3:51","nodeType":"YulIdentifier","src":"9538:3:51"},"nativeSrc":"9538:20:51","nodeType":"YulFunctionCall","src":"9538:20:51"}],"functionName":{"name":"mstore","nativeSrc":"9528:6:51","nodeType":"YulIdentifier","src":"9528:6:51"},"nativeSrc":"9528:31:51","nodeType":"YulFunctionCall","src":"9528:31:51"},"nativeSrc":"9528:31:51","nodeType":"YulExpressionStatement","src":"9528:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9583:1:51","nodeType":"YulLiteral","src":"9583:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"9586:4:51","nodeType":"YulLiteral","src":"9586:4:51","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"9576:6:51","nodeType":"YulIdentifier","src":"9576:6:51"},"nativeSrc":"9576:15:51","nodeType":"YulFunctionCall","src":"9576:15:51"},"nativeSrc":"9576:15:51","nodeType":"YulExpressionStatement","src":"9576:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9615:1:51","nodeType":"YulLiteral","src":"9615:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"9618:4:51","nodeType":"YulLiteral","src":"9618:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9608:6:51","nodeType":"YulIdentifier","src":"9608:6:51"},"nativeSrc":"9608:15:51","nodeType":"YulFunctionCall","src":"9608:15:51"},"nativeSrc":"9608:15:51","nodeType":"YulExpressionStatement","src":"9608:15:51"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"9458:18:51","nodeType":"YulIdentifier","src":"9458:18:51"},{"arguments":[{"name":"length_2","nativeSrc":"9481:8:51","nodeType":"YulIdentifier","src":"9481:8:51"},{"kind":"number","nativeSrc":"9491:4:51","nodeType":"YulLiteral","src":"9491:4:51","type":"","value":"0x20"}],"functionName":{"name":"lt","nativeSrc":"9478:2:51","nodeType":"YulIdentifier","src":"9478:2:51"},"nativeSrc":"9478:18:51","nodeType":"YulFunctionCall","src":"9478:18:51"}],"functionName":{"name":"eq","nativeSrc":"9455:2:51","nodeType":"YulIdentifier","src":"9455:2:51"},"nativeSrc":"9455:42:51","nodeType":"YulFunctionCall","src":"9455:42:51"},"nativeSrc":"9452:185:51","nodeType":"YulIf","src":"9452:185:51"},{"nativeSrc":"9650:74:51","nodeType":"YulVariableDeclaration","src":"9650:74:51","value":{"arguments":[{"name":"tail_3","nativeSrc":"9707:6:51","nodeType":"YulIdentifier","src":"9707:6:51"},{"name":"length_2","nativeSrc":"9715:8:51","nodeType":"YulIdentifier","src":"9715:8:51"}],"functionName":{"name":"array_storeLengthForEncoding_string_library","nativeSrc":"9663:43:51","nodeType":"YulIdentifier","src":"9663:43:51"},"nativeSrc":"9663:61:51","nodeType":"YulFunctionCall","src":"9663:61:51"},"variables":[{"name":"pos_2","nativeSrc":"9654:5:51","nodeType":"YulTypedName","src":"9654:5:51","type":""}]},{"cases":[{"body":{"nativeSrc":"9782:139:51","nodeType":"YulBlock","src":"9782:139:51","statements":[{"expression":{"arguments":[{"name":"pos_2","nativeSrc":"9807:5:51","nodeType":"YulIdentifier","src":"9807:5:51"},{"arguments":[{"name":"slotValue","nativeSrc":"9818:9:51","nodeType":"YulIdentifier","src":"9818:9:51"},{"arguments":[{"kind":"number","nativeSrc":"9833:3:51","nodeType":"YulLiteral","src":"9833:3:51","type":"","value":"255"}],"functionName":{"name":"not","nativeSrc":"9829:3:51","nodeType":"YulIdentifier","src":"9829:3:51"},"nativeSrc":"9829:8:51","nodeType":"YulFunctionCall","src":"9829:8:51"}],"functionName":{"name":"and","nativeSrc":"9814:3:51","nodeType":"YulIdentifier","src":"9814:3:51"},"nativeSrc":"9814:24:51","nodeType":"YulFunctionCall","src":"9814:24:51"}],"functionName":{"name":"mstore","nativeSrc":"9800:6:51","nodeType":"YulIdentifier","src":"9800:6:51"},"nativeSrc":"9800:39:51","nodeType":"YulFunctionCall","src":"9800:39:51"},"nativeSrc":"9800:39:51","nodeType":"YulExpressionStatement","src":"9800:39:51"},{"nativeSrc":"9856:51:51","nodeType":"YulAssignment","src":"9856:51:51","value":{"arguments":[{"name":"pos_2","nativeSrc":"9867:5:51","nodeType":"YulIdentifier","src":"9867:5:51"},{"arguments":[{"kind":"number","nativeSrc":"9878:1:51","nodeType":"YulLiteral","src":"9878:1:51","type":"","value":"5"},{"arguments":[{"arguments":[{"name":"length_2","nativeSrc":"9895:8:51","nodeType":"YulIdentifier","src":"9895:8:51"}],"functionName":{"name":"iszero","nativeSrc":"9888:6:51","nodeType":"YulIdentifier","src":"9888:6:51"},"nativeSrc":"9888:16:51","nodeType":"YulFunctionCall","src":"9888:16:51"}],"functionName":{"name":"iszero","nativeSrc":"9881:6:51","nodeType":"YulIdentifier","src":"9881:6:51"},"nativeSrc":"9881:24:51","nodeType":"YulFunctionCall","src":"9881:24:51"}],"functionName":{"name":"shl","nativeSrc":"9874:3:51","nodeType":"YulIdentifier","src":"9874:3:51"},"nativeSrc":"9874:32:51","nodeType":"YulFunctionCall","src":"9874:32:51"}],"functionName":{"name":"add","nativeSrc":"9863:3:51","nodeType":"YulIdentifier","src":"9863:3:51"},"nativeSrc":"9863:44:51","nodeType":"YulFunctionCall","src":"9863:44:51"},"variableNames":[{"name":"ret","nativeSrc":"9856:3:51","nodeType":"YulIdentifier","src":"9856:3:51"}]}]},"nativeSrc":"9775:146:51","nodeType":"YulCase","src":"9775:146:51","value":{"kind":"number","nativeSrc":"9780:1:51","nodeType":"YulLiteral","src":"9780:1:51","type":"","value":"0"}},{"body":{"nativeSrc":"9941:375:51","nodeType":"YulBlock","src":"9941:375:51","statements":[{"nativeSrc":"9959:64:51","nodeType":"YulVariableDeclaration","src":"9959:64:51","value":{"arguments":[{"name":"srcPtr_1","nativeSrc":"10014:8:51","nodeType":"YulIdentifier","src":"10014:8:51"}],"functionName":{"name":"array_dataslot_array_string_storage_dyn","nativeSrc":"9974:39:51","nodeType":"YulIdentifier","src":"9974:39:51"},"nativeSrc":"9974:49:51","nodeType":"YulFunctionCall","src":"9974:49:51"},"variables":[{"name":"dataPos","nativeSrc":"9963:7:51","nodeType":"YulTypedName","src":"9963:7:51","type":""}]},{"nativeSrc":"10040:12:51","nodeType":"YulVariableDeclaration","src":"10040:12:51","value":{"kind":"number","nativeSrc":"10051:1:51","nodeType":"YulLiteral","src":"10051:1:51","type":"","value":"0"},"variables":[{"name":"i_2","nativeSrc":"10044:3:51","nodeType":"YulTypedName","src":"10044:3:51","type":""}]},{"body":{"nativeSrc":"10137:126:51","nodeType":"YulBlock","src":"10137:126:51","statements":[{"expression":{"arguments":[{"arguments":[{"name":"pos_2","nativeSrc":"10170:5:51","nodeType":"YulIdentifier","src":"10170:5:51"},{"name":"i_2","nativeSrc":"10177:3:51","nodeType":"YulIdentifier","src":"10177:3:51"}],"functionName":{"name":"add","nativeSrc":"10166:3:51","nodeType":"YulIdentifier","src":"10166:3:51"},"nativeSrc":"10166:15:51","nodeType":"YulFunctionCall","src":"10166:15:51"},{"arguments":[{"name":"dataPos","nativeSrc":"10189:7:51","nodeType":"YulIdentifier","src":"10189:7:51"}],"functionName":{"name":"sload","nativeSrc":"10183:5:51","nodeType":"YulIdentifier","src":"10183:5:51"},"nativeSrc":"10183:14:51","nodeType":"YulFunctionCall","src":"10183:14:51"}],"functionName":{"name":"mstore","nativeSrc":"10159:6:51","nodeType":"YulIdentifier","src":"10159:6:51"},"nativeSrc":"10159:39:51","nodeType":"YulFunctionCall","src":"10159:39:51"},"nativeSrc":"10159:39:51","nodeType":"YulExpressionStatement","src":"10159:39:51"},{"nativeSrc":"10219:26:51","nodeType":"YulAssignment","src":"10219:26:51","value":{"arguments":[{"name":"dataPos","nativeSrc":"10234:7:51","nodeType":"YulIdentifier","src":"10234:7:51"},{"kind":"number","nativeSrc":"10243:1:51","nodeType":"YulLiteral","src":"10243:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"10230:3:51","nodeType":"YulIdentifier","src":"10230:3:51"},"nativeSrc":"10230:15:51","nodeType":"YulFunctionCall","src":"10230:15:51"},"variableNames":[{"name":"dataPos","nativeSrc":"10219:7:51","nodeType":"YulIdentifier","src":"10219:7:51"}]}]},"condition":{"arguments":[{"name":"i_2","nativeSrc":"10080:3:51","nodeType":"YulIdentifier","src":"10080:3:51"},{"name":"length_2","nativeSrc":"10085:8:51","nodeType":"YulIdentifier","src":"10085:8:51"}],"functionName":{"name":"lt","nativeSrc":"10077:2:51","nodeType":"YulIdentifier","src":"10077:2:51"},"nativeSrc":"10077:17:51","nodeType":"YulFunctionCall","src":"10077:17:51"},"nativeSrc":"10069:194:51","nodeType":"YulForLoop","post":{"nativeSrc":"10095:25:51","nodeType":"YulBlock","src":"10095:25:51","statements":[{"nativeSrc":"10097:21:51","nodeType":"YulAssignment","src":"10097:21:51","value":{"arguments":[{"name":"i_2","nativeSrc":"10108:3:51","nodeType":"YulIdentifier","src":"10108:3:51"},{"kind":"number","nativeSrc":"10113:4:51","nodeType":"YulLiteral","src":"10113:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10104:3:51","nodeType":"YulIdentifier","src":"10104:3:51"},"nativeSrc":"10104:14:51","nodeType":"YulFunctionCall","src":"10104:14:51"},"variableNames":[{"name":"i_2","nativeSrc":"10097:3:51","nodeType":"YulIdentifier","src":"10097:3:51"}]}]},"pre":{"nativeSrc":"10073:3:51","nodeType":"YulBlock","src":"10073:3:51","statements":[]},"src":"10069:194:51"},{"nativeSrc":"10280:22:51","nodeType":"YulAssignment","src":"10280:22:51","value":{"arguments":[{"name":"pos_2","nativeSrc":"10291:5:51","nodeType":"YulIdentifier","src":"10291:5:51"},{"name":"i_2","nativeSrc":"10298:3:51","nodeType":"YulIdentifier","src":"10298:3:51"}],"functionName":{"name":"add","nativeSrc":"10287:3:51","nodeType":"YulIdentifier","src":"10287:3:51"},"nativeSrc":"10287:15:51","nodeType":"YulFunctionCall","src":"10287:15:51"},"variableNames":[{"name":"ret","nativeSrc":"10280:3:51","nodeType":"YulIdentifier","src":"10280:3:51"}]}]},"nativeSrc":"9934:382:51","nodeType":"YulCase","src":"9934:382:51","value":{"kind":"number","nativeSrc":"9939:1:51","nodeType":"YulLiteral","src":"9939:1:51","type":"","value":"1"}}],"expression":{"name":"outOfPlaceEncoding","nativeSrc":"9744:18:51","nodeType":"YulIdentifier","src":"9744:18:51"},"nativeSrc":"9737:579:51","nodeType":"YulSwitch","src":"9737:579:51"},{"nativeSrc":"10329:13:51","nodeType":"YulAssignment","src":"10329:13:51","value":{"name":"ret","nativeSrc":"10339:3:51","nodeType":"YulIdentifier","src":"10339:3:51"},"variableNames":[{"name":"tail_3","nativeSrc":"10329:6:51","nodeType":"YulIdentifier","src":"10329:6:51"}]},{"nativeSrc":"10355:28:51","nodeType":"YulAssignment","src":"10355:28:51","value":{"arguments":[{"name":"srcPtr_1","nativeSrc":"10371:8:51","nodeType":"YulIdentifier","src":"10371:8:51"},{"kind":"number","nativeSrc":"10381:1:51","nodeType":"YulLiteral","src":"10381:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"10367:3:51","nodeType":"YulIdentifier","src":"10367:3:51"},"nativeSrc":"10367:16:51","nodeType":"YulFunctionCall","src":"10367:16:51"},"variableNames":[{"name":"srcPtr_1","nativeSrc":"10355:8:51","nodeType":"YulIdentifier","src":"10355:8:51"}]},{"nativeSrc":"10396:25:51","nodeType":"YulAssignment","src":"10396:25:51","value":{"arguments":[{"name":"pos_1","nativeSrc":"10409:5:51","nodeType":"YulIdentifier","src":"10409:5:51"},{"kind":"number","nativeSrc":"10416:4:51","nodeType":"YulLiteral","src":"10416:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"10405:3:51","nodeType":"YulIdentifier","src":"10405:3:51"},"nativeSrc":"10405:16:51","nodeType":"YulFunctionCall","src":"10405:16:51"},"variableNames":[{"name":"pos_1","nativeSrc":"10396:5:51","nodeType":"YulIdentifier","src":"10396: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:1427: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:1427:51"},{"nativeSrc":"10440:14:51","nodeType":"YulAssignment","src":"10440:14:51","value":{"name":"tail_3","nativeSrc":"10448:6:51","nodeType":"YulIdentifier","src":"10448:6:51"},"variableNames":[{"name":"tail","nativeSrc":"10440:4:51","nodeType":"YulIdentifier","src":"10440: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:2664: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:2664:51"},{"body":{"nativeSrc":"10577:103:51","nodeType":"YulBlock","src":"10577:103:51","statements":[{"body":{"nativeSrc":"10623:16:51","nodeType":"YulBlock","src":"10623:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10632:1:51","nodeType":"YulLiteral","src":"10632:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"10635:1:51","nodeType":"YulLiteral","src":"10635:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10625:6:51","nodeType":"YulIdentifier","src":"10625:6:51"},"nativeSrc":"10625:12:51","nodeType":"YulFunctionCall","src":"10625:12:51"},"nativeSrc":"10625:12:51","nodeType":"YulExpressionStatement","src":"10625:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10598:7:51","nodeType":"YulIdentifier","src":"10598:7:51"},{"name":"headStart","nativeSrc":"10607:9:51","nodeType":"YulIdentifier","src":"10607:9:51"}],"functionName":{"name":"sub","nativeSrc":"10594:3:51","nodeType":"YulIdentifier","src":"10594:3:51"},"nativeSrc":"10594:23:51","nodeType":"YulFunctionCall","src":"10594:23:51"},{"kind":"number","nativeSrc":"10619:2:51","nodeType":"YulLiteral","src":"10619:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10590:3:51","nodeType":"YulIdentifier","src":"10590:3:51"},"nativeSrc":"10590:32:51","nodeType":"YulFunctionCall","src":"10590:32:51"},"nativeSrc":"10587:52:51","nodeType":"YulIf","src":"10587:52:51"},{"nativeSrc":"10648:26:51","nodeType":"YulAssignment","src":"10648:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"10664:9:51","nodeType":"YulIdentifier","src":"10664:9:51"}],"functionName":{"name":"mload","nativeSrc":"10658:5:51","nodeType":"YulIdentifier","src":"10658:5:51"},"nativeSrc":"10658:16:51","nodeType":"YulFunctionCall","src":"10658:16:51"},"variableNames":[{"name":"value0","nativeSrc":"10648:6:51","nodeType":"YulIdentifier","src":"10648:6:51"}]}]},"name":"abi_decode_tuple_t_userDefinedValueType$_RadonHash_$13102_fromMemory","nativeSrc":"10465:215:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10543:9:51","nodeType":"YulTypedName","src":"10543:9:51","type":""},{"name":"dataEnd","nativeSrc":"10554:7:51","nodeType":"YulTypedName","src":"10554:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10566:6:51","nodeType":"YulTypedName","src":"10566:6:51","type":""}],"src":"10465:215:51"},{"body":{"nativeSrc":"10991:448:51","nodeType":"YulBlock","src":"10991:448:51","statements":[{"nativeSrc":"11001:27:51","nodeType":"YulAssignment","src":"11001:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"11013:9:51","nodeType":"YulIdentifier","src":"11013:9:51"},{"kind":"number","nativeSrc":"11024:3:51","nodeType":"YulLiteral","src":"11024:3:51","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"11009:3:51","nodeType":"YulIdentifier","src":"11009:3:51"},"nativeSrc":"11009:19:51","nodeType":"YulFunctionCall","src":"11009:19:51"},"variableNames":[{"name":"tail","nativeSrc":"11001:4:51","nodeType":"YulIdentifier","src":"11001:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11044:9:51","nodeType":"YulIdentifier","src":"11044:9:51"},{"name":"value0","nativeSrc":"11055:6:51","nodeType":"YulIdentifier","src":"11055:6:51"}],"functionName":{"name":"mstore","nativeSrc":"11037:6:51","nodeType":"YulIdentifier","src":"11037:6:51"},"nativeSrc":"11037:25:51","nodeType":"YulFunctionCall","src":"11037:25:51"},"nativeSrc":"11037:25:51","nodeType":"YulExpressionStatement","src":"11037:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11082:9:51","nodeType":"YulIdentifier","src":"11082:9:51"},{"kind":"number","nativeSrc":"11093:2:51","nodeType":"YulLiteral","src":"11093:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11078:3:51","nodeType":"YulIdentifier","src":"11078:3:51"},"nativeSrc":"11078:18:51","nodeType":"YulFunctionCall","src":"11078:18:51"},{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"11108:6:51","nodeType":"YulIdentifier","src":"11108:6:51"}],"functionName":{"name":"mload","nativeSrc":"11102:5:51","nodeType":"YulIdentifier","src":"11102:5:51"},"nativeSrc":"11102:13:51","nodeType":"YulFunctionCall","src":"11102:13:51"},{"kind":"number","nativeSrc":"11117:6:51","nodeType":"YulLiteral","src":"11117:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"11098:3:51","nodeType":"YulIdentifier","src":"11098:3:51"},"nativeSrc":"11098:26:51","nodeType":"YulFunctionCall","src":"11098:26:51"}],"functionName":{"name":"mstore","nativeSrc":"11071:6:51","nodeType":"YulIdentifier","src":"11071:6:51"},"nativeSrc":"11071:54:51","nodeType":"YulFunctionCall","src":"11071:54:51"},"nativeSrc":"11071:54:51","nodeType":"YulExpressionStatement","src":"11071:54:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11145:9:51","nodeType":"YulIdentifier","src":"11145:9:51"},{"kind":"number","nativeSrc":"11156:2:51","nodeType":"YulLiteral","src":"11156:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11141:3:51","nodeType":"YulIdentifier","src":"11141:3:51"},"nativeSrc":"11141:18:51","nodeType":"YulFunctionCall","src":"11141:18:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"11175:6:51","nodeType":"YulIdentifier","src":"11175:6:51"},{"kind":"number","nativeSrc":"11183:2:51","nodeType":"YulLiteral","src":"11183:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11171:3:51","nodeType":"YulIdentifier","src":"11171:3:51"},"nativeSrc":"11171:15:51","nodeType":"YulFunctionCall","src":"11171:15:51"}],"functionName":{"name":"mload","nativeSrc":"11165:5:51","nodeType":"YulIdentifier","src":"11165:5:51"},"nativeSrc":"11165:22:51","nodeType":"YulFunctionCall","src":"11165:22:51"},{"kind":"number","nativeSrc":"11189:6:51","nodeType":"YulLiteral","src":"11189:6:51","type":"","value":"0xffff"}],"functionName":{"name":"and","nativeSrc":"11161:3:51","nodeType":"YulIdentifier","src":"11161:3:51"},"nativeSrc":"11161:35:51","nodeType":"YulFunctionCall","src":"11161:35:51"}],"functionName":{"name":"mstore","nativeSrc":"11134:6:51","nodeType":"YulIdentifier","src":"11134:6:51"},"nativeSrc":"11134:63:51","nodeType":"YulFunctionCall","src":"11134:63:51"},"nativeSrc":"11134:63:51","nodeType":"YulExpressionStatement","src":"11134:63:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11217:9:51","nodeType":"YulIdentifier","src":"11217:9:51"},{"kind":"number","nativeSrc":"11228:2:51","nodeType":"YulLiteral","src":"11228:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11213:3:51","nodeType":"YulIdentifier","src":"11213:3:51"},"nativeSrc":"11213:18:51","nodeType":"YulFunctionCall","src":"11213:18:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"11247:6:51","nodeType":"YulIdentifier","src":"11247:6:51"},{"kind":"number","nativeSrc":"11255:2:51","nodeType":"YulLiteral","src":"11255:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11243:3:51","nodeType":"YulIdentifier","src":"11243:3:51"},"nativeSrc":"11243:15:51","nodeType":"YulFunctionCall","src":"11243:15:51"}],"functionName":{"name":"mload","nativeSrc":"11237:5:51","nodeType":"YulIdentifier","src":"11237:5:51"},"nativeSrc":"11237:22:51","nodeType":"YulFunctionCall","src":"11237:22:51"},{"kind":"number","nativeSrc":"11261:18:51","nodeType":"YulLiteral","src":"11261:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11233:3:51","nodeType":"YulIdentifier","src":"11233:3:51"},"nativeSrc":"11233:47:51","nodeType":"YulFunctionCall","src":"11233:47:51"}],"functionName":{"name":"mstore","nativeSrc":"11206:6:51","nodeType":"YulIdentifier","src":"11206:6:51"},"nativeSrc":"11206:75:51","nodeType":"YulFunctionCall","src":"11206:75:51"},"nativeSrc":"11206:75:51","nodeType":"YulExpressionStatement","src":"11206:75:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11301:9:51","nodeType":"YulIdentifier","src":"11301:9:51"},{"kind":"number","nativeSrc":"11312:3:51","nodeType":"YulLiteral","src":"11312:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"11297:3:51","nodeType":"YulIdentifier","src":"11297:3:51"},"nativeSrc":"11297:19:51","nodeType":"YulFunctionCall","src":"11297:19:51"},{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"11328:6:51","nodeType":"YulIdentifier","src":"11328:6:51"}],"functionName":{"name":"mload","nativeSrc":"11322:5:51","nodeType":"YulIdentifier","src":"11322:5:51"},"nativeSrc":"11322:13:51","nodeType":"YulFunctionCall","src":"11322:13:51"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"11345:3:51","nodeType":"YulLiteral","src":"11345:3:51","type":"","value":"160"},{"kind":"number","nativeSrc":"11350:1:51","nodeType":"YulLiteral","src":"11350:1:51","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"11341:3:51","nodeType":"YulIdentifier","src":"11341:3:51"},"nativeSrc":"11341:11:51","nodeType":"YulFunctionCall","src":"11341:11:51"},{"kind":"number","nativeSrc":"11354:1:51","nodeType":"YulLiteral","src":"11354:1:51","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"11337:3:51","nodeType":"YulIdentifier","src":"11337:3:51"},"nativeSrc":"11337:19:51","nodeType":"YulFunctionCall","src":"11337:19:51"}],"functionName":{"name":"and","nativeSrc":"11318:3:51","nodeType":"YulIdentifier","src":"11318:3:51"},"nativeSrc":"11318:39:51","nodeType":"YulFunctionCall","src":"11318:39:51"}],"functionName":{"name":"mstore","nativeSrc":"11290:6:51","nodeType":"YulIdentifier","src":"11290:6:51"},"nativeSrc":"11290:68:51","nodeType":"YulFunctionCall","src":"11290:68:51"},"nativeSrc":"11290:68:51","nodeType":"YulExpressionStatement","src":"11290:68:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11378:9:51","nodeType":"YulIdentifier","src":"11378:9:51"},{"kind":"number","nativeSrc":"11389:3:51","nodeType":"YulLiteral","src":"11389:3:51","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"11374:3:51","nodeType":"YulIdentifier","src":"11374:3:51"},"nativeSrc":"11374:19:51","nodeType":"YulFunctionCall","src":"11374:19:51"},{"arguments":[{"arguments":[{"arguments":[{"name":"value2","nativeSrc":"11409:6:51","nodeType":"YulIdentifier","src":"11409:6:51"},{"kind":"number","nativeSrc":"11417:2:51","nodeType":"YulLiteral","src":"11417:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11405:3:51","nodeType":"YulIdentifier","src":"11405:3:51"},"nativeSrc":"11405:15:51","nodeType":"YulFunctionCall","src":"11405:15:51"}],"functionName":{"name":"mload","nativeSrc":"11399:5:51","nodeType":"YulIdentifier","src":"11399:5:51"},"nativeSrc":"11399:22:51","nodeType":"YulFunctionCall","src":"11399:22:51"},{"kind":"number","nativeSrc":"11423:8:51","nodeType":"YulLiteral","src":"11423:8:51","type":"","value":"0xffffff"}],"functionName":{"name":"and","nativeSrc":"11395:3:51","nodeType":"YulIdentifier","src":"11395:3:51"},"nativeSrc":"11395:37:51","nodeType":"YulFunctionCall","src":"11395:37:51"}],"functionName":{"name":"mstore","nativeSrc":"11367:6:51","nodeType":"YulIdentifier","src":"11367:6:51"},"nativeSrc":"11367:66:51","nodeType":"YulFunctionCall","src":"11367:66:51"},"nativeSrc":"11367:66:51","nodeType":"YulExpressionStatement","src":"11367:66:51"}]},"name":"abi_encode_tuple_t_userDefinedValueType$_RadonHash_$13102_t_struct$_QuerySLA_$13324_memory_ptr_t_struct$_QueryCallback_$13287_memory_ptr__to_t_bytes32_t_struct$_QuerySLA_$13324_memory_ptr_t_struct$_QueryCallback_$13287_memory_ptr__fromStack_reversed","nativeSrc":"10685:754:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10944:9:51","nodeType":"YulTypedName","src":"10944:9:51","type":""},{"name":"value2","nativeSrc":"10955:6:51","nodeType":"YulTypedName","src":"10955:6:51","type":""},{"name":"value1","nativeSrc":"10963:6:51","nodeType":"YulTypedName","src":"10963:6:51","type":""},{"name":"value0","nativeSrc":"10971:6:51","nodeType":"YulTypedName","src":"10971:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"10982:4:51","nodeType":"YulTypedName","src":"10982:4:51","type":""}],"src":"10685:754:51"},{"body":{"nativeSrc":"11525:103:51","nodeType":"YulBlock","src":"11525:103:51","statements":[{"body":{"nativeSrc":"11571:16:51","nodeType":"YulBlock","src":"11571:16:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11580:1:51","nodeType":"YulLiteral","src":"11580:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"11583:1:51","nodeType":"YulLiteral","src":"11583:1:51","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11573:6:51","nodeType":"YulIdentifier","src":"11573:6:51"},"nativeSrc":"11573:12:51","nodeType":"YulFunctionCall","src":"11573:12:51"},"nativeSrc":"11573:12:51","nodeType":"YulExpressionStatement","src":"11573:12:51"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11546:7:51","nodeType":"YulIdentifier","src":"11546:7:51"},{"name":"headStart","nativeSrc":"11555:9:51","nodeType":"YulIdentifier","src":"11555:9:51"}],"functionName":{"name":"sub","nativeSrc":"11542:3:51","nodeType":"YulIdentifier","src":"11542:3:51"},"nativeSrc":"11542:23:51","nodeType":"YulFunctionCall","src":"11542:23:51"},{"kind":"number","nativeSrc":"11567:2:51","nodeType":"YulLiteral","src":"11567:2:51","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"11538:3:51","nodeType":"YulIdentifier","src":"11538:3:51"},"nativeSrc":"11538:32:51","nodeType":"YulFunctionCall","src":"11538:32:51"},"nativeSrc":"11535:52:51","nodeType":"YulIf","src":"11535:52:51"},{"nativeSrc":"11596:26:51","nodeType":"YulAssignment","src":"11596:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"11612:9:51","nodeType":"YulIdentifier","src":"11612:9:51"}],"functionName":{"name":"mload","nativeSrc":"11606:5:51","nodeType":"YulIdentifier","src":"11606:5:51"},"nativeSrc":"11606:16:51","nodeType":"YulFunctionCall","src":"11606:16:51"},"variableNames":[{"name":"value0","nativeSrc":"11596:6:51","nodeType":"YulIdentifier","src":"11596:6:51"}]}]},"name":"abi_decode_tuple_t_uint256_fromMemory","nativeSrc":"11444:184:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11491:9:51","nodeType":"YulTypedName","src":"11491:9:51","type":""},{"name":"dataEnd","nativeSrc":"11502:7:51","nodeType":"YulTypedName","src":"11502:7:51","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11514:6:51","nodeType":"YulTypedName","src":"11514:6:51","type":""}],"src":"11444:184:51"},{"body":{"nativeSrc":"11807:166:51","nodeType":"YulBlock","src":"11807:166:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11824:9:51","nodeType":"YulIdentifier","src":"11824:9:51"},{"kind":"number","nativeSrc":"11835:2:51","nodeType":"YulLiteral","src":"11835:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"11817:6:51","nodeType":"YulIdentifier","src":"11817:6:51"},"nativeSrc":"11817:21:51","nodeType":"YulFunctionCall","src":"11817:21:51"},"nativeSrc":"11817:21:51","nodeType":"YulExpressionStatement","src":"11817:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11858:9:51","nodeType":"YulIdentifier","src":"11858:9:51"},{"kind":"number","nativeSrc":"11869:2:51","nodeType":"YulLiteral","src":"11869:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11854:3:51","nodeType":"YulIdentifier","src":"11854:3:51"},"nativeSrc":"11854:18:51","nodeType":"YulFunctionCall","src":"11854:18:51"},{"kind":"number","nativeSrc":"11874:2:51","nodeType":"YulLiteral","src":"11874:2:51","type":"","value":"16"}],"functionName":{"name":"mstore","nativeSrc":"11847:6:51","nodeType":"YulIdentifier","src":"11847:6:51"},"nativeSrc":"11847:30:51","nodeType":"YulFunctionCall","src":"11847:30:51"},"nativeSrc":"11847:30:51","nodeType":"YulExpressionStatement","src":"11847:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11897:9:51","nodeType":"YulIdentifier","src":"11897:9:51"},{"kind":"number","nativeSrc":"11908:2:51","nodeType":"YulLiteral","src":"11908:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11893:3:51","nodeType":"YulIdentifier","src":"11893:3:51"},"nativeSrc":"11893:18:51","nodeType":"YulFunctionCall","src":"11893:18:51"},{"hexValue":"696e76616c6964207175657279206964","kind":"string","nativeSrc":"11913:18:51","nodeType":"YulLiteral","src":"11913:18:51","type":"","value":"invalid query id"}],"functionName":{"name":"mstore","nativeSrc":"11886:6:51","nodeType":"YulIdentifier","src":"11886:6:51"},"nativeSrc":"11886:46:51","nodeType":"YulFunctionCall","src":"11886:46:51"},"nativeSrc":"11886:46:51","nodeType":"YulExpressionStatement","src":"11886:46:51"},{"nativeSrc":"11941:26:51","nodeType":"YulAssignment","src":"11941:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"11953:9:51","nodeType":"YulIdentifier","src":"11953:9:51"},{"kind":"number","nativeSrc":"11964:2:51","nodeType":"YulLiteral","src":"11964:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11949:3:51","nodeType":"YulIdentifier","src":"11949:3:51"},"nativeSrc":"11949:18:51","nodeType":"YulFunctionCall","src":"11949:18:51"},"variableNames":[{"name":"tail","nativeSrc":"11941:4:51","nodeType":"YulIdentifier","src":"11941:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_a70485f3df10f36042e7631cf9bc7cfff2923fda111ae82f3320179a3f1a9c65__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"11633:340:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11784:9:51","nodeType":"YulTypedName","src":"11784:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11798:4:51","nodeType":"YulTypedName","src":"11798:4:51","type":""}],"src":"11633:340:51"},{"body":{"nativeSrc":"12152:176:51","nodeType":"YulBlock","src":"12152:176:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12169:9:51","nodeType":"YulIdentifier","src":"12169:9:51"},{"kind":"number","nativeSrc":"12180:2:51","nodeType":"YulLiteral","src":"12180:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"12162:6:51","nodeType":"YulIdentifier","src":"12162:6:51"},"nativeSrc":"12162:21:51","nodeType":"YulFunctionCall","src":"12162:21:51"},"nativeSrc":"12162:21:51","nodeType":"YulExpressionStatement","src":"12162:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12203:9:51","nodeType":"YulIdentifier","src":"12203:9:51"},{"kind":"number","nativeSrc":"12214:2:51","nodeType":"YulLiteral","src":"12214:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12199:3:51","nodeType":"YulIdentifier","src":"12199:3:51"},"nativeSrc":"12199:18:51","nodeType":"YulFunctionCall","src":"12199:18:51"},{"kind":"number","nativeSrc":"12219:2:51","nodeType":"YulLiteral","src":"12219:2:51","type":"","value":"26"}],"functionName":{"name":"mstore","nativeSrc":"12192:6:51","nodeType":"YulIdentifier","src":"12192:6:51"},"nativeSrc":"12192:30:51","nodeType":"YulFunctionCall","src":"12192:30:51"},"nativeSrc":"12192:30:51","nodeType":"YulExpressionStatement","src":"12192:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12242:9:51","nodeType":"YulIdentifier","src":"12242:9:51"},{"kind":"number","nativeSrc":"12253:2:51","nodeType":"YulLiteral","src":"12253:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12238:3:51","nodeType":"YulIdentifier","src":"12238:3:51"},"nativeSrc":"12238:18:51","nodeType":"YulFunctionCall","src":"12238:18:51"},{"hexValue":"7769742f7772617020747820616c7265616479206d696e746564","kind":"string","nativeSrc":"12258:28:51","nodeType":"YulLiteral","src":"12258:28:51","type":"","value":"wit/wrap tx already minted"}],"functionName":{"name":"mstore","nativeSrc":"12231:6:51","nodeType":"YulIdentifier","src":"12231:6:51"},"nativeSrc":"12231:56:51","nodeType":"YulFunctionCall","src":"12231:56:51"},"nativeSrc":"12231:56:51","nodeType":"YulExpressionStatement","src":"12231:56:51"},{"nativeSrc":"12296:26:51","nodeType":"YulAssignment","src":"12296:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"12308:9:51","nodeType":"YulIdentifier","src":"12308:9:51"},{"kind":"number","nativeSrc":"12319:2:51","nodeType":"YulLiteral","src":"12319:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12304:3:51","nodeType":"YulIdentifier","src":"12304:3:51"},"nativeSrc":"12304:18:51","nodeType":"YulFunctionCall","src":"12304:18:51"},"variableNames":[{"name":"tail","nativeSrc":"12296:4:51","nodeType":"YulIdentifier","src":"12296:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_dc598d76fa83f6ee02aa2a85fa4a344836c798f64f101c149de97b066339f648__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"11978:350:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12129:9:51","nodeType":"YulTypedName","src":"12129:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12143:4:51","nodeType":"YulTypedName","src":"12143:4:51","type":""}],"src":"11978:350:51"},{"body":{"nativeSrc":"12365:95:51","nodeType":"YulBlock","src":"12365:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12382:1:51","nodeType":"YulLiteral","src":"12382:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"12389:3:51","nodeType":"YulLiteral","src":"12389:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"12394:10:51","nodeType":"YulLiteral","src":"12394:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"12385:3:51","nodeType":"YulIdentifier","src":"12385:3:51"},"nativeSrc":"12385:20:51","nodeType":"YulFunctionCall","src":"12385:20:51"}],"functionName":{"name":"mstore","nativeSrc":"12375:6:51","nodeType":"YulIdentifier","src":"12375:6:51"},"nativeSrc":"12375:31:51","nodeType":"YulFunctionCall","src":"12375:31:51"},"nativeSrc":"12375:31:51","nodeType":"YulExpressionStatement","src":"12375:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12422:1:51","nodeType":"YulLiteral","src":"12422:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"12425:4:51","nodeType":"YulLiteral","src":"12425:4:51","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"12415:6:51","nodeType":"YulIdentifier","src":"12415:6:51"},"nativeSrc":"12415:15:51","nodeType":"YulFunctionCall","src":"12415:15:51"},"nativeSrc":"12415:15:51","nodeType":"YulExpressionStatement","src":"12415:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"12446:1:51","nodeType":"YulLiteral","src":"12446:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"12449:4:51","nodeType":"YulLiteral","src":"12449:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"12439:6:51","nodeType":"YulIdentifier","src":"12439:6:51"},"nativeSrc":"12439:15:51","nodeType":"YulFunctionCall","src":"12439:15:51"},"nativeSrc":"12439:15:51","nodeType":"YulExpressionStatement","src":"12439:15:51"}]},"name":"panic_error_0x21","nativeSrc":"12333:127:51","nodeType":"YulFunctionDefinition","src":"12333:127:51"},{"body":{"nativeSrc":"12639:174:51","nodeType":"YulBlock","src":"12639:174:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12656:9:51","nodeType":"YulIdentifier","src":"12656:9:51"},{"kind":"number","nativeSrc":"12667:2:51","nodeType":"YulLiteral","src":"12667:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"12649:6:51","nodeType":"YulIdentifier","src":"12649:6:51"},"nativeSrc":"12649:21:51","nodeType":"YulFunctionCall","src":"12649:21:51"},"nativeSrc":"12649:21:51","nodeType":"YulExpressionStatement","src":"12649:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12690:9:51","nodeType":"YulIdentifier","src":"12690:9:51"},{"kind":"number","nativeSrc":"12701:2:51","nodeType":"YulLiteral","src":"12701:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12686:3:51","nodeType":"YulIdentifier","src":"12686:3:51"},"nativeSrc":"12686:18:51","nodeType":"YulFunctionCall","src":"12686:18:51"},{"kind":"number","nativeSrc":"12706:2:51","nodeType":"YulLiteral","src":"12706:2:51","type":"","value":"24"}],"functionName":{"name":"mstore","nativeSrc":"12679:6:51","nodeType":"YulIdentifier","src":"12679:6:51"},"nativeSrc":"12679:30:51","nodeType":"YulFunctionCall","src":"12679:30:51"},"nativeSrc":"12679:30:51","nodeType":"YulExpressionStatement","src":"12679:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12729:9:51","nodeType":"YulIdentifier","src":"12729:9:51"},{"kind":"number","nativeSrc":"12740:2:51","nodeType":"YulLiteral","src":"12740:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12725:3:51","nodeType":"YulIdentifier","src":"12725:3:51"},"nativeSrc":"12725:18:51","nodeType":"YulFunctionCall","src":"12725:18:51"},{"hexValue":"717565727920736f6c7665642077697468206572726f7273","kind":"string","nativeSrc":"12745:26:51","nodeType":"YulLiteral","src":"12745:26:51","type":"","value":"query solved with errors"}],"functionName":{"name":"mstore","nativeSrc":"12718:6:51","nodeType":"YulIdentifier","src":"12718:6:51"},"nativeSrc":"12718:54:51","nodeType":"YulFunctionCall","src":"12718:54:51"},"nativeSrc":"12718:54:51","nodeType":"YulExpressionStatement","src":"12718:54:51"},{"nativeSrc":"12781:26:51","nodeType":"YulAssignment","src":"12781:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"12793:9:51","nodeType":"YulIdentifier","src":"12793:9:51"},{"kind":"number","nativeSrc":"12804:2:51","nodeType":"YulLiteral","src":"12804:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12789:3:51","nodeType":"YulIdentifier","src":"12789:3:51"},"nativeSrc":"12789:18:51","nodeType":"YulFunctionCall","src":"12789:18:51"},"variableNames":[{"name":"tail","nativeSrc":"12781:4:51","nodeType":"YulIdentifier","src":"12781:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_fdd334fdf7e6fae9f5312aa3c59478f1e12a48beff4641205e14335f60fec3d9__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12465:348:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12616:9:51","nodeType":"YulTypedName","src":"12616:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12630:4:51","nodeType":"YulTypedName","src":"12630:4:51","type":""}],"src":"12465:348:51"},{"body":{"nativeSrc":"12992:170:51","nodeType":"YulBlock","src":"12992:170:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13009:9:51","nodeType":"YulIdentifier","src":"13009:9:51"},{"kind":"number","nativeSrc":"13020:2:51","nodeType":"YulLiteral","src":"13020:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13002:6:51","nodeType":"YulIdentifier","src":"13002:6:51"},"nativeSrc":"13002:21:51","nodeType":"YulFunctionCall","src":"13002:21:51"},"nativeSrc":"13002:21:51","nodeType":"YulExpressionStatement","src":"13002:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13043:9:51","nodeType":"YulIdentifier","src":"13043:9:51"},{"kind":"number","nativeSrc":"13054:2:51","nodeType":"YulLiteral","src":"13054:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13039:3:51","nodeType":"YulIdentifier","src":"13039:3:51"},"nativeSrc":"13039:18:51","nodeType":"YulFunctionCall","src":"13039:18:51"},{"kind":"number","nativeSrc":"13059:2:51","nodeType":"YulLiteral","src":"13059:2:51","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"13032:6:51","nodeType":"YulIdentifier","src":"13032:6:51"},"nativeSrc":"13032:30:51","nodeType":"YulFunctionCall","src":"13032:30:51"},"nativeSrc":"13032:30:51","nodeType":"YulExpressionStatement","src":"13032:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13082:9:51","nodeType":"YulIdentifier","src":"13082:9:51"},{"kind":"number","nativeSrc":"13093:2:51","nodeType":"YulLiteral","src":"13093:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13078:3:51","nodeType":"YulIdentifier","src":"13078:3:51"},"nativeSrc":"13078:18:51","nodeType":"YulFunctionCall","src":"13078:18:51"},{"hexValue":"696e76616c696420717565727920726573756c74","kind":"string","nativeSrc":"13098:22:51","nodeType":"YulLiteral","src":"13098:22:51","type":"","value":"invalid query result"}],"functionName":{"name":"mstore","nativeSrc":"13071:6:51","nodeType":"YulIdentifier","src":"13071:6:51"},"nativeSrc":"13071:50:51","nodeType":"YulFunctionCall","src":"13071:50:51"},"nativeSrc":"13071:50:51","nodeType":"YulExpressionStatement","src":"13071:50:51"},{"nativeSrc":"13130:26:51","nodeType":"YulAssignment","src":"13130:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"13142:9:51","nodeType":"YulIdentifier","src":"13142:9:51"},{"kind":"number","nativeSrc":"13153:2:51","nodeType":"YulLiteral","src":"13153:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13138:3:51","nodeType":"YulIdentifier","src":"13138:3:51"},"nativeSrc":"13138:18:51","nodeType":"YulFunctionCall","src":"13138:18:51"},"variableNames":[{"name":"tail","nativeSrc":"13130:4:51","nodeType":"YulIdentifier","src":"13130:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_38d45eac4f3206b66b0878b83795d9a0ce11d11e2db36d1c229a31b6f19f3503__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12818:344:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12969:9:51","nodeType":"YulTypedName","src":"12969:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12983:4:51","nodeType":"YulTypedName","src":"12983:4:51","type":""}],"src":"12818:344:51"},{"body":{"nativeSrc":"13341:174:51","nodeType":"YulBlock","src":"13341:174:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13358:9:51","nodeType":"YulIdentifier","src":"13358:9:51"},{"kind":"number","nativeSrc":"13369:2:51","nodeType":"YulLiteral","src":"13369:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13351:6:51","nodeType":"YulIdentifier","src":"13351:6:51"},"nativeSrc":"13351:21:51","nodeType":"YulFunctionCall","src":"13351:21:51"},"nativeSrc":"13351:21:51","nodeType":"YulExpressionStatement","src":"13351:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13392:9:51","nodeType":"YulIdentifier","src":"13392:9:51"},{"kind":"number","nativeSrc":"13403:2:51","nodeType":"YulLiteral","src":"13403:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13388:3:51","nodeType":"YulIdentifier","src":"13388:3:51"},"nativeSrc":"13388:18:51","nodeType":"YulFunctionCall","src":"13388:18:51"},{"kind":"number","nativeSrc":"13408:2:51","nodeType":"YulLiteral","src":"13408:2:51","type":"","value":"24"}],"functionName":{"name":"mstore","nativeSrc":"13381:6:51","nodeType":"YulIdentifier","src":"13381:6:51"},"nativeSrc":"13381:30:51","nodeType":"YulFunctionCall","src":"13381:30:51"},"nativeSrc":"13381:30:51","nodeType":"YulExpressionStatement","src":"13381:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13431:9:51","nodeType":"YulIdentifier","src":"13431:9:51"},{"kind":"number","nativeSrc":"13442:2:51","nodeType":"YulLiteral","src":"13442:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13427:3:51","nodeType":"YulIdentifier","src":"13427:3:51"},"nativeSrc":"13427:18:51","nodeType":"YulFunctionCall","src":"13427:18:51"},{"hexValue":"756e66696e616c697a656420717565727920726573756c74","kind":"string","nativeSrc":"13447:26:51","nodeType":"YulLiteral","src":"13447:26:51","type":"","value":"unfinalized query result"}],"functionName":{"name":"mstore","nativeSrc":"13420:6:51","nodeType":"YulIdentifier","src":"13420:6:51"},"nativeSrc":"13420:54:51","nodeType":"YulFunctionCall","src":"13420:54:51"},"nativeSrc":"13420:54:51","nodeType":"YulExpressionStatement","src":"13420:54:51"},{"nativeSrc":"13483:26:51","nodeType":"YulAssignment","src":"13483:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"13495:9:51","nodeType":"YulIdentifier","src":"13495:9:51"},{"kind":"number","nativeSrc":"13506:2:51","nodeType":"YulLiteral","src":"13506:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13491:3:51","nodeType":"YulIdentifier","src":"13491:3:51"},"nativeSrc":"13491:18:51","nodeType":"YulFunctionCall","src":"13491:18:51"},"variableNames":[{"name":"tail","nativeSrc":"13483:4:51","nodeType":"YulIdentifier","src":"13483:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_c89b7a96616bc952cfce88db0441421c39a3927671c9d55f879ee1b493eba7b2__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13167:348:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13318:9:51","nodeType":"YulTypedName","src":"13318:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13332:4:51","nodeType":"YulTypedName","src":"13332:4:51","type":""}],"src":"13167:348:51"},{"body":{"nativeSrc":"13552:95:51","nodeType":"YulBlock","src":"13552:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13569:1:51","nodeType":"YulLiteral","src":"13569:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"13576:3:51","nodeType":"YulLiteral","src":"13576:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"13581:10:51","nodeType":"YulLiteral","src":"13581:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"13572:3:51","nodeType":"YulIdentifier","src":"13572:3:51"},"nativeSrc":"13572:20:51","nodeType":"YulFunctionCall","src":"13572:20:51"}],"functionName":{"name":"mstore","nativeSrc":"13562:6:51","nodeType":"YulIdentifier","src":"13562:6:51"},"nativeSrc":"13562:31:51","nodeType":"YulFunctionCall","src":"13562:31:51"},"nativeSrc":"13562:31:51","nodeType":"YulExpressionStatement","src":"13562:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13609:1:51","nodeType":"YulLiteral","src":"13609:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"13612:4:51","nodeType":"YulLiteral","src":"13612:4:51","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"13602:6:51","nodeType":"YulIdentifier","src":"13602:6:51"},"nativeSrc":"13602:15:51","nodeType":"YulFunctionCall","src":"13602:15:51"},"nativeSrc":"13602:15:51","nodeType":"YulExpressionStatement","src":"13602:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13633:1:51","nodeType":"YulLiteral","src":"13633:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"13636:4:51","nodeType":"YulLiteral","src":"13636:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"13626:6:51","nodeType":"YulIdentifier","src":"13626:6:51"},"nativeSrc":"13626:15:51","nodeType":"YulFunctionCall","src":"13626:15:51"},"nativeSrc":"13626:15:51","nodeType":"YulExpressionStatement","src":"13626:15:51"}]},"name":"panic_error_0x11","nativeSrc":"13520:127:51","nodeType":"YulFunctionDefinition","src":"13520:127:51"},{"body":{"nativeSrc":"13699:144:51","nodeType":"YulBlock","src":"13699:144:51","statements":[{"nativeSrc":"13709:66:51","nodeType":"YulAssignment","src":"13709:66:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"13724:1:51","nodeType":"YulIdentifier","src":"13724:1:51"},{"kind":"number","nativeSrc":"13727:18:51","nodeType":"YulLiteral","src":"13727:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"13720:3:51","nodeType":"YulIdentifier","src":"13720:3:51"},"nativeSrc":"13720:26:51","nodeType":"YulFunctionCall","src":"13720:26:51"},{"arguments":[{"name":"y","nativeSrc":"13752:1:51","nodeType":"YulIdentifier","src":"13752:1:51"},{"kind":"number","nativeSrc":"13755:18:51","nodeType":"YulLiteral","src":"13755:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"13748:3:51","nodeType":"YulIdentifier","src":"13748:3:51"},"nativeSrc":"13748:26:51","nodeType":"YulFunctionCall","src":"13748:26:51"}],"functionName":{"name":"add","nativeSrc":"13716:3:51","nodeType":"YulIdentifier","src":"13716:3:51"},"nativeSrc":"13716:59:51","nodeType":"YulFunctionCall","src":"13716:59:51"},"variableNames":[{"name":"sum","nativeSrc":"13709:3:51","nodeType":"YulIdentifier","src":"13709:3:51"}]},{"body":{"nativeSrc":"13815:22:51","nodeType":"YulBlock","src":"13815:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"13817:16:51","nodeType":"YulIdentifier","src":"13817:16:51"},"nativeSrc":"13817:18:51","nodeType":"YulFunctionCall","src":"13817:18:51"},"nativeSrc":"13817:18:51","nodeType":"YulExpressionStatement","src":"13817:18:51"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"13790:3:51","nodeType":"YulIdentifier","src":"13790:3:51"},{"kind":"number","nativeSrc":"13795:18:51","nodeType":"YulLiteral","src":"13795:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"13787:2:51","nodeType":"YulIdentifier","src":"13787:2:51"},"nativeSrc":"13787:27:51","nodeType":"YulFunctionCall","src":"13787:27:51"},"nativeSrc":"13784:53:51","nodeType":"YulIf","src":"13784:53:51"}]},"name":"checked_add_t_uint64","nativeSrc":"13652:191:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"13682:1:51","nodeType":"YulTypedName","src":"13682:1:51","type":""},{"name":"y","nativeSrc":"13685:1:51","nodeType":"YulTypedName","src":"13685:1:51","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"13691:3:51","nodeType":"YulTypedName","src":"13691:3:51","type":""}],"src":"13652:191:51"},{"body":{"nativeSrc":"14022:164:51","nodeType":"YulBlock","src":"14022:164:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14039:9:51","nodeType":"YulIdentifier","src":"14039:9:51"},{"kind":"number","nativeSrc":"14050:2:51","nodeType":"YulLiteral","src":"14050:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"14032:6:51","nodeType":"YulIdentifier","src":"14032:6:51"},"nativeSrc":"14032:21:51","nodeType":"YulFunctionCall","src":"14032:21:51"},"nativeSrc":"14032:21:51","nodeType":"YulExpressionStatement","src":"14032:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14073:9:51","nodeType":"YulIdentifier","src":"14073:9:51"},{"kind":"number","nativeSrc":"14084:2:51","nodeType":"YulLiteral","src":"14084:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14069:3:51","nodeType":"YulIdentifier","src":"14069:3:51"},"nativeSrc":"14069:18:51","nodeType":"YulFunctionCall","src":"14069:18:51"},{"kind":"number","nativeSrc":"14089:2:51","nodeType":"YulLiteral","src":"14089:2:51","type":"","value":"14"}],"functionName":{"name":"mstore","nativeSrc":"14062:6:51","nodeType":"YulIdentifier","src":"14062:6:51"},"nativeSrc":"14062:30:51","nodeType":"YulFunctionCall","src":"14062:30:51"},"nativeSrc":"14062:30:51","nodeType":"YulExpressionStatement","src":"14062:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14112:9:51","nodeType":"YulIdentifier","src":"14112:9:51"},{"kind":"number","nativeSrc":"14123:2:51","nodeType":"YulLiteral","src":"14123:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14108:3:51","nodeType":"YulIdentifier","src":"14108:3:51"},"nativeSrc":"14108:18:51","nodeType":"YulFunctionCall","src":"14108:18:51"},{"hexValue":"696e76616c6964207265706f7274","kind":"string","nativeSrc":"14128:16:51","nodeType":"YulLiteral","src":"14128:16:51","type":"","value":"invalid report"}],"functionName":{"name":"mstore","nativeSrc":"14101:6:51","nodeType":"YulIdentifier","src":"14101:6:51"},"nativeSrc":"14101:44:51","nodeType":"YulFunctionCall","src":"14101:44:51"},"nativeSrc":"14101:44:51","nodeType":"YulExpressionStatement","src":"14101:44:51"},{"nativeSrc":"14154:26:51","nodeType":"YulAssignment","src":"14154:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"14166:9:51","nodeType":"YulIdentifier","src":"14166:9:51"},{"kind":"number","nativeSrc":"14177:2:51","nodeType":"YulLiteral","src":"14177:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14162:3:51","nodeType":"YulIdentifier","src":"14162:3:51"},"nativeSrc":"14162:18:51","nodeType":"YulFunctionCall","src":"14162:18:51"},"variableNames":[{"name":"tail","nativeSrc":"14154:4:51","nodeType":"YulIdentifier","src":"14154:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_efa3da54425289ec39e5b74649f827cb6b11f755cde117b4b47bf615b5961b8c__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13848:338:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13999:9:51","nodeType":"YulTypedName","src":"13999:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14013:4:51","nodeType":"YulTypedName","src":"14013:4:51","type":""}],"src":"13848:338:51"},{"body":{"nativeSrc":"14223:95:51","nodeType":"YulBlock","src":"14223:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14240:1:51","nodeType":"YulLiteral","src":"14240:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14247:3:51","nodeType":"YulLiteral","src":"14247:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"14252:10:51","nodeType":"YulLiteral","src":"14252:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14243:3:51","nodeType":"YulIdentifier","src":"14243:3:51"},"nativeSrc":"14243:20:51","nodeType":"YulFunctionCall","src":"14243:20:51"}],"functionName":{"name":"mstore","nativeSrc":"14233:6:51","nodeType":"YulIdentifier","src":"14233:6:51"},"nativeSrc":"14233:31:51","nodeType":"YulFunctionCall","src":"14233:31:51"},"nativeSrc":"14233:31:51","nodeType":"YulExpressionStatement","src":"14233:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14280:1:51","nodeType":"YulLiteral","src":"14280:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"14283:4:51","nodeType":"YulLiteral","src":"14283:4:51","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"14273:6:51","nodeType":"YulIdentifier","src":"14273:6:51"},"nativeSrc":"14273:15:51","nodeType":"YulFunctionCall","src":"14273:15:51"},"nativeSrc":"14273:15:51","nodeType":"YulExpressionStatement","src":"14273:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14304:1:51","nodeType":"YulLiteral","src":"14304:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"14307:4:51","nodeType":"YulLiteral","src":"14307:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14297:6:51","nodeType":"YulIdentifier","src":"14297:6:51"},"nativeSrc":"14297:15:51","nodeType":"YulFunctionCall","src":"14297:15:51"},"nativeSrc":"14297:15:51","nodeType":"YulExpressionStatement","src":"14297:15:51"}]},"name":"panic_error_0x12","nativeSrc":"14191:127:51","nodeType":"YulFunctionDefinition","src":"14191:127:51"},{"body":{"nativeSrc":"14367:121:51","nodeType":"YulBlock","src":"14367:121:51","statements":[{"nativeSrc":"14377:23:51","nodeType":"YulVariableDeclaration","src":"14377:23:51","value":{"arguments":[{"name":"y","nativeSrc":"14392:1:51","nodeType":"YulIdentifier","src":"14392:1:51"},{"kind":"number","nativeSrc":"14395:4:51","nodeType":"YulLiteral","src":"14395:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"14388:3:51","nodeType":"YulIdentifier","src":"14388:3:51"},"nativeSrc":"14388:12:51","nodeType":"YulFunctionCall","src":"14388:12:51"},"variables":[{"name":"y_1","nativeSrc":"14381:3:51","nodeType":"YulTypedName","src":"14381:3:51","type":""}]},{"body":{"nativeSrc":"14424:22:51","nodeType":"YulBlock","src":"14424:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"14426:16:51","nodeType":"YulIdentifier","src":"14426:16:51"},"nativeSrc":"14426:18:51","nodeType":"YulFunctionCall","src":"14426:18:51"},"nativeSrc":"14426:18:51","nodeType":"YulExpressionStatement","src":"14426:18:51"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"14419:3:51","nodeType":"YulIdentifier","src":"14419:3:51"}],"functionName":{"name":"iszero","nativeSrc":"14412:6:51","nodeType":"YulIdentifier","src":"14412:6:51"},"nativeSrc":"14412:11:51","nodeType":"YulFunctionCall","src":"14412:11:51"},"nativeSrc":"14409:37:51","nodeType":"YulIf","src":"14409:37:51"},{"nativeSrc":"14455:27:51","nodeType":"YulAssignment","src":"14455:27:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"14468:1:51","nodeType":"YulIdentifier","src":"14468:1:51"},{"kind":"number","nativeSrc":"14471:4:51","nodeType":"YulLiteral","src":"14471:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"14464:3:51","nodeType":"YulIdentifier","src":"14464:3:51"},"nativeSrc":"14464:12:51","nodeType":"YulFunctionCall","src":"14464:12:51"},{"name":"y_1","nativeSrc":"14478:3:51","nodeType":"YulIdentifier","src":"14478:3:51"}],"functionName":{"name":"div","nativeSrc":"14460:3:51","nodeType":"YulIdentifier","src":"14460:3:51"},"nativeSrc":"14460:22:51","nodeType":"YulFunctionCall","src":"14460:22:51"},"variableNames":[{"name":"r","nativeSrc":"14455:1:51","nodeType":"YulIdentifier","src":"14455:1:51"}]}]},"name":"checked_div_t_uint8","nativeSrc":"14323:165:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14352:1:51","nodeType":"YulTypedName","src":"14352:1:51","type":""},{"name":"y","nativeSrc":"14355:1:51","nodeType":"YulTypedName","src":"14355:1:51","type":""}],"returnVariables":[{"name":"r","nativeSrc":"14361:1:51","nodeType":"YulTypedName","src":"14361:1:51","type":""}],"src":"14323:165:51"},{"body":{"nativeSrc":"14538:130:51","nodeType":"YulBlock","src":"14538:130:51","statements":[{"nativeSrc":"14548:31:51","nodeType":"YulVariableDeclaration","src":"14548:31:51","value":{"arguments":[{"name":"value","nativeSrc":"14567:5:51","nodeType":"YulIdentifier","src":"14567:5:51"},{"kind":"number","nativeSrc":"14574:4:51","nodeType":"YulLiteral","src":"14574:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"14563:3:51","nodeType":"YulIdentifier","src":"14563:3:51"},"nativeSrc":"14563:16:51","nodeType":"YulFunctionCall","src":"14563:16:51"},"variables":[{"name":"value_1","nativeSrc":"14552:7:51","nodeType":"YulTypedName","src":"14552:7:51","type":""}]},{"body":{"nativeSrc":"14609:22:51","nodeType":"YulBlock","src":"14609:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"14611:16:51","nodeType":"YulIdentifier","src":"14611:16:51"},"nativeSrc":"14611:18:51","nodeType":"YulFunctionCall","src":"14611:18:51"},"nativeSrc":"14611:18:51","nodeType":"YulExpressionStatement","src":"14611:18:51"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"14594:7:51","nodeType":"YulIdentifier","src":"14594:7:51"},{"kind":"number","nativeSrc":"14603:4:51","nodeType":"YulLiteral","src":"14603:4:51","type":"","value":"0xff"}],"functionName":{"name":"eq","nativeSrc":"14591:2:51","nodeType":"YulIdentifier","src":"14591:2:51"},"nativeSrc":"14591:17:51","nodeType":"YulFunctionCall","src":"14591:17:51"},"nativeSrc":"14588:43:51","nodeType":"YulIf","src":"14588:43:51"},{"nativeSrc":"14640:22:51","nodeType":"YulAssignment","src":"14640:22:51","value":{"arguments":[{"name":"value_1","nativeSrc":"14651:7:51","nodeType":"YulIdentifier","src":"14651:7:51"},{"kind":"number","nativeSrc":"14660:1:51","nodeType":"YulLiteral","src":"14660:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"14647:3:51","nodeType":"YulIdentifier","src":"14647:3:51"},"nativeSrc":"14647:15:51","nodeType":"YulFunctionCall","src":"14647:15:51"},"variableNames":[{"name":"ret","nativeSrc":"14640:3:51","nodeType":"YulIdentifier","src":"14640:3:51"}]}]},"name":"increment_t_uint8","nativeSrc":"14493:175:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"14520:5:51","nodeType":"YulTypedName","src":"14520:5:51","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"14530:3:51","nodeType":"YulTypedName","src":"14530:3:51","type":""}],"src":"14493:175:51"},{"body":{"nativeSrc":"14847:173:51","nodeType":"YulBlock","src":"14847:173:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14864:9:51","nodeType":"YulIdentifier","src":"14864:9:51"},{"kind":"number","nativeSrc":"14875:2:51","nodeType":"YulLiteral","src":"14875:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"14857:6:51","nodeType":"YulIdentifier","src":"14857:6:51"},"nativeSrc":"14857:21:51","nodeType":"YulFunctionCall","src":"14857:21:51"},"nativeSrc":"14857:21:51","nodeType":"YulExpressionStatement","src":"14857:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14898:9:51","nodeType":"YulIdentifier","src":"14898:9:51"},{"kind":"number","nativeSrc":"14909:2:51","nodeType":"YulLiteral","src":"14909:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14894:3:51","nodeType":"YulIdentifier","src":"14894:3:51"},"nativeSrc":"14894:18:51","nodeType":"YulFunctionCall","src":"14894:18:51"},{"kind":"number","nativeSrc":"14914:2:51","nodeType":"YulLiteral","src":"14914:2:51","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"14887:6:51","nodeType":"YulIdentifier","src":"14887:6:51"},"nativeSrc":"14887:30:51","nodeType":"YulFunctionCall","src":"14887:30:51"},"nativeSrc":"14887:30:51","nodeType":"YulExpressionStatement","src":"14887:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14937:9:51","nodeType":"YulIdentifier","src":"14937:9:51"},{"kind":"number","nativeSrc":"14948:2:51","nodeType":"YulLiteral","src":"14948:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14933:3:51","nodeType":"YulIdentifier","src":"14933:3:51"},"nativeSrc":"14933:18:51","nodeType":"YulFunctionCall","src":"14933:18:51"},{"hexValue":"63626f723a2063616e6e6f742066657463682064617461","kind":"string","nativeSrc":"14953:25:51","nodeType":"YulLiteral","src":"14953:25:51","type":"","value":"cbor: cannot fetch data"}],"functionName":{"name":"mstore","nativeSrc":"14926:6:51","nodeType":"YulIdentifier","src":"14926:6:51"},"nativeSrc":"14926:53:51","nodeType":"YulFunctionCall","src":"14926:53:51"},"nativeSrc":"14926:53:51","nodeType":"YulExpressionStatement","src":"14926:53:51"},{"nativeSrc":"14988:26:51","nodeType":"YulAssignment","src":"14988:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"15000:9:51","nodeType":"YulIdentifier","src":"15000:9:51"},{"kind":"number","nativeSrc":"15011:2:51","nodeType":"YulLiteral","src":"15011:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14996:3:51","nodeType":"YulIdentifier","src":"14996:3:51"},"nativeSrc":"14996:18:51","nodeType":"YulFunctionCall","src":"14996:18:51"},"variableNames":[{"name":"tail","nativeSrc":"14988:4:51","nodeType":"YulIdentifier","src":"14988:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_f9e00dcd71685f8522f8d07872510c3a81c2039687b393455d27e0cdc22dcafa__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14673:347:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14824:9:51","nodeType":"YulTypedName","src":"14824:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14838:4:51","nodeType":"YulTypedName","src":"14838:4:51","type":""}],"src":"14673:347:51"},{"body":{"nativeSrc":"15150:141:51","nodeType":"YulBlock","src":"15150:141:51","statements":[{"nativeSrc":"15160:26:51","nodeType":"YulAssignment","src":"15160:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"15172:9:51","nodeType":"YulIdentifier","src":"15172:9:51"},{"kind":"number","nativeSrc":"15183:2:51","nodeType":"YulLiteral","src":"15183:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15168:3:51","nodeType":"YulIdentifier","src":"15168:3:51"},"nativeSrc":"15168:18:51","nodeType":"YulFunctionCall","src":"15168:18:51"},"variableNames":[{"name":"tail","nativeSrc":"15160:4:51","nodeType":"YulIdentifier","src":"15160:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15202:9:51","nodeType":"YulIdentifier","src":"15202:9:51"},{"arguments":[{"name":"value0","nativeSrc":"15217:6:51","nodeType":"YulIdentifier","src":"15217:6:51"},{"kind":"number","nativeSrc":"15225:4:51","nodeType":"YulLiteral","src":"15225:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"15213:3:51","nodeType":"YulIdentifier","src":"15213:3:51"},"nativeSrc":"15213:17:51","nodeType":"YulFunctionCall","src":"15213:17:51"}],"functionName":{"name":"mstore","nativeSrc":"15195:6:51","nodeType":"YulIdentifier","src":"15195:6:51"},"nativeSrc":"15195:36:51","nodeType":"YulFunctionCall","src":"15195:36:51"},"nativeSrc":"15195:36:51","nodeType":"YulExpressionStatement","src":"15195:36:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15251:9:51","nodeType":"YulIdentifier","src":"15251:9:51"},{"kind":"number","nativeSrc":"15262:2:51","nodeType":"YulLiteral","src":"15262:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15247:3:51","nodeType":"YulIdentifier","src":"15247:3:51"},"nativeSrc":"15247:18:51","nodeType":"YulFunctionCall","src":"15247:18:51"},{"arguments":[{"name":"value1","nativeSrc":"15271:6:51","nodeType":"YulIdentifier","src":"15271:6:51"},{"kind":"number","nativeSrc":"15279:4:51","nodeType":"YulLiteral","src":"15279:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"15267:3:51","nodeType":"YulIdentifier","src":"15267:3:51"},"nativeSrc":"15267:17:51","nodeType":"YulFunctionCall","src":"15267:17:51"}],"functionName":{"name":"mstore","nativeSrc":"15240:6:51","nodeType":"YulIdentifier","src":"15240:6:51"},"nativeSrc":"15240:45:51","nodeType":"YulFunctionCall","src":"15240:45:51"},"nativeSrc":"15240:45:51","nodeType":"YulExpressionStatement","src":"15240:45:51"}]},"name":"abi_encode_tuple_t_uint8_t_uint8__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"15025:266:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15111:9:51","nodeType":"YulTypedName","src":"15111:9:51","type":""},{"name":"value1","nativeSrc":"15122:6:51","nodeType":"YulTypedName","src":"15122:6:51","type":""},{"name":"value0","nativeSrc":"15130:6:51","nodeType":"YulTypedName","src":"15130:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15141:4:51","nodeType":"YulTypedName","src":"15141:4:51","type":""}],"src":"15025:266:51"},{"body":{"nativeSrc":"15341:149:51","nodeType":"YulBlock","src":"15341:149:51","statements":[{"nativeSrc":"15351:37:51","nodeType":"YulVariableDeclaration","src":"15351:37:51","value":{"arguments":[{"name":"y","nativeSrc":"15366:1:51","nodeType":"YulIdentifier","src":"15366:1:51"},{"kind":"number","nativeSrc":"15369:18:51","nodeType":"YulLiteral","src":"15369:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"15362:3:51","nodeType":"YulIdentifier","src":"15362:3:51"},"nativeSrc":"15362:26:51","nodeType":"YulFunctionCall","src":"15362:26:51"},"variables":[{"name":"y_1","nativeSrc":"15355:3:51","nodeType":"YulTypedName","src":"15355:3:51","type":""}]},{"body":{"nativeSrc":"15412:22:51","nodeType":"YulBlock","src":"15412:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"15414:16:51","nodeType":"YulIdentifier","src":"15414:16:51"},"nativeSrc":"15414:18:51","nodeType":"YulFunctionCall","src":"15414:18:51"},"nativeSrc":"15414:18:51","nodeType":"YulExpressionStatement","src":"15414:18:51"}]},"condition":{"arguments":[{"name":"y_1","nativeSrc":"15407:3:51","nodeType":"YulIdentifier","src":"15407:3:51"}],"functionName":{"name":"iszero","nativeSrc":"15400:6:51","nodeType":"YulIdentifier","src":"15400:6:51"},"nativeSrc":"15400:11:51","nodeType":"YulFunctionCall","src":"15400:11:51"},"nativeSrc":"15397:37:51","nodeType":"YulIf","src":"15397:37:51"},{"nativeSrc":"15443:41:51","nodeType":"YulAssignment","src":"15443:41:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"15456:1:51","nodeType":"YulIdentifier","src":"15456:1:51"},{"kind":"number","nativeSrc":"15459:18:51","nodeType":"YulLiteral","src":"15459:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"15452:3:51","nodeType":"YulIdentifier","src":"15452:3:51"},"nativeSrc":"15452:26:51","nodeType":"YulFunctionCall","src":"15452:26:51"},{"name":"y_1","nativeSrc":"15480:3:51","nodeType":"YulIdentifier","src":"15480:3:51"}],"functionName":{"name":"div","nativeSrc":"15448:3:51","nodeType":"YulIdentifier","src":"15448:3:51"},"nativeSrc":"15448:36:51","nodeType":"YulFunctionCall","src":"15448:36:51"},"variableNames":[{"name":"r","nativeSrc":"15443:1:51","nodeType":"YulIdentifier","src":"15443:1:51"}]}]},"name":"checked_div_t_uint64","nativeSrc":"15296:194:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"15326:1:51","nodeType":"YulTypedName","src":"15326:1:51","type":""},{"name":"y","nativeSrc":"15329:1:51","nodeType":"YulTypedName","src":"15329:1:51","type":""}],"returnVariables":[{"name":"r","nativeSrc":"15335:1:51","nodeType":"YulTypedName","src":"15335:1:51","type":""}],"src":"15296:194:51"},{"body":{"nativeSrc":"15680:309:51","nodeType":"YulBlock","src":"15680:309:51","statements":[{"nativeSrc":"15690:27:51","nodeType":"YulVariableDeclaration","src":"15690:27:51","value":{"arguments":[{"name":"value0","nativeSrc":"15710:6:51","nodeType":"YulIdentifier","src":"15710:6:51"}],"functionName":{"name":"mload","nativeSrc":"15704:5:51","nodeType":"YulIdentifier","src":"15704:5:51"},"nativeSrc":"15704:13:51","nodeType":"YulFunctionCall","src":"15704:13:51"},"variables":[{"name":"length","nativeSrc":"15694:6:51","nodeType":"YulTypedName","src":"15694:6:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"15765:6:51","nodeType":"YulIdentifier","src":"15765:6:51"},{"kind":"number","nativeSrc":"15773:4:51","nodeType":"YulLiteral","src":"15773:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15761:3:51","nodeType":"YulIdentifier","src":"15761:3:51"},"nativeSrc":"15761:17:51","nodeType":"YulFunctionCall","src":"15761:17:51"},{"name":"pos","nativeSrc":"15780:3:51","nodeType":"YulIdentifier","src":"15780:3:51"},{"name":"length","nativeSrc":"15785:6:51","nodeType":"YulIdentifier","src":"15785:6:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"15726:34:51","nodeType":"YulIdentifier","src":"15726:34:51"},"nativeSrc":"15726:66:51","nodeType":"YulFunctionCall","src":"15726:66:51"},"nativeSrc":"15726:66:51","nodeType":"YulExpressionStatement","src":"15726:66:51"},{"nativeSrc":"15801:29:51","nodeType":"YulVariableDeclaration","src":"15801:29:51","value":{"arguments":[{"name":"pos","nativeSrc":"15818:3:51","nodeType":"YulIdentifier","src":"15818:3:51"},{"name":"length","nativeSrc":"15823:6:51","nodeType":"YulIdentifier","src":"15823:6:51"}],"functionName":{"name":"add","nativeSrc":"15814:3:51","nodeType":"YulIdentifier","src":"15814:3:51"},"nativeSrc":"15814:16:51","nodeType":"YulFunctionCall","src":"15814:16:51"},"variables":[{"name":"end_1","nativeSrc":"15805:5:51","nodeType":"YulTypedName","src":"15805:5:51","type":""}]},{"nativeSrc":"15839:29:51","nodeType":"YulVariableDeclaration","src":"15839:29:51","value":{"arguments":[{"name":"value1","nativeSrc":"15861:6:51","nodeType":"YulIdentifier","src":"15861:6:51"}],"functionName":{"name":"mload","nativeSrc":"15855:5:51","nodeType":"YulIdentifier","src":"15855:5:51"},"nativeSrc":"15855:13:51","nodeType":"YulFunctionCall","src":"15855:13:51"},"variables":[{"name":"length_1","nativeSrc":"15843:8:51","nodeType":"YulTypedName","src":"15843:8:51","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value1","nativeSrc":"15916:6:51","nodeType":"YulIdentifier","src":"15916:6:51"},{"kind":"number","nativeSrc":"15924:4:51","nodeType":"YulLiteral","src":"15924:4:51","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"15912:3:51","nodeType":"YulIdentifier","src":"15912:3:51"},"nativeSrc":"15912:17:51","nodeType":"YulFunctionCall","src":"15912:17:51"},{"name":"end_1","nativeSrc":"15931:5:51","nodeType":"YulIdentifier","src":"15931:5:51"},{"name":"length_1","nativeSrc":"15938:8:51","nodeType":"YulIdentifier","src":"15938:8:51"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"15877:34:51","nodeType":"YulIdentifier","src":"15877:34:51"},"nativeSrc":"15877:70:51","nodeType":"YulFunctionCall","src":"15877:70:51"},"nativeSrc":"15877:70:51","nodeType":"YulExpressionStatement","src":"15877:70:51"},{"nativeSrc":"15956:27:51","nodeType":"YulAssignment","src":"15956:27:51","value":{"arguments":[{"name":"end_1","nativeSrc":"15967:5:51","nodeType":"YulIdentifier","src":"15967:5:51"},{"name":"length_1","nativeSrc":"15974:8:51","nodeType":"YulIdentifier","src":"15974:8:51"}],"functionName":{"name":"add","nativeSrc":"15963:3:51","nodeType":"YulIdentifier","src":"15963:3:51"},"nativeSrc":"15963:20:51","nodeType":"YulFunctionCall","src":"15963:20:51"},"variableNames":[{"name":"end","nativeSrc":"15956:3:51","nodeType":"YulIdentifier","src":"15956: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":"15495:494:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"15648:3:51","nodeType":"YulTypedName","src":"15648:3:51","type":""},{"name":"value1","nativeSrc":"15653:6:51","nodeType":"YulTypedName","src":"15653:6:51","type":""},{"name":"value0","nativeSrc":"15661:6:51","nodeType":"YulTypedName","src":"15661:6:51","type":""}],"returnVariables":[{"name":"end","nativeSrc":"15672:3:51","nodeType":"YulTypedName","src":"15672:3:51","type":""}],"src":"15495:494:51"},{"body":{"nativeSrc":"16040:102:51","nodeType":"YulBlock","src":"16040:102:51","statements":[{"nativeSrc":"16050:38:51","nodeType":"YulAssignment","src":"16050:38:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"16065:1:51","nodeType":"YulIdentifier","src":"16065:1:51"},{"kind":"number","nativeSrc":"16068:4:51","nodeType":"YulLiteral","src":"16068:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16061:3:51","nodeType":"YulIdentifier","src":"16061:3:51"},"nativeSrc":"16061:12:51","nodeType":"YulFunctionCall","src":"16061:12:51"},{"arguments":[{"name":"y","nativeSrc":"16079:1:51","nodeType":"YulIdentifier","src":"16079:1:51"},{"kind":"number","nativeSrc":"16082:4:51","nodeType":"YulLiteral","src":"16082:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16075:3:51","nodeType":"YulIdentifier","src":"16075:3:51"},"nativeSrc":"16075:12:51","nodeType":"YulFunctionCall","src":"16075:12:51"}],"functionName":{"name":"add","nativeSrc":"16057:3:51","nodeType":"YulIdentifier","src":"16057:3:51"},"nativeSrc":"16057:31:51","nodeType":"YulFunctionCall","src":"16057:31:51"},"variableNames":[{"name":"sum","nativeSrc":"16050:3:51","nodeType":"YulIdentifier","src":"16050:3:51"}]},{"body":{"nativeSrc":"16114:22:51","nodeType":"YulBlock","src":"16114:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16116:16:51","nodeType":"YulIdentifier","src":"16116:16:51"},"nativeSrc":"16116:18:51","nodeType":"YulFunctionCall","src":"16116:18:51"},"nativeSrc":"16116:18:51","nodeType":"YulExpressionStatement","src":"16116:18:51"}]},"condition":{"arguments":[{"name":"sum","nativeSrc":"16103:3:51","nodeType":"YulIdentifier","src":"16103:3:51"},{"kind":"number","nativeSrc":"16108:4:51","nodeType":"YulLiteral","src":"16108:4:51","type":"","value":"0xff"}],"functionName":{"name":"gt","nativeSrc":"16100:2:51","nodeType":"YulIdentifier","src":"16100:2:51"},"nativeSrc":"16100:13:51","nodeType":"YulFunctionCall","src":"16100:13:51"},"nativeSrc":"16097:39:51","nodeType":"YulIf","src":"16097:39:51"}]},"name":"checked_add_t_uint8","nativeSrc":"15994:148:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16023:1:51","nodeType":"YulTypedName","src":"16023:1:51","type":""},{"name":"y","nativeSrc":"16026:1:51","nodeType":"YulTypedName","src":"16026:1:51","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"16032:3:51","nodeType":"YulTypedName","src":"16032:3:51","type":""}],"src":"15994:148:51"},{"body":{"nativeSrc":"16196:79:51","nodeType":"YulBlock","src":"16196:79:51","statements":[{"nativeSrc":"16206:17:51","nodeType":"YulAssignment","src":"16206:17:51","value":{"arguments":[{"name":"x","nativeSrc":"16218:1:51","nodeType":"YulIdentifier","src":"16218:1:51"},{"name":"y","nativeSrc":"16221:1:51","nodeType":"YulIdentifier","src":"16221:1:51"}],"functionName":{"name":"sub","nativeSrc":"16214:3:51","nodeType":"YulIdentifier","src":"16214:3:51"},"nativeSrc":"16214:9:51","nodeType":"YulFunctionCall","src":"16214:9:51"},"variableNames":[{"name":"diff","nativeSrc":"16206:4:51","nodeType":"YulIdentifier","src":"16206:4:51"}]},{"body":{"nativeSrc":"16247:22:51","nodeType":"YulBlock","src":"16247:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16249:16:51","nodeType":"YulIdentifier","src":"16249:16:51"},"nativeSrc":"16249:18:51","nodeType":"YulFunctionCall","src":"16249:18:51"},"nativeSrc":"16249:18:51","nodeType":"YulExpressionStatement","src":"16249:18:51"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"16238:4:51","nodeType":"YulIdentifier","src":"16238:4:51"},{"name":"x","nativeSrc":"16244:1:51","nodeType":"YulIdentifier","src":"16244:1:51"}],"functionName":{"name":"gt","nativeSrc":"16235:2:51","nodeType":"YulIdentifier","src":"16235:2:51"},"nativeSrc":"16235:11:51","nodeType":"YulFunctionCall","src":"16235:11:51"},"nativeSrc":"16232:37:51","nodeType":"YulIf","src":"16232:37:51"}]},"name":"checked_sub_t_uint256","nativeSrc":"16147:128:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16178:1:51","nodeType":"YulTypedName","src":"16178:1:51","type":""},{"name":"y","nativeSrc":"16181:1:51","nodeType":"YulTypedName","src":"16181:1:51","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"16187:4:51","nodeType":"YulTypedName","src":"16187:4:51","type":""}],"src":"16147:128:51"},{"body":{"nativeSrc":"16379:87:51","nodeType":"YulBlock","src":"16379:87:51","statements":[{"nativeSrc":"16389:26:51","nodeType":"YulAssignment","src":"16389:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"16401:9:51","nodeType":"YulIdentifier","src":"16401:9:51"},{"kind":"number","nativeSrc":"16412:2:51","nodeType":"YulLiteral","src":"16412:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16397:3:51","nodeType":"YulIdentifier","src":"16397:3:51"},"nativeSrc":"16397:18:51","nodeType":"YulFunctionCall","src":"16397:18:51"},"variableNames":[{"name":"tail","nativeSrc":"16389:4:51","nodeType":"YulIdentifier","src":"16389:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16431:9:51","nodeType":"YulIdentifier","src":"16431:9:51"},{"arguments":[{"name":"value0","nativeSrc":"16446:6:51","nodeType":"YulIdentifier","src":"16446:6:51"},{"kind":"number","nativeSrc":"16454:4:51","nodeType":"YulLiteral","src":"16454:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16442:3:51","nodeType":"YulIdentifier","src":"16442:3:51"},"nativeSrc":"16442:17:51","nodeType":"YulFunctionCall","src":"16442:17:51"}],"functionName":{"name":"mstore","nativeSrc":"16424:6:51","nodeType":"YulIdentifier","src":"16424:6:51"},"nativeSrc":"16424:36:51","nodeType":"YulFunctionCall","src":"16424:36:51"},"nativeSrc":"16424:36:51","nodeType":"YulExpressionStatement","src":"16424:36:51"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint256__fromStack_reversed","nativeSrc":"16280:186:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16348:9:51","nodeType":"YulTypedName","src":"16348:9:51","type":""},{"name":"value0","nativeSrc":"16359:6:51","nodeType":"YulTypedName","src":"16359:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16370:4:51","nodeType":"YulTypedName","src":"16370:4:51","type":""}],"src":"16280:186:51"},{"body":{"nativeSrc":"16571:101:51","nodeType":"YulBlock","src":"16571:101:51","statements":[{"nativeSrc":"16581:26:51","nodeType":"YulAssignment","src":"16581:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"16593:9:51","nodeType":"YulIdentifier","src":"16593:9:51"},{"kind":"number","nativeSrc":"16604:2:51","nodeType":"YulLiteral","src":"16604:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16589:3:51","nodeType":"YulIdentifier","src":"16589:3:51"},"nativeSrc":"16589:18:51","nodeType":"YulFunctionCall","src":"16589:18:51"},"variableNames":[{"name":"tail","nativeSrc":"16581:4:51","nodeType":"YulIdentifier","src":"16581:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16623:9:51","nodeType":"YulIdentifier","src":"16623:9:51"},{"arguments":[{"name":"value0","nativeSrc":"16638:6:51","nodeType":"YulIdentifier","src":"16638:6:51"},{"kind":"number","nativeSrc":"16646:18:51","nodeType":"YulLiteral","src":"16646:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"16634:3:51","nodeType":"YulIdentifier","src":"16634:3:51"},"nativeSrc":"16634:31:51","nodeType":"YulFunctionCall","src":"16634:31:51"}],"functionName":{"name":"mstore","nativeSrc":"16616:6:51","nodeType":"YulIdentifier","src":"16616:6:51"},"nativeSrc":"16616:50:51","nodeType":"YulFunctionCall","src":"16616:50:51"},"nativeSrc":"16616:50:51","nodeType":"YulExpressionStatement","src":"16616:50:51"}]},"name":"abi_encode_tuple_t_uint64__to_t_uint256__fromStack_reversed","nativeSrc":"16471:201:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16540:9:51","nodeType":"YulTypedName","src":"16540:9:51","type":""},{"name":"value0","nativeSrc":"16551:6:51","nodeType":"YulTypedName","src":"16551:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16562:4:51","nodeType":"YulTypedName","src":"16562:4:51","type":""}],"src":"16471:201:51"},{"body":{"nativeSrc":"16724:104:51","nodeType":"YulBlock","src":"16724:104:51","statements":[{"nativeSrc":"16734:39:51","nodeType":"YulAssignment","src":"16734:39:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"16750:1:51","nodeType":"YulIdentifier","src":"16750:1:51"},{"kind":"number","nativeSrc":"16753:4:51","nodeType":"YulLiteral","src":"16753:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16746:3:51","nodeType":"YulIdentifier","src":"16746:3:51"},"nativeSrc":"16746:12:51","nodeType":"YulFunctionCall","src":"16746:12:51"},{"arguments":[{"name":"y","nativeSrc":"16764:1:51","nodeType":"YulIdentifier","src":"16764:1:51"},{"kind":"number","nativeSrc":"16767:4:51","nodeType":"YulLiteral","src":"16767:4:51","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"16760:3:51","nodeType":"YulIdentifier","src":"16760:3:51"},"nativeSrc":"16760:12:51","nodeType":"YulFunctionCall","src":"16760:12:51"}],"functionName":{"name":"sub","nativeSrc":"16742:3:51","nodeType":"YulIdentifier","src":"16742:3:51"},"nativeSrc":"16742:31:51","nodeType":"YulFunctionCall","src":"16742:31:51"},"variableNames":[{"name":"diff","nativeSrc":"16734:4:51","nodeType":"YulIdentifier","src":"16734:4:51"}]},{"body":{"nativeSrc":"16800:22:51","nodeType":"YulBlock","src":"16800:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16802:16:51","nodeType":"YulIdentifier","src":"16802:16:51"},"nativeSrc":"16802:18:51","nodeType":"YulFunctionCall","src":"16802:18:51"},"nativeSrc":"16802:18:51","nodeType":"YulExpressionStatement","src":"16802:18:51"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"16788:4:51","nodeType":"YulIdentifier","src":"16788:4:51"},{"kind":"number","nativeSrc":"16794:4:51","nodeType":"YulLiteral","src":"16794:4:51","type":"","value":"0xff"}],"functionName":{"name":"gt","nativeSrc":"16785:2:51","nodeType":"YulIdentifier","src":"16785:2:51"},"nativeSrc":"16785:14:51","nodeType":"YulFunctionCall","src":"16785:14:51"},"nativeSrc":"16782:40:51","nodeType":"YulIf","src":"16782:40:51"}]},"name":"checked_sub_t_uint8","nativeSrc":"16677:151:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16706:1:51","nodeType":"YulTypedName","src":"16706:1:51","type":""},{"name":"y","nativeSrc":"16709:1:51","nodeType":"YulTypedName","src":"16709:1:51","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"16715:4:51","nodeType":"YulTypedName","src":"16715:4:51","type":""}],"src":"16677:151:51"},{"body":{"nativeSrc":"17007:171:51","nodeType":"YulBlock","src":"17007:171:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17024:9:51","nodeType":"YulIdentifier","src":"17024:9:51"},{"kind":"number","nativeSrc":"17035:2:51","nodeType":"YulLiteral","src":"17035:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"17017:6:51","nodeType":"YulIdentifier","src":"17017:6:51"},"nativeSrc":"17017:21:51","nodeType":"YulFunctionCall","src":"17017:21:51"},"nativeSrc":"17017:21:51","nodeType":"YulExpressionStatement","src":"17017:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17058:9:51","nodeType":"YulIdentifier","src":"17058:9:51"},{"kind":"number","nativeSrc":"17069:2:51","nodeType":"YulLiteral","src":"17069:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17054:3:51","nodeType":"YulIdentifier","src":"17054:3:51"},"nativeSrc":"17054:18:51","nodeType":"YulFunctionCall","src":"17054:18:51"},{"kind":"number","nativeSrc":"17074:2:51","nodeType":"YulLiteral","src":"17074:2:51","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"17047:6:51","nodeType":"YulIdentifier","src":"17047:6:51"},"nativeSrc":"17047:30:51","nodeType":"YulFunctionCall","src":"17047:30:51"},"nativeSrc":"17047:30:51","nodeType":"YulExpressionStatement","src":"17047:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17097:9:51","nodeType":"YulIdentifier","src":"17097:9:51"},{"kind":"number","nativeSrc":"17108:2:51","nodeType":"YulLiteral","src":"17108:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17093:3:51","nodeType":"YulIdentifier","src":"17093:3:51"},"nativeSrc":"17093:18:51","nodeType":"YulFunctionCall","src":"17093:18:51"},{"hexValue":"496e76616c69642068657820636861726163746572","kind":"string","nativeSrc":"17113:23:51","nodeType":"YulLiteral","src":"17113:23:51","type":"","value":"Invalid hex character"}],"functionName":{"name":"mstore","nativeSrc":"17086:6:51","nodeType":"YulIdentifier","src":"17086:6:51"},"nativeSrc":"17086:51:51","nodeType":"YulFunctionCall","src":"17086:51:51"},"nativeSrc":"17086:51:51","nodeType":"YulExpressionStatement","src":"17086:51:51"},{"nativeSrc":"17146:26:51","nodeType":"YulAssignment","src":"17146:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"17158:9:51","nodeType":"YulIdentifier","src":"17158:9:51"},{"kind":"number","nativeSrc":"17169:2:51","nodeType":"YulLiteral","src":"17169:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17154:3:51","nodeType":"YulIdentifier","src":"17154:3:51"},"nativeSrc":"17154:18:51","nodeType":"YulFunctionCall","src":"17154:18:51"},"variableNames":[{"name":"tail","nativeSrc":"17146:4:51","nodeType":"YulIdentifier","src":"17146:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_3f6add0457b55e0d28d0df6cb630dd22967d6dac9673bb47e06495bccd4ca35c__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"16833:345:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16984:9:51","nodeType":"YulTypedName","src":"16984:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16998:4:51","nodeType":"YulTypedName","src":"16998:4:51","type":""}],"src":"16833:345:51"},{"body":{"nativeSrc":"17234:217:51","nodeType":"YulBlock","src":"17234:217:51","statements":[{"nativeSrc":"17244:78:51","nodeType":"YulVariableDeclaration","src":"17244:78:51","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"17271:1:51","nodeType":"YulIdentifier","src":"17271:1:51"},{"kind":"number","nativeSrc":"17274:18:51","nodeType":"YulLiteral","src":"17274:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17267:3:51","nodeType":"YulIdentifier","src":"17267:3:51"},"nativeSrc":"17267:26:51","nodeType":"YulFunctionCall","src":"17267:26:51"},{"arguments":[{"name":"y","nativeSrc":"17299:1:51","nodeType":"YulIdentifier","src":"17299:1:51"},{"kind":"number","nativeSrc":"17302:18:51","nodeType":"YulLiteral","src":"17302:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17295:3:51","nodeType":"YulIdentifier","src":"17295:3:51"},"nativeSrc":"17295:26:51","nodeType":"YulFunctionCall","src":"17295:26:51"}],"functionName":{"name":"mul","nativeSrc":"17263:3:51","nodeType":"YulIdentifier","src":"17263:3:51"},"nativeSrc":"17263:59:51","nodeType":"YulFunctionCall","src":"17263:59:51"},"variables":[{"name":"product_raw","nativeSrc":"17248:11:51","nodeType":"YulTypedName","src":"17248:11:51","type":""}]},{"nativeSrc":"17331:47:51","nodeType":"YulAssignment","src":"17331:47:51","value":{"arguments":[{"name":"product_raw","nativeSrc":"17346:11:51","nodeType":"YulIdentifier","src":"17346:11:51"},{"kind":"number","nativeSrc":"17359:18:51","nodeType":"YulLiteral","src":"17359:18:51","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"17342:3:51","nodeType":"YulIdentifier","src":"17342:3:51"},"nativeSrc":"17342:36:51","nodeType":"YulFunctionCall","src":"17342:36:51"},"variableNames":[{"name":"product","nativeSrc":"17331:7:51","nodeType":"YulIdentifier","src":"17331:7:51"}]},{"body":{"nativeSrc":"17423:22:51","nodeType":"YulBlock","src":"17423:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"17425:16:51","nodeType":"YulIdentifier","src":"17425:16:51"},"nativeSrc":"17425:18:51","nodeType":"YulFunctionCall","src":"17425:18:51"},"nativeSrc":"17425:18:51","nodeType":"YulExpressionStatement","src":"17425:18:51"}]},"condition":{"arguments":[{"arguments":[{"name":"product","nativeSrc":"17400:7:51","nodeType":"YulIdentifier","src":"17400:7:51"},{"name":"product_raw","nativeSrc":"17409:11:51","nodeType":"YulIdentifier","src":"17409:11:51"}],"functionName":{"name":"eq","nativeSrc":"17397:2:51","nodeType":"YulIdentifier","src":"17397:2:51"},"nativeSrc":"17397:24:51","nodeType":"YulFunctionCall","src":"17397:24:51"}],"functionName":{"name":"iszero","nativeSrc":"17390:6:51","nodeType":"YulIdentifier","src":"17390:6:51"},"nativeSrc":"17390:32:51","nodeType":"YulFunctionCall","src":"17390:32:51"},"nativeSrc":"17387:58:51","nodeType":"YulIf","src":"17387:58:51"}]},"name":"checked_mul_t_uint64","nativeSrc":"17183:268:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"17213:1:51","nodeType":"YulTypedName","src":"17213:1:51","type":""},{"name":"y","nativeSrc":"17216:1:51","nodeType":"YulTypedName","src":"17216:1:51","type":""}],"returnVariables":[{"name":"product","nativeSrc":"17222:7:51","nodeType":"YulTypedName","src":"17222:7:51","type":""}],"src":"17183:268:51"},{"body":{"nativeSrc":"17494:74:51","nodeType":"YulBlock","src":"17494:74:51","statements":[{"body":{"nativeSrc":"17517:22:51","nodeType":"YulBlock","src":"17517:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x12","nativeSrc":"17519:16:51","nodeType":"YulIdentifier","src":"17519:16:51"},"nativeSrc":"17519:18:51","nodeType":"YulFunctionCall","src":"17519:18:51"},"nativeSrc":"17519:18:51","nodeType":"YulExpressionStatement","src":"17519:18:51"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"17514:1:51","nodeType":"YulIdentifier","src":"17514:1:51"}],"functionName":{"name":"iszero","nativeSrc":"17507:6:51","nodeType":"YulIdentifier","src":"17507:6:51"},"nativeSrc":"17507:9:51","nodeType":"YulFunctionCall","src":"17507:9:51"},"nativeSrc":"17504:35:51","nodeType":"YulIf","src":"17504:35:51"},{"nativeSrc":"17548:14:51","nodeType":"YulAssignment","src":"17548:14:51","value":{"arguments":[{"name":"x","nativeSrc":"17557:1:51","nodeType":"YulIdentifier","src":"17557:1:51"},{"name":"y","nativeSrc":"17560:1:51","nodeType":"YulIdentifier","src":"17560:1:51"}],"functionName":{"name":"mod","nativeSrc":"17553:3:51","nodeType":"YulIdentifier","src":"17553:3:51"},"nativeSrc":"17553:9:51","nodeType":"YulFunctionCall","src":"17553:9:51"},"variableNames":[{"name":"r","nativeSrc":"17548:1:51","nodeType":"YulIdentifier","src":"17548:1:51"}]}]},"name":"mod_t_uint256","nativeSrc":"17456:112:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"17479:1:51","nodeType":"YulTypedName","src":"17479:1:51","type":""},{"name":"y","nativeSrc":"17482:1:51","nodeType":"YulTypedName","src":"17482:1:51","type":""}],"returnVariables":[{"name":"r","nativeSrc":"17488:1:51","nodeType":"YulTypedName","src":"17488:1:51","type":""}],"src":"17456:112:51"},{"body":{"nativeSrc":"17621:77:51","nodeType":"YulBlock","src":"17621:77:51","statements":[{"nativeSrc":"17631:16:51","nodeType":"YulAssignment","src":"17631:16:51","value":{"arguments":[{"name":"x","nativeSrc":"17642:1:51","nodeType":"YulIdentifier","src":"17642:1:51"},{"name":"y","nativeSrc":"17645:1:51","nodeType":"YulIdentifier","src":"17645:1:51"}],"functionName":{"name":"add","nativeSrc":"17638:3:51","nodeType":"YulIdentifier","src":"17638:3:51"},"nativeSrc":"17638:9:51","nodeType":"YulFunctionCall","src":"17638:9:51"},"variableNames":[{"name":"sum","nativeSrc":"17631:3:51","nodeType":"YulIdentifier","src":"17631:3:51"}]},{"body":{"nativeSrc":"17670:22:51","nodeType":"YulBlock","src":"17670:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"17672:16:51","nodeType":"YulIdentifier","src":"17672:16:51"},"nativeSrc":"17672:18:51","nodeType":"YulFunctionCall","src":"17672:18:51"},"nativeSrc":"17672:18:51","nodeType":"YulExpressionStatement","src":"17672:18:51"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"17662:1:51","nodeType":"YulIdentifier","src":"17662:1:51"},{"name":"sum","nativeSrc":"17665:3:51","nodeType":"YulIdentifier","src":"17665:3:51"}],"functionName":{"name":"gt","nativeSrc":"17659:2:51","nodeType":"YulIdentifier","src":"17659:2:51"},"nativeSrc":"17659:10:51","nodeType":"YulFunctionCall","src":"17659:10:51"},"nativeSrc":"17656:36:51","nodeType":"YulIf","src":"17656:36:51"}]},"name":"checked_add_t_uint256","nativeSrc":"17573:125:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"17604:1:51","nodeType":"YulTypedName","src":"17604:1:51","type":""},{"name":"y","nativeSrc":"17607:1:51","nodeType":"YulTypedName","src":"17607:1:51","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"17613:3:51","nodeType":"YulTypedName","src":"17613:3:51","type":""}],"src":"17573:125:51"},{"body":{"nativeSrc":"17877:229:51","nodeType":"YulBlock","src":"17877:229:51","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17894:9:51","nodeType":"YulIdentifier","src":"17894:9:51"},{"kind":"number","nativeSrc":"17905:2:51","nodeType":"YulLiteral","src":"17905:2:51","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"17887:6:51","nodeType":"YulIdentifier","src":"17887:6:51"},"nativeSrc":"17887:21:51","nodeType":"YulFunctionCall","src":"17887:21:51"},"nativeSrc":"17887:21:51","nodeType":"YulExpressionStatement","src":"17887:21:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17928:9:51","nodeType":"YulIdentifier","src":"17928:9:51"},{"kind":"number","nativeSrc":"17939:2:51","nodeType":"YulLiteral","src":"17939:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17924:3:51","nodeType":"YulIdentifier","src":"17924:3:51"},"nativeSrc":"17924:18:51","nodeType":"YulFunctionCall","src":"17924:18:51"},{"kind":"number","nativeSrc":"17944:2:51","nodeType":"YulLiteral","src":"17944:2:51","type":"","value":"39"}],"functionName":{"name":"mstore","nativeSrc":"17917:6:51","nodeType":"YulIdentifier","src":"17917:6:51"},"nativeSrc":"17917:30:51","nodeType":"YulFunctionCall","src":"17917:30:51"},"nativeSrc":"17917:30:51","nodeType":"YulExpressionStatement","src":"17917:30:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17967:9:51","nodeType":"YulIdentifier","src":"17967:9:51"},{"kind":"number","nativeSrc":"17978:2:51","nodeType":"YulLiteral","src":"17978:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17963:3:51","nodeType":"YulIdentifier","src":"17963:3:51"},"nativeSrc":"17963:18:51","nodeType":"YulFunctionCall","src":"17963:18:51"},{"hexValue":"5769746e657443424f522e736b69703a20756e737570706f72746564206d616a","kind":"string","nativeSrc":"17983:34:51","nodeType":"YulLiteral","src":"17983:34:51","type":"","value":"WitnetCBOR.skip: unsupported maj"}],"functionName":{"name":"mstore","nativeSrc":"17956:6:51","nodeType":"YulIdentifier","src":"17956:6:51"},"nativeSrc":"17956:62:51","nodeType":"YulFunctionCall","src":"17956:62:51"},"nativeSrc":"17956:62:51","nodeType":"YulExpressionStatement","src":"17956:62:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18038:9:51","nodeType":"YulIdentifier","src":"18038:9:51"},{"kind":"number","nativeSrc":"18049:2:51","nodeType":"YulLiteral","src":"18049:2:51","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18034:3:51","nodeType":"YulIdentifier","src":"18034:3:51"},"nativeSrc":"18034:18:51","nodeType":"YulFunctionCall","src":"18034:18:51"},{"hexValue":"6f722074797065","kind":"string","nativeSrc":"18054:9:51","nodeType":"YulLiteral","src":"18054:9:51","type":"","value":"or type"}],"functionName":{"name":"mstore","nativeSrc":"18027:6:51","nodeType":"YulIdentifier","src":"18027:6:51"},"nativeSrc":"18027:37:51","nodeType":"YulFunctionCall","src":"18027:37:51"},"nativeSrc":"18027:37:51","nodeType":"YulExpressionStatement","src":"18027:37:51"},{"nativeSrc":"18073:27:51","nodeType":"YulAssignment","src":"18073:27:51","value":{"arguments":[{"name":"headStart","nativeSrc":"18085:9:51","nodeType":"YulIdentifier","src":"18085:9:51"},{"kind":"number","nativeSrc":"18096:3:51","nodeType":"YulLiteral","src":"18096:3:51","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"18081:3:51","nodeType":"YulIdentifier","src":"18081:3:51"},"nativeSrc":"18081:19:51","nodeType":"YulFunctionCall","src":"18081:19:51"},"variableNames":[{"name":"tail","nativeSrc":"18073:4:51","nodeType":"YulIdentifier","src":"18073:4:51"}]}]},"name":"abi_encode_tuple_t_stringliteral_92a4e60c9c8a6bab113d51719bd32c972951c92a48fb0ef633db4f8d512f86fe__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"17703:403:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17854:9:51","nodeType":"YulTypedName","src":"17854:9:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17868:4:51","nodeType":"YulTypedName","src":"17868:4:51","type":""}],"src":"17703:403:51"},{"body":{"nativeSrc":"18240:119:51","nodeType":"YulBlock","src":"18240:119:51","statements":[{"nativeSrc":"18250:26:51","nodeType":"YulAssignment","src":"18250:26:51","value":{"arguments":[{"name":"headStart","nativeSrc":"18262:9:51","nodeType":"YulIdentifier","src":"18262:9:51"},{"kind":"number","nativeSrc":"18273:2:51","nodeType":"YulLiteral","src":"18273:2:51","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18258:3:51","nodeType":"YulIdentifier","src":"18258:3:51"},"nativeSrc":"18258:18:51","nodeType":"YulFunctionCall","src":"18258:18:51"},"variableNames":[{"name":"tail","nativeSrc":"18250:4:51","nodeType":"YulIdentifier","src":"18250:4:51"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18292:9:51","nodeType":"YulIdentifier","src":"18292:9:51"},{"name":"value0","nativeSrc":"18303:6:51","nodeType":"YulIdentifier","src":"18303:6:51"}],"functionName":{"name":"mstore","nativeSrc":"18285:6:51","nodeType":"YulIdentifier","src":"18285:6:51"},"nativeSrc":"18285:25:51","nodeType":"YulFunctionCall","src":"18285:25:51"},"nativeSrc":"18285:25:51","nodeType":"YulExpressionStatement","src":"18285:25:51"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18330:9:51","nodeType":"YulIdentifier","src":"18330:9:51"},{"kind":"number","nativeSrc":"18341:2:51","nodeType":"YulLiteral","src":"18341:2:51","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18326:3:51","nodeType":"YulIdentifier","src":"18326:3:51"},"nativeSrc":"18326:18:51","nodeType":"YulFunctionCall","src":"18326:18:51"},{"name":"value1","nativeSrc":"18346:6:51","nodeType":"YulIdentifier","src":"18346:6:51"}],"functionName":{"name":"mstore","nativeSrc":"18319:6:51","nodeType":"YulIdentifier","src":"18319:6:51"},"nativeSrc":"18319:34:51","nodeType":"YulFunctionCall","src":"18319:34:51"},"nativeSrc":"18319:34:51","nodeType":"YulExpressionStatement","src":"18319:34:51"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"18111:248:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18201:9:51","nodeType":"YulTypedName","src":"18201:9:51","type":""},{"name":"value1","nativeSrc":"18212:6:51","nodeType":"YulTypedName","src":"18212:6:51","type":""},{"name":"value0","nativeSrc":"18220:6:51","nodeType":"YulTypedName","src":"18220:6:51","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18231:4:51","nodeType":"YulTypedName","src":"18231:4:51","type":""}],"src":"18111:248:51"},{"body":{"nativeSrc":"18411:88:51","nodeType":"YulBlock","src":"18411:88:51","statements":[{"body":{"nativeSrc":"18442:22:51","nodeType":"YulBlock","src":"18442:22:51","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"18444:16:51","nodeType":"YulIdentifier","src":"18444:16:51"},"nativeSrc":"18444:18:51","nodeType":"YulFunctionCall","src":"18444:18:51"},"nativeSrc":"18444:18:51","nodeType":"YulExpressionStatement","src":"18444:18:51"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"18427:5:51","nodeType":"YulIdentifier","src":"18427:5:51"},{"arguments":[{"kind":"number","nativeSrc":"18438:1:51","nodeType":"YulLiteral","src":"18438:1:51","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"18434:3:51","nodeType":"YulIdentifier","src":"18434:3:51"},"nativeSrc":"18434:6:51","nodeType":"YulFunctionCall","src":"18434:6:51"}],"functionName":{"name":"eq","nativeSrc":"18424:2:51","nodeType":"YulIdentifier","src":"18424:2:51"},"nativeSrc":"18424:17:51","nodeType":"YulFunctionCall","src":"18424:17:51"},"nativeSrc":"18421:43:51","nodeType":"YulIf","src":"18421:43:51"},{"nativeSrc":"18473:20:51","nodeType":"YulAssignment","src":"18473:20:51","value":{"arguments":[{"name":"value","nativeSrc":"18484:5:51","nodeType":"YulIdentifier","src":"18484:5:51"},{"kind":"number","nativeSrc":"18491:1:51","nodeType":"YulLiteral","src":"18491:1:51","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"18480:3:51","nodeType":"YulIdentifier","src":"18480:3:51"},"nativeSrc":"18480:13:51","nodeType":"YulFunctionCall","src":"18480:13:51"},"variableNames":[{"name":"ret","nativeSrc":"18473:3:51","nodeType":"YulIdentifier","src":"18473:3:51"}]}]},"name":"increment_t_uint256","nativeSrc":"18364:135:51","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"18393:5:51","nodeType":"YulTypedName","src":"18393:5:51","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"18403:3:51","nodeType":"YulTypedName","src":"18403:3:51","type":""}],"src":"18364:135:51"},{"body":{"nativeSrc":"18536:95:51","nodeType":"YulBlock","src":"18536:95:51","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18553:1:51","nodeType":"YulLiteral","src":"18553:1:51","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"18560:3:51","nodeType":"YulLiteral","src":"18560:3:51","type":"","value":"224"},{"kind":"number","nativeSrc":"18565:10:51","nodeType":"YulLiteral","src":"18565:10:51","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"18556:3:51","nodeType":"YulIdentifier","src":"18556:3:51"},"nativeSrc":"18556:20:51","nodeType":"YulFunctionCall","src":"18556:20:51"}],"functionName":{"name":"mstore","nativeSrc":"18546:6:51","nodeType":"YulIdentifier","src":"18546:6:51"},"nativeSrc":"18546:31:51","nodeType":"YulFunctionCall","src":"18546:31:51"},"nativeSrc":"18546:31:51","nodeType":"YulExpressionStatement","src":"18546:31:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18593:1:51","nodeType":"YulLiteral","src":"18593:1:51","type":"","value":"4"},{"kind":"number","nativeSrc":"18596:4:51","nodeType":"YulLiteral","src":"18596:4:51","type":"","value":"0x01"}],"functionName":{"name":"mstore","nativeSrc":"18586:6:51","nodeType":"YulIdentifier","src":"18586:6:51"},"nativeSrc":"18586:15:51","nodeType":"YulFunctionCall","src":"18586:15:51"},"nativeSrc":"18586:15:51","nodeType":"YulExpressionStatement","src":"18586:15:51"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18617:1:51","nodeType":"YulLiteral","src":"18617:1:51","type":"","value":"0"},{"kind":"number","nativeSrc":"18620:4:51","nodeType":"YulLiteral","src":"18620:4:51","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"18610:6:51","nodeType":"YulIdentifier","src":"18610:6:51"},"nativeSrc":"18610:15:51","nodeType":"YulFunctionCall","src":"18610:15:51"},"nativeSrc":"18610:15:51","nodeType":"YulExpressionStatement","src":"18610:15:51"}]},"name":"panic_error_0x01","nativeSrc":"18504:127:51","nodeType":"YulFunctionDefinition","src":"18504: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_$9767t_contract$_IWitOracleRadonRequestModal_$10613t_userDefinedValueType$_TransactionHash_$13108(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_$13108_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_2692() -> 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_2693() -> 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_2695() -> 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_2692()\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_2693()\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_$13240_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_2695()\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 := 0\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(0, shl(224, 0x4e487b71))\n                mstore(4, 0x22)\n                revert(0, 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_$13102_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_$13102_t_struct$_QuerySLA_$13324_memory_ptr_t_struct$_QueryCallback_$13287_memory_ptr__to_t_bytes32_t_struct$_QuerySLA_$13324_memory_ptr_t_struct$_QueryCallback_$13287_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 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":"730000000000000000000000000000000000000000301460806040526004361061004a575f3560e01c80633752120b1461004e5780635d933eb71461008057806367c4440f146100b0575b5f5ffd5b818015610059575f5ffd5b5061006d610068366004611cfe565b6100db565b6040519081526020015b60405180910390f35b81801561008b575f5ffd5b5061009f61009a366004611d3c565b610354565b604051610077959493929190611dfe565b6100c36100be366004612051565b6106c7565b6040516001600160401b039091168152602001610077565b5f8181525f51602061242b5f395f51905f5260205260409020545f19811461034d576040805160018082528183019092525f91816020015b6060815260200190600190039081610113579050509050610133836107e9565b815f8151811061014557610145612103565b60200260200101819052505f846001600160a01b031663f0e271bc836101755f51602061244b5f395f51905f5290565b6004016040518363ffffffff1660e01b8152600401610195929190612117565b6020604051808303815f875af11580156101b1573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101d59190612265565b9050856001600160a01b0316633b3195b73483604051806060016040528061010061ffff1681526020016102135f51602061244b5f395f51905f5290565b6003015461ffff1681526020015f51602061244b5f395f51905f526003015464010000000090046001600160401b039081169091526040805180820182523081526202d2a86020808301918252835160e08a901b6001600160e01b03191681526004810197909752855161ffff90811660248901529086015116604487015293909101519091166064840152516001600160a01b031660848301525162ffffff1660a482015260c40160206040518083038185885af11580156102d8573d5f5f3e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906102fd9190612265565b5f8581525f51602061242b5f395f51905f52602090815260408083208490558383527f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c59009091529020859055925050505b9392505050565b5f8381527f6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c5900602052604081205490606090819080846103cd5760405162461bcd60e51b815260206004820152601060248201526f1a5b9d985b1a59081c5d595c9e481a5960821b60448201526064015b60405180910390fd5b5f8581525f51602061242b5f395f51905f5260205260409020546001016104365760405162461bcd60e51b815260206004820152601a60248201527f7769742f7772617020747820616c7265616479206d696e74656400000000000060448201526064016103c4565b5f61044387890189612051565b90505f815160ff8111156104595761045961227c565b146104a65760405162461bcd60e51b815260206004820152601860248201527f717565727920736f6c7665642077697468206572726f7273000000000000000060448201526064016103c4565b6001816020015160138111156104be576104be61227c565b146105025760405162461bcd60e51b81526020600482015260146024820152731a5b9d985b1a59081c5d595c9e481c995cdd5b1d60621b60448201526064016103c4565b5f8681525f51602061242b5f395f51905f52602052604081205f199055610528826108f7565b905061054c815f8151811061053f5761053f612103565b60200260200101516109cd565b6001600160401b03166001146105a45760405162461bcd60e51b815260206004820152601860248201527f756e66696e616c697a656420717565727920726573756c74000000000000000060448201526064016103c4565b6105c7816002815181106105ba576105ba612103565b6020026020010151610a26565b95506105df816003815181106105ba576105ba612103565b94506106076106026105fd836001815181106105ba576105ba612103565b610b28565b610c12565b93505f6106208260048151811061053f5761053f612103565b90506106388260058151811061053f5761053f612103565b93506106655f51602061244b5f395f51905f52546001600160401b0383811691600160c01b900416610c25565b156106b957835f51602061244b5f395f51905f5260010180545f906106949084906001600160401b03166122a4565b92506101000a8154816001600160401b0302191690836001600160401b031602179055505b505050939792965093509350565b5f606081835160ff8111156106de576106de61227c565b036106ef576106ec83610c3b565b90505b5f835160ff8111156107035761070361227c565b14801561073b575061073b5f51602061244b5f395f51905f525460608501516001600160401b0390811691600160c01b900416610c25565b8015610748575080516003145b6107855760405162461bcd60e51b815260206004820152600e60248201526d1a5b9d985b1a59081c995c1bdc9d60921b60448201526064016103c4565b8060028151811061079857610798612103565b6020026020010151816001815181106107b3576107b3612103565b6020026020010151825f815181106107cd576107cd612103565b60200260200101516107df91906122a4565b61034d91906122a4565b6040805181815260608181018352915f91906020820181803683370190505090505f5b81518160ff1610156108f0576108546004856108296002856122d7565b60ff166020811061083c5761083c612103565b1a60f81b6001600160f81b031916901c60f81c610cce565b828261085f816122f8565b935060ff168151811061087457610874612103565b60200101906001600160f81b03191690815f1a9053506108b5846108996002846122d7565b60ff16602081106108ac576108ac612103565b1a600f16610cce565b82826108c0816122f8565b935060ff16815181106108d5576108d5612103565b60200101906001600160f81b03191690815f1a90535061080c565b5092915050565b606081600161090582610d01565b158015610937575080601381111561091f5761091f61227c565b826020015160138111156109355761093561227c565b145b61097d5760405162461bcd60e51b815260206004820152601760248201527663626f723a2063616e6e6f74206665746368206461746160481b60448201526064016103c4565b61098a8460800151610d0e565b92506109998260800151610eb9565b826020019060138111156109af576109af61227c565b908160138111156109c2576109c261227c565b815250505050919050565b5f815f8060ff16826040015160ff1614610a0b57604080830151905161800560e51b815260ff918216600482015290821660248201526044016103c4565b610a1c845f01518560600151610f80565b92505b5050919050565b60608160038060ff16826040015160ff1614610a6657604080830151905161800560e51b815260ff918216600482015290821660248201526044016103c4565b610a77845f01518560600151610f80565b6001600160401b03166080850181905267fffffffffffffffe1901610b11575f5b80610b0b575f610aaf865f01518760400151611047565b90506001600160401b038082161015610b005784610ad9610ad1600484612316565b8851906110ec565b604051602001610aea929190612343565b6040516020818303038152906040529450610b05565b600191505b50610a98565b50610a1f565b60808401518451610b21916110ec565b9250610a1f565b60606002825181610b3b57610b3b6122c3565b046001600160401b03811115610b5357610b53611e54565b6040519080825280601f01601f191660200182016040528015610b7d576020820181803683370190505b5090505f5b8151811015610c0c575f610bb1848360020281518110610ba457610ba4612103565b016020015160f81c611270565b90505f610bcf858460020260010181518110610ba457610ba4612103565b905080826010020160f81b848481518110610bec57610bec612103565b60200101906001600160f81b03191690815f1a9053505050600101610b82565b50919050565b5f610c1c82611334565b60601c92915050565b6001600160401b03808216908316115b92915050565b6060816001610c4982610d01565b158015610c7b5750806013811115610c6357610c6361227c565b82602001516013811115610c7957610c7961227c565b145b610cc15760405162461bcd60e51b815260206004820152601760248201527663626f723a2063616e6e6f74206665746368206461746160481b60448201526064016103c4565b61098a8460800151611340565b5f600a8260ff1610610ced57610ce5826057612371565b60f81b610c35565b610cf8826030612371565b60f81b92915050565b5f610c35825f0151611482565b60608160048060ff16826040015160ff1614610d4e57604080830151905161800560e51b815260ff918216600482015290821660248201526044016103c4565b5f610d60855f01518660600151610f80565b9050610d6d8160016122a4565b6001600160401b03166001600160401b03811115610d8d57610d8d611e54565b604051908082528060200260200182016040528015610dc657816020015b610db3611ca2565b815260200190600190039081610dab5790505b5093505f5b816001600160401b0316811015610e8957610de5866114b9565b9550610df0866114e1565b858281518110610e0257610e02612103565b6020026020010181905250600460ff16866040015160ff1603610e5a575f610e2987610d0e565b90508060018251610e3a919061238a565b81518110610e4a57610e4a612103565b6020026020010151965050610e81565b600560ff16866040015160ff1603610e76575f610e2987611578565b610e7f8661175e565b505b600101610dcb565b508484826001600160401b031681518110610ea657610ea6612103565b6020026020010181905250505050919050565b5f610ecd8251805151602090910151101590565b610f7b576006826040015160ff1611610f155760408201516502020183808360d11b9060ff1660078110610f0357610f03612103565b1a6013811115610c3557610c3561227c565b816040015160ff16600703610f7b57816060015160ff1660141480610f415750816060015160ff166015145b15610f4e57506002919050565b6019826060015160ff1610158015610f6e5750601b826060015160ff1611155b15610f7b57506005919050565b919050565b5f60188260ff161015610f97575060ff8116610c35565b8160ff16601803610fb557610fab8361191e565b60ff169050610c35565b8160ff16601903610fd457610fc98361197e565b61ffff169050610c35565b8160ff16601a03610ff557610fe8836119e9565b63ffffffff169050610c35565b8160ff16601b036110105761100983611a47565b9050610c35565b8160ff16601f0361102957506001600160401b03610c35565b604051636d785b1360e01b815260ff831660048201526024016103c4565b5f5f6110528461191e565b90508060ff1660ff0361106f576001600160401b03915050610c35565b61107c8482601f16610f80565b91506001600160401b03808316106110b257604051636d785b1360e01b81526001600160401b03831660048201526024016103c4565b60ff83166007600583901c16146108f05760405161800560e51b81526007600583901c16600482015260ff841660248201526044016103c4565b6060816001600160401b03166001600160401b0381111561110f5761110f611e54565b6040519080825280601f01601f191660200182016040528015611139576020820181803683370190505b5090505f5b826001600160401b0316816001600160401b03161015611267575f6111628561191e565b905060808116156112295760e08160ff16101561119e576111828561191e565b603f16600682601f1660ff16901b179050600184039350611229565b60f08160ff1610156111e3576111b38561191e565b603f1660066111c18761191e565b603f1660ff16901b600c83600f1660ff16901b17179050600284039350611229565b6111ec8561191e565b603f1660066111fa8761191e565b603f16901b600c61120a8861191e565b603f1660ff16901b601284600f1660ff16901b17171790506003840393505b8060f81b83836001600160401b03168151811061124857611248612103565b60200101906001600160f81b03191690815f1a9053505060010161113e565b50908152919050565b5f60308260ff1610158015611289575060398260ff1611155b1561129957610c3560308361239d565b60418260ff16101580156112b1575060468260ff1611155b156112cc576112c160418361239d565b610c3590600a612371565b60618260ff16101580156112e4575060668260ff1611155b156112f4576112c160618361239d565b60405162461bcd60e51b815260206004820152601560248201527424b73b30b634b2103432bc1031b430b930b1ba32b960591b60448201526064016103c4565b5f610c35826014611aa5565b60608160048060ff16826040015160ff161461138057604080830151905161800560e51b815260ff918216600482015290821660248201526044016103c4565b5f611392855f01518660600151610f80565b90506001600160401b03808216101561145657806001600160401b03166001600160401b038111156113c6576113c6611e54565b6040519080825280602002602001820160405280156113ef578160200160208202803683370190505b5093505f5b816001600160401b0316811015611450575f611412875f0151611b1a565b905061141d816109cd565b86838151811061142f5761142f612103565b6001600160401b0390921660209283029190910190910152506001016113f4565b5061147a565b604051636d785b1360e01b81526001600160401b03821660048201526024016103c4565b505050919050565b5f60f08260ff8111156114975761149761227c565b1480610c35575060f18260ff8111156114b2576114b261227c565b1492915050565b6114c1611ca2565b815180515160209091015110156114dd578151610c3590611b1a565b5090565b6114e9611ca2565b6040805160c0810180835284516101008301845260609091525f60e0830152825180840190935280518352602090810151908301529081908152602001836020015160ff168152602001836040015160ff168152602001836060015160ff16815260200183608001516001600160401b031681526020018360a001516001600160401b03168152509050919050565b60608160058060ff16826040015160ff16146115b857604080830151905161800560e51b815260ff918216600482015290821660248201526044016103c4565b5f6115ca855f01518660600151610f80565b6115d59060026123b6565b90506115e28160016122a4565b6001600160401b03166001600160401b0381111561160257611602611e54565b60405190808252806020026020018201604052801561163b57816020015b611628611ca2565b8152602001906001900390816116205790505b5093505f5b816001600160401b0316811015610e895761165a866114b9565b9550611665866114e1565b85828151811061167757611677612103565b602090810291909101015261168d6002826123d8565b1580156116a25750604086015160ff16600314155b156116d057604080870151905161800560e51b815260ff9091166004820152600360248201526044016103c4565b604086015160ff16600414806116ed5750604086015160ff166005145b1561174b5760408601515f9060ff166004146117115761170c87611578565b61171a565b61171a87610d0e565b9050806001825161172b919061238a565b8151811061173b5761173b612103565b6020026020010151965050611756565b6117548661175e565b505b600101611640565b611766611ca2565b604082015160ff1615806117815750604082015160ff166001145b806117ba5750604082015160ff1660071480156117a657506019826060015160ff1610155b80156117ba5750601b826060015160ff1611155b156117ec576117c882611c37565b6001600160401b0316825f01516020018181516117e591906123eb565b9052505090565b604082015160ff16600314806118095750604082015160ff166002145b1561184a575f611820835f01518460600151610f80565b9050806001600160401b0316835f015160200181815161184091906123eb565b9052506114dd9050565b604082015160ff16600414806118675750604082015160ff166005145b1561188f5761187d825f01518360600151610f80565b6001600160401b031660808301525090565b604082015160ff1660071415806118c15750816060015160ff166014141580156118c15750816060015160ff16601514155b156114dd5760405162461bcd60e51b815260206004820152602760248201527f5769746e657443424f522e736b69703a20756e737570706f72746564206d616a6044820152666f72207479706560c81b60648201526084016103c4565b5f8160200151825f01515180821115611954576040516363a056dd60e01b815260048101839052602481018290526044016103c4565b8351602085018051808301600101519550908190611971826123fe565b8152505050505050919050565b5f8160200151600261199091906123eb565b825151808211156119be576040516363a056dd60e01b815260048101839052602481018290526044016103c4565b83516020850180516002818401810151965090916119dc82846123eb565b9052509395945050505050565b5f816020015160046119fb91906123eb565b82515180821115611a29576040516363a056dd60e01b815260048101839052602481018290526044016103c4565b83516020850180516004818401810151965090916119dc82846123eb565b5f81602001516008611a5991906123eb565b82515180821115611a87576040516363a056dd60e01b815260048101839052602481018290526044016103c4565b83516020850180516008818401810151965090916119dc82846123eb565b5f60208260ff161115611aba57611aba612416565b5f8260ff16845111611acd578351611ad2565b8260ff165b90505f5b81811015611b125780600802858281518110611af457611af4612103565b01602001516001600160f81b031916901c9290921791600101611ad6565b505092915050565b611b22611ca2565b81515182905f03611b46576040516309036d4760e21b815260040160405180910390fd5b5f60ff816001600160401b038160015b8015611bc757611b658961191e565b955081611b71816123fe565b6007600589901c169650601f881695509250506005198501611bc0576020890151611b9c8a86610f80565b9350808a60200151611bae919061238a565b611bb890846123eb565b925050611b56565b505f611b56565b600760ff86161115611bf15760405163bd2ac87960e01b815260ff861660048201526024016103c4565b506040805160c08101825298895260ff95861660208a015293851693880193909352921660608601526001600160401b0390811660808601521660a08401525090919050565b5f6018826060015160ff161015611c4f57505f919050565b601c826060015160ff161015611c7e5760188260600151611c70919061239d565b60ff166001901b9050919050565b6060820151604051636d785b1360e01b815260ff90911660048201526024016103c4565b604080516101008101909152606060c082019081525f60e0830152819081525f6020820181905260408201819052606082018190526080820181905260a09091015290565b6001600160a01b0381168114611cfb575f5ffd5b50565b5f5f5f60608486031215611d10575f5ffd5b8335611d1b81611ce7565b92506020840135611d2b81611ce7565b929592945050506040919091013590565b5f5f5f60408486031215611d4e575f5ffd5b8335925060208401356001600160401b03811115611d6a575f5ffd5b8401601f81018613611d7a575f5ffd5b80356001600160401b03811115611d8f575f5ffd5b866020828401011115611da0575f5ffd5b939660209190910195509293505050565b5f5b83811015611dcb578181015183820152602001611db3565b50505f910152565b5f8151808452611dea816020860160208601611db1565b601f01601f19169290920160200192915050565b85815260a060208201525f611e1660a0830187611dd3565b8281036040840152611e288187611dd3565b6001600160a01b0395909516606084015250506001600160401b03919091166080909101529392505050565b634e487b7160e01b5f52604160045260245ffd5b60405160c081016001600160401b0381118282101715611e8a57611e8a611e54565b60405290565b604080519081016001600160401b0381118282101715611e8a57611e8a611e54565b60405160a081016001600160401b0381118282101715611e8a57611e8a611e54565b604051601f8201601f191681016001600160401b0381118282101715611efc57611efc611e54565b604052919050565b80356001600160401b0381168114610f7b575f5ffd5b803560ff81168114610f7b575f5ffd5b5f60c08284031215611f3a575f5ffd5b611f42611e68565b905081356001600160401b03811115611f59575f5ffd5b820160408185031215611f6a575f5ffd5b611f72611e90565b81356001600160401b03811115611f87575f5ffd5b8201601f81018613611f97575f5ffd5b80356001600160401b03811115611fb057611fb0611e54565b611fc3601f8201601f1916602001611ed4565b818152876020838501011115611fd7575f5ffd5b816020840160208301375f602092820183015283529283013582840152508252612002908301611f1a565b602082015261201360408301611f1a565b604082015261202460608301611f1a565b606082015261203560808301611f04565b608082015261204660a08301611f04565b60a082015292915050565b5f60208284031215612061575f5ffd5b81356001600160401b03811115612076575f5ffd5b820160a08185031215612087575f5ffd5b61208f611eb2565b8135610100811061209e575f5ffd5b81526020820135601481106120b1575f5ffd5b6020820152604082810135908201526120cc60608301611f04565b606082015260808201356001600160401b038111156120e9575f5ffd5b6120f586828501611f2a565b608083015250949350505050565b634e487b7160e01b5f52603260045260245ffd5b5f604082016040835280855180835260608501915060608160051b8601019250602087015f5b8281101561216e57605f19878603018452612159858351611dd3565b9450602093840193919091019060010161213d565b50505050828103602084015280845480835260208301915060208160051b840101865f5260205f205f5b8381101561225757858303601f1901855281545f90600181811c908216806121c157607f821691505b6020821081036121df57634e487b7160e01b5f52602260045260245ffd5b818752602087018180156121fa57600181146122105761223c565b60ff198516825283151560051b8201955061223c565b5f888152602090205f5b858110156122365781548482015260019091019060200161221a565b83019650505b50505060209790970196509093505060019182019101612198565b509098975050505050505050565b5f60208284031215612275575f5ffd5b5051919050565b634e487b7160e01b5f52602160045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b6001600160401b038181168382160190811115610c3557610c35612290565b634e487b7160e01b5f52601260045260245ffd5b5f60ff8316806122e9576122e96122c3565b8060ff84160491505092915050565b5f60ff821660ff810361230d5761230d612290565b60010192915050565b5f6001600160401b0383168061232e5761232e6122c3565b806001600160401b0384160491505092915050565b5f8351612354818460208801611db1565b835190830190612368818360208801611db1565b01949350505050565b60ff8181168382160190811115610c3557610c35612290565b81810381811115610c3557610c35612290565b60ff8281168282160390811115610c3557610c35612290565b6001600160401b0381811683821602908116908181146108f0576108f0612290565b5f826123e6576123e66122c3565b500690565b80820180821115610c3557610c35612290565b5f6001820161240f5761240f612290565b5060010190565b634e487b7160e01b5f52600160045260245ffdfe6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58ff6116473658e87b023e7f215d122c0048f3d7a669d8df94a5565f0c95871c58f9a2646970667358221220b43bbdcdf1e6990af6ef1861b380dbfd3141b2b1fbdf097d97179470f57636cd64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4A JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3752120B EQ PUSH2 0x4E JUMPI DUP1 PUSH4 0x5D933EB7 EQ PUSH2 0x80 JUMPI DUP1 PUSH4 0x67C4440F EQ PUSH2 0xB0 JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x59 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x6D PUSH2 0x68 CALLDATASIZE PUSH1 0x4 PUSH2 0x1CFE JUMP JUMPDEST PUSH2 0xDB 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 0x8B JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH2 0x9F PUSH2 0x9A CALLDATASIZE PUSH1 0x4 PUSH2 0x1D3C JUMP JUMPDEST PUSH2 0x354 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x77 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1DFE JUMP JUMPDEST PUSH2 0xC3 PUSH2 0xBE CALLDATASIZE PUSH1 0x4 PUSH2 0x2051 JUMP JUMPDEST PUSH2 0x6C7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x77 JUMP JUMPDEST PUSH0 DUP2 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x242B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH0 NOT DUP2 EQ PUSH2 0x34D JUMPI PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH0 SWAP2 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x113 JUMPI SWAP1 POP POP SWAP1 POP PUSH2 0x133 DUP4 PUSH2 0x7E9 JUMP JUMPDEST DUP2 PUSH0 DUP2 MLOAD DUP2 LT PUSH2 0x145 JUMPI PUSH2 0x145 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH0 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0xF0E271BC DUP4 PUSH2 0x175 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x195 SWAP3 SWAP2 SWAP1 PUSH2 0x2117 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1B1 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x1D5 SWAP2 SWAP1 PUSH2 0x2265 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 0x213 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x3 ADD SLOAD PUSH2 0xFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x3 ADD SLOAD PUSH5 0x100000000 SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP1 DUP2 AND SWAP1 SWAP2 MSTORE PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE ADDRESS DUP2 MSTORE PUSH3 0x2D2A8 PUSH1 0x20 DUP1 DUP4 ADD SWAP2 DUP3 MSTORE DUP4 MLOAD PUSH1 0xE0 DUP11 SWAP1 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND DUP2 MSTORE PUSH1 0x4 DUP2 ADD SWAP8 SWAP1 SWAP8 MSTORE DUP6 MLOAD PUSH2 0xFFFF SWAP1 DUP2 AND PUSH1 0x24 DUP10 ADD MSTORE SWAP1 DUP7 ADD MLOAD AND PUSH1 0x44 DUP8 ADD MSTORE SWAP4 SWAP1 SWAP2 ADD MLOAD SWAP1 SWAP2 AND PUSH1 0x64 DUP5 ADD MSTORE MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x84 DUP4 ADD MSTORE MLOAD PUSH3 0xFFFFFF AND PUSH1 0xA4 DUP3 ADD MSTORE PUSH1 0xC4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x2D8 JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0x2FD SWAP2 SWAP1 PUSH2 0x2265 JUMP JUMPDEST PUSH0 DUP6 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x242B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 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 PUSH0 DUP4 DUP2 MSTORE PUSH32 0x6116473658E87B023E7F215D122C0048F3D7A669D8DF94A5565F0C95871C5900 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 PUSH1 0x60 SWAP1 DUP2 SWAP1 DUP1 DUP5 PUSH2 0x3CD 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 PUSH0 DUP6 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x242B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 ADD PUSH2 0x436 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH2 0x443 DUP8 DUP10 ADD DUP10 PUSH2 0x2051 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x459 JUMPI PUSH2 0x459 PUSH2 0x227C JUMP JUMPDEST EQ PUSH2 0x4A6 JUMPI PUSH1 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 0x3C4 JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x4BE JUMPI PUSH2 0x4BE PUSH2 0x227C JUMP JUMPDEST EQ PUSH2 0x502 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 0x3C4 JUMP JUMPDEST PUSH0 DUP7 DUP2 MSTORE PUSH0 MLOAD PUSH1 0x20 PUSH2 0x242B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 PUSH0 NOT SWAP1 SSTORE PUSH2 0x528 DUP3 PUSH2 0x8F7 JUMP JUMPDEST SWAP1 POP PUSH2 0x54C DUP2 PUSH0 DUP2 MLOAD DUP2 LT PUSH2 0x53F JUMPI PUSH2 0x53F PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x9CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 EQ PUSH2 0x5A4 JUMPI PUSH1 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 0x3C4 JUMP JUMPDEST PUSH2 0x5C7 DUP2 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0xA26 JUMP JUMPDEST SWAP6 POP PUSH2 0x5DF DUP2 PUSH1 0x3 DUP2 MLOAD DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x2103 JUMP JUMPDEST SWAP5 POP PUSH2 0x607 PUSH2 0x602 PUSH2 0x5FD DUP4 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x5BA JUMPI PUSH2 0x5BA PUSH2 0x2103 JUMP JUMPDEST PUSH2 0xB28 JUMP JUMPDEST PUSH2 0xC12 JUMP JUMPDEST SWAP4 POP PUSH0 PUSH2 0x620 DUP3 PUSH1 0x4 DUP2 MLOAD DUP2 LT PUSH2 0x53F JUMPI PUSH2 0x53F PUSH2 0x2103 JUMP JUMPDEST SWAP1 POP PUSH2 0x638 DUP3 PUSH1 0x5 DUP2 MLOAD DUP2 LT PUSH2 0x53F JUMPI PUSH2 0x53F PUSH2 0x2103 JUMP JUMPDEST SWAP4 POP PUSH2 0x665 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 DUP2 AND SWAP2 PUSH1 0x1 PUSH1 0xC0 SHL SWAP1 DIV AND PUSH2 0xC25 JUMP JUMPDEST ISZERO PUSH2 0x6B9 JUMPI DUP4 PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 MSTORE PUSH1 0x1 ADD DUP1 SLOAD PUSH0 SWAP1 PUSH2 0x694 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH2 0x22A4 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 PUSH0 PUSH1 0x60 DUP2 DUP4 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x6DE JUMPI PUSH2 0x6DE PUSH2 0x227C JUMP JUMPDEST SUB PUSH2 0x6EF JUMPI PUSH2 0x6EC DUP4 PUSH2 0xC3B JUMP JUMPDEST SWAP1 POP JUMPDEST PUSH0 DUP4 MLOAD PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x703 JUMPI PUSH2 0x703 PUSH2 0x227C JUMP JUMPDEST EQ DUP1 ISZERO PUSH2 0x73B JUMPI POP PUSH2 0x73B PUSH0 MLOAD PUSH1 0x20 PUSH2 0x244B PUSH0 CODECOPY PUSH0 MLOAD SWAP1 PUSH0 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 0xC25 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x748 JUMPI POP DUP1 MLOAD PUSH1 0x3 EQ JUMPDEST PUSH2 0x785 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 0x3C4 JUMP JUMPDEST DUP1 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x798 JUMPI PUSH2 0x798 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x7B3 JUMPI PUSH2 0x7B3 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP3 PUSH0 DUP2 MLOAD DUP2 LT PUSH2 0x7CD JUMPI PUSH2 0x7CD PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH2 0x7DF SWAP2 SWAP1 PUSH2 0x22A4 JUMP JUMPDEST PUSH2 0x34D SWAP2 SWAP1 PUSH2 0x22A4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP2 DUP2 MSTORE PUSH1 0x60 DUP2 DUP2 ADD DUP4 MSTORE SWAP2 PUSH0 SWAP2 SWAP1 PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP POP SWAP1 POP PUSH0 JUMPDEST DUP2 MLOAD DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x8F0 JUMPI PUSH2 0x854 PUSH1 0x4 DUP6 PUSH2 0x829 PUSH1 0x2 DUP6 PUSH2 0x22D7 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP2 LT PUSH2 0x83C JUMPI PUSH2 0x83C PUSH2 0x2103 JUMP JUMPDEST BYTE PUSH1 0xF8 SHL PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 SHR PUSH1 0xF8 SHR PUSH2 0xCCE JUMP JUMPDEST DUP3 DUP3 PUSH2 0x85F DUP2 PUSH2 0x22F8 JUMP JUMPDEST SWAP4 POP PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x874 JUMPI PUSH2 0x874 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP PUSH2 0x8B5 DUP5 PUSH2 0x899 PUSH1 0x2 DUP5 PUSH2 0x22D7 JUMP JUMPDEST PUSH1 0xFF AND PUSH1 0x20 DUP2 LT PUSH2 0x8AC JUMPI PUSH2 0x8AC PUSH2 0x2103 JUMP JUMPDEST BYTE PUSH1 0xF AND PUSH2 0xCCE JUMP JUMPDEST DUP3 DUP3 PUSH2 0x8C0 DUP2 PUSH2 0x22F8 JUMP JUMPDEST SWAP4 POP PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x8D5 JUMPI PUSH2 0x8D5 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP PUSH2 0x80C JUMP JUMPDEST POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x1 PUSH2 0x905 DUP3 PUSH2 0xD01 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x937 JUMPI POP DUP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x91F JUMPI PUSH2 0x91F PUSH2 0x227C JUMP JUMPDEST DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x935 JUMPI PUSH2 0x935 PUSH2 0x227C JUMP JUMPDEST EQ JUMPDEST PUSH2 0x97D 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 0x3C4 JUMP JUMPDEST PUSH2 0x98A DUP5 PUSH1 0x80 ADD MLOAD PUSH2 0xD0E JUMP JUMPDEST SWAP3 POP PUSH2 0x999 DUP3 PUSH1 0x80 ADD MLOAD PUSH2 0xEB9 JUMP JUMPDEST DUP3 PUSH1 0x20 ADD SWAP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x9AF JUMPI PUSH2 0x9AF PUSH2 0x227C JUMP JUMPDEST SWAP1 DUP2 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0x9C2 JUMPI PUSH2 0x9C2 PUSH2 0x227C JUMP JUMPDEST DUP2 MSTORE POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 PUSH0 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0xA0B 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 0x3C4 JUMP JUMPDEST PUSH2 0xA1C DUP5 PUSH0 ADD MLOAD DUP6 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 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 0xA66 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 0x3C4 JUMP JUMPDEST PUSH2 0xA77 DUP5 PUSH0 ADD MLOAD DUP6 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x80 DUP6 ADD DUP2 SWAP1 MSTORE PUSH8 0xFFFFFFFFFFFFFFFE NOT ADD PUSH2 0xB11 JUMPI PUSH0 JUMPDEST DUP1 PUSH2 0xB0B JUMPI PUSH0 PUSH2 0xAAF DUP7 PUSH0 ADD MLOAD DUP8 PUSH1 0x40 ADD MLOAD PUSH2 0x1047 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND LT ISZERO PUSH2 0xB00 JUMPI DUP5 PUSH2 0xAD9 PUSH2 0xAD1 PUSH1 0x4 DUP5 PUSH2 0x2316 JUMP JUMPDEST DUP9 MLOAD SWAP1 PUSH2 0x10EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xAEA SWAP3 SWAP2 SWAP1 PUSH2 0x2343 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP5 POP PUSH2 0xB05 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP JUMPDEST POP PUSH2 0xA98 JUMP JUMPDEST POP PUSH2 0xA1F JUMP JUMPDEST PUSH1 0x80 DUP5 ADD MLOAD DUP5 MLOAD PUSH2 0xB21 SWAP2 PUSH2 0x10EC JUMP JUMPDEST SWAP3 POP PUSH2 0xA1F JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP3 MLOAD DUP2 PUSH2 0xB3B JUMPI PUSH2 0xB3B PUSH2 0x22C3 JUMP JUMPDEST DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xB53 JUMPI PUSH2 0xB53 PUSH2 0x1E54 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 0xB7D JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xC0C JUMPI PUSH0 PUSH2 0xBB1 DUP5 DUP4 PUSH1 0x2 MUL DUP2 MLOAD DUP2 LT PUSH2 0xBA4 JUMPI PUSH2 0xBA4 PUSH2 0x2103 JUMP JUMPDEST ADD PUSH1 0x20 ADD MLOAD PUSH1 0xF8 SHR PUSH2 0x1270 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0xBCF DUP6 DUP5 PUSH1 0x2 MUL PUSH1 0x1 ADD DUP2 MLOAD DUP2 LT PUSH2 0xBA4 JUMPI PUSH2 0xBA4 PUSH2 0x2103 JUMP JUMPDEST SWAP1 POP DUP1 DUP3 PUSH1 0x10 MUL ADD PUSH1 0xF8 SHL DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xBEC JUMPI PUSH2 0xBEC PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP POP POP PUSH1 0x1 ADD PUSH2 0xB82 JUMP JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xC1C DUP3 PUSH2 0x1334 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 0xC49 DUP3 PUSH2 0xD01 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0xC7B JUMPI POP DUP1 PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xC63 JUMPI PUSH2 0xC63 PUSH2 0x227C JUMP JUMPDEST DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xC79 JUMPI PUSH2 0xC79 PUSH2 0x227C JUMP JUMPDEST EQ JUMPDEST PUSH2 0xCC1 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 0x3C4 JUMP JUMPDEST PUSH2 0x98A DUP5 PUSH1 0x80 ADD MLOAD PUSH2 0x1340 JUMP JUMPDEST PUSH0 PUSH1 0xA DUP3 PUSH1 0xFF AND LT PUSH2 0xCED JUMPI PUSH2 0xCE5 DUP3 PUSH1 0x57 PUSH2 0x2371 JUMP JUMPDEST PUSH1 0xF8 SHL PUSH2 0xC35 JUMP JUMPDEST PUSH2 0xCF8 DUP3 PUSH1 0x30 PUSH2 0x2371 JUMP JUMPDEST PUSH1 0xF8 SHL SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xC35 DUP3 PUSH0 ADD MLOAD PUSH2 0x1482 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x4 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0xD4E 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH2 0xD60 DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 JUMP JUMPDEST SWAP1 POP PUSH2 0xD6D DUP2 PUSH1 0x1 PUSH2 0x22A4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0xD8D JUMPI PUSH2 0xD8D PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0xDC6 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0xDB3 PUSH2 0x1CA2 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0xDAB JUMPI SWAP1 POP JUMPDEST POP SWAP4 POP PUSH0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0xE89 JUMPI PUSH2 0xDE5 DUP7 PUSH2 0x14B9 JUMP JUMPDEST SWAP6 POP PUSH2 0xDF0 DUP7 PUSH2 0x14E1 JUMP JUMPDEST DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0xE02 JUMPI PUSH2 0xE02 PUSH2 0x2103 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 0xE5A JUMPI PUSH0 PUSH2 0xE29 DUP8 PUSH2 0xD0E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 DUP3 MLOAD PUSH2 0xE3A SWAP2 SWAP1 PUSH2 0x238A JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0xE4A JUMPI PUSH2 0xE4A PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP7 POP POP PUSH2 0xE81 JUMP JUMPDEST PUSH1 0x5 PUSH1 0xFF AND DUP7 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND SUB PUSH2 0xE76 JUMPI PUSH0 PUSH2 0xE29 DUP8 PUSH2 0x1578 JUMP JUMPDEST PUSH2 0xE7F DUP7 PUSH2 0x175E JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 ADD PUSH2 0xDCB JUMP JUMPDEST POP DUP5 DUP5 DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 MLOAD DUP2 LT PUSH2 0xEA6 JUMPI PUSH2 0xEA6 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xECD DUP3 MLOAD DUP1 MLOAD MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD LT ISZERO SWAP1 JUMP JUMPDEST PUSH2 0xF7B JUMPI PUSH1 0x6 DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND GT PUSH2 0xF15 JUMPI PUSH1 0x40 DUP3 ADD MLOAD PUSH6 0x20201838083 PUSH1 0xD1 SHL SWAP1 PUSH1 0xFF AND PUSH1 0x7 DUP2 LT PUSH2 0xF03 JUMPI PUSH2 0xF03 PUSH2 0x2103 JUMP JUMPDEST BYTE PUSH1 0x13 DUP2 GT ISZERO PUSH2 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x227C JUMP JUMPDEST DUP2 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND PUSH1 0x7 SUB PUSH2 0xF7B JUMPI DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x14 EQ DUP1 PUSH2 0xF41 JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x15 EQ JUMPDEST ISZERO PUSH2 0xF4E JUMPI POP PUSH1 0x2 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x19 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0xF6E JUMPI POP PUSH1 0x1B DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0xF7B JUMPI POP PUSH1 0x5 SWAP2 SWAP1 POP JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x18 DUP3 PUSH1 0xFF AND LT ISZERO PUSH2 0xF97 JUMPI POP PUSH1 0xFF DUP2 AND PUSH2 0xC35 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x18 SUB PUSH2 0xFB5 JUMPI PUSH2 0xFAB DUP4 PUSH2 0x191E JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP PUSH2 0xC35 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x19 SUB PUSH2 0xFD4 JUMPI PUSH2 0xFC9 DUP4 PUSH2 0x197E JUMP JUMPDEST PUSH2 0xFFFF AND SWAP1 POP PUSH2 0xC35 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1A SUB PUSH2 0xFF5 JUMPI PUSH2 0xFE8 DUP4 PUSH2 0x19E9 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND SWAP1 POP PUSH2 0xC35 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1B SUB PUSH2 0x1010 JUMPI PUSH2 0x1009 DUP4 PUSH2 0x1A47 JUMP JUMPDEST SWAP1 POP PUSH2 0xC35 JUMP JUMPDEST DUP2 PUSH1 0xFF AND PUSH1 0x1F SUB PUSH2 0x1029 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB PUSH2 0xC35 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH0 PUSH2 0x1052 DUP5 PUSH2 0x191E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0xFF AND PUSH1 0xFF SUB PUSH2 0x106F JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB SWAP2 POP POP PUSH2 0xC35 JUMP JUMPDEST PUSH2 0x107C DUP5 DUP3 PUSH1 0x1F AND PUSH2 0xF80 JUMP JUMPDEST SWAP2 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP4 AND LT PUSH2 0x10B2 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 0x3C4 JUMP JUMPDEST PUSH1 0xFF DUP4 AND PUSH1 0x7 PUSH1 0x5 DUP4 SWAP1 SHR AND EQ PUSH2 0x8F0 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 0x3C4 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 0x110F JUMPI PUSH2 0x110F PUSH2 0x1E54 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 0x1139 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP PUSH0 JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND LT ISZERO PUSH2 0x1267 JUMPI PUSH0 PUSH2 0x1162 DUP6 PUSH2 0x191E JUMP JUMPDEST SWAP1 POP PUSH1 0x80 DUP2 AND ISZERO PUSH2 0x1229 JUMPI PUSH1 0xE0 DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x119E JUMPI PUSH2 0x1182 DUP6 PUSH2 0x191E 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 0x1229 JUMP JUMPDEST PUSH1 0xF0 DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x11E3 JUMPI PUSH2 0x11B3 DUP6 PUSH2 0x191E JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0x6 PUSH2 0x11C1 DUP8 PUSH2 0x191E 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 0x1229 JUMP JUMPDEST PUSH2 0x11EC DUP6 PUSH2 0x191E JUMP JUMPDEST PUSH1 0x3F AND PUSH1 0x6 PUSH2 0x11FA DUP8 PUSH2 0x191E JUMP JUMPDEST PUSH1 0x3F AND SWAP1 SHL PUSH1 0xC PUSH2 0x120A DUP9 PUSH2 0x191E 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 0x1248 JUMPI PUSH2 0x1248 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH0 BYTE SWAP1 MSTORE8 POP POP PUSH1 0x1 ADD PUSH2 0x113E JUMP JUMPDEST POP SWAP1 DUP2 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x30 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x1289 JUMPI POP PUSH1 0x39 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x1299 JUMPI PUSH2 0xC35 PUSH1 0x30 DUP4 PUSH2 0x239D JUMP JUMPDEST PUSH1 0x41 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x12B1 JUMPI POP PUSH1 0x46 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x12CC JUMPI PUSH2 0x12C1 PUSH1 0x41 DUP4 PUSH2 0x239D JUMP JUMPDEST PUSH2 0xC35 SWAP1 PUSH1 0xA PUSH2 0x2371 JUMP JUMPDEST PUSH1 0x61 DUP3 PUSH1 0xFF AND LT ISZERO DUP1 ISZERO PUSH2 0x12E4 JUMPI POP PUSH1 0x66 DUP3 PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x12F4 JUMPI PUSH2 0x12C1 PUSH1 0x61 DUP4 PUSH2 0x239D 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH2 0xC35 DUP3 PUSH1 0x14 PUSH2 0x1AA5 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH1 0x4 DUP1 PUSH1 0xFF AND DUP3 PUSH1 0x40 ADD MLOAD PUSH1 0xFF AND EQ PUSH2 0x1380 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH2 0x1392 DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 JUMP JUMPDEST SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 AND LT ISZERO PUSH2 0x1456 JUMPI DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x13C6 JUMPI PUSH2 0x13C6 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x13EF JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP4 POP PUSH0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0x1450 JUMPI PUSH0 PUSH2 0x1412 DUP8 PUSH0 ADD MLOAD PUSH2 0x1B1A JUMP JUMPDEST SWAP1 POP PUSH2 0x141D DUP2 PUSH2 0x9CD JUMP JUMPDEST DUP7 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x142F JUMPI PUSH2 0x142F PUSH2 0x2103 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 0x13F4 JUMP JUMPDEST POP PUSH2 0x147A 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 0x3C4 JUMP JUMPDEST POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0xF0 DUP3 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x1497 JUMPI PUSH2 0x1497 PUSH2 0x227C JUMP JUMPDEST EQ DUP1 PUSH2 0xC35 JUMPI POP PUSH1 0xF1 DUP3 PUSH1 0xFF DUP2 GT ISZERO PUSH2 0x14B2 JUMPI PUSH2 0x14B2 PUSH2 0x227C JUMP JUMPDEST EQ SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x14C1 PUSH2 0x1CA2 JUMP JUMPDEST DUP2 MLOAD DUP1 MLOAD MLOAD PUSH1 0x20 SWAP1 SWAP2 ADD MLOAD LT ISZERO PUSH2 0x14DD JUMPI DUP2 MLOAD PUSH2 0xC35 SWAP1 PUSH2 0x1B1A JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0x14E9 PUSH2 0x1CA2 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 PUSH0 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 0x15B8 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 0x3C4 JUMP JUMPDEST PUSH0 PUSH2 0x15CA DUP6 PUSH0 ADD MLOAD DUP7 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 JUMP JUMPDEST PUSH2 0x15D5 SWAP1 PUSH1 0x2 PUSH2 0x23B6 JUMP JUMPDEST SWAP1 POP PUSH2 0x15E2 DUP2 PUSH1 0x1 PUSH2 0x22A4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1602 JUMPI PUSH2 0x1602 PUSH2 0x1E54 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x163B JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1628 PUSH2 0x1CA2 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x1620 JUMPI SWAP1 POP JUMPDEST POP SWAP4 POP PUSH0 JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP2 LT ISZERO PUSH2 0xE89 JUMPI PUSH2 0x165A DUP7 PUSH2 0x14B9 JUMP JUMPDEST SWAP6 POP PUSH2 0x1665 DUP7 PUSH2 0x14E1 JUMP JUMPDEST DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1677 JUMPI PUSH2 0x1677 PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MSTORE PUSH2 0x168D PUSH1 0x2 DUP3 PUSH2 0x23D8 JUMP JUMPDEST ISZERO DUP1 ISZERO PUSH2 0x16A2 JUMPI POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x3 EQ ISZERO JUMPDEST ISZERO PUSH2 0x16D0 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 0x3C4 JUMP JUMPDEST PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x4 EQ DUP1 PUSH2 0x16ED JUMPI POP PUSH1 0x40 DUP7 ADD MLOAD PUSH1 0xFF AND PUSH1 0x5 EQ JUMPDEST ISZERO PUSH2 0x174B JUMPI PUSH1 0x40 DUP7 ADD MLOAD PUSH0 SWAP1 PUSH1 0xFF AND PUSH1 0x4 EQ PUSH2 0x1711 JUMPI PUSH2 0x170C DUP8 PUSH2 0x1578 JUMP JUMPDEST PUSH2 0x171A JUMP JUMPDEST PUSH2 0x171A DUP8 PUSH2 0xD0E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 DUP3 MLOAD PUSH2 0x172B SWAP2 SWAP1 PUSH2 0x238A JUMP JUMPDEST DUP2 MLOAD DUP2 LT PUSH2 0x173B JUMPI PUSH2 0x173B PUSH2 0x2103 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD SWAP7 POP POP PUSH2 0x1756 JUMP JUMPDEST PUSH2 0x1754 DUP7 PUSH2 0x175E JUMP JUMPDEST POP JUMPDEST PUSH1 0x1 ADD PUSH2 0x1640 JUMP JUMPDEST PUSH2 0x1766 PUSH2 0x1CA2 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND ISZERO DUP1 PUSH2 0x1781 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x1 EQ JUMPDEST DUP1 PUSH2 0x17BA JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x7 EQ DUP1 ISZERO PUSH2 0x17A6 JUMPI POP PUSH1 0x19 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO JUMPDEST DUP1 ISZERO PUSH2 0x17BA JUMPI POP PUSH1 0x1B DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND GT ISZERO JUMPDEST ISZERO PUSH2 0x17EC JUMPI PUSH2 0x17C8 DUP3 PUSH2 0x1C37 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP3 PUSH0 ADD MLOAD PUSH1 0x20 ADD DUP2 DUP2 MLOAD PUSH2 0x17E5 SWAP2 SWAP1 PUSH2 0x23EB JUMP JUMPDEST SWAP1 MSTORE POP POP SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x3 EQ DUP1 PUSH2 0x1809 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x2 EQ JUMPDEST ISZERO PUSH2 0x184A JUMPI PUSH0 PUSH2 0x1820 DUP4 PUSH0 ADD MLOAD DUP5 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB AND DUP4 PUSH0 ADD MLOAD PUSH1 0x20 ADD DUP2 DUP2 MLOAD PUSH2 0x1840 SWAP2 SWAP1 PUSH2 0x23EB JUMP JUMPDEST SWAP1 MSTORE POP PUSH2 0x14DD SWAP1 POP JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x4 EQ DUP1 PUSH2 0x1867 JUMPI POP PUSH1 0x40 DUP3 ADD MLOAD PUSH1 0xFF AND PUSH1 0x5 EQ JUMPDEST ISZERO PUSH2 0x188F JUMPI PUSH2 0x187D DUP3 PUSH0 ADD MLOAD DUP4 PUSH1 0x60 ADD MLOAD PUSH2 0xF80 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 0x18C1 JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x14 EQ ISZERO DUP1 ISZERO PUSH2 0x18C1 JUMPI POP DUP2 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND PUSH1 0x15 EQ ISZERO JUMPDEST ISZERO PUSH2 0x14DD 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 0x3C4 JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x20 ADD MLOAD DUP3 PUSH0 ADD MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1954 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 0x3C4 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD DUP1 DUP4 ADD PUSH1 0x1 ADD MLOAD SWAP6 POP SWAP1 DUP2 SWAP1 PUSH2 0x1971 DUP3 PUSH2 0x23FE JUMP JUMPDEST DUP2 MSTORE POP POP POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x2 PUSH2 0x1990 SWAP2 SWAP1 PUSH2 0x23EB JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x19BE 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 0x3C4 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x2 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x19DC DUP3 DUP5 PUSH2 0x23EB JUMP JUMPDEST SWAP1 MSTORE POP SWAP4 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x4 PUSH2 0x19FB SWAP2 SWAP1 PUSH2 0x23EB JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1A29 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 0x3C4 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x4 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x19DC DUP3 DUP5 PUSH2 0x23EB JUMP JUMPDEST PUSH0 DUP2 PUSH1 0x20 ADD MLOAD PUSH1 0x8 PUSH2 0x1A59 SWAP2 SWAP1 PUSH2 0x23EB JUMP JUMPDEST DUP3 MLOAD MLOAD DUP1 DUP3 GT ISZERO PUSH2 0x1A87 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 0x3C4 JUMP JUMPDEST DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP1 MLOAD PUSH1 0x8 DUP2 DUP5 ADD DUP2 ADD MLOAD SWAP7 POP SWAP1 SWAP2 PUSH2 0x19DC DUP3 DUP5 PUSH2 0x23EB JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 PUSH1 0xFF AND GT ISZERO PUSH2 0x1ABA JUMPI PUSH2 0x1ABA PUSH2 0x2416 JUMP JUMPDEST PUSH0 DUP3 PUSH1 0xFF AND DUP5 MLOAD GT PUSH2 0x1ACD JUMPI DUP4 MLOAD PUSH2 0x1AD2 JUMP JUMPDEST DUP3 PUSH1 0xFF AND JUMPDEST SWAP1 POP PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1B12 JUMPI DUP1 PUSH1 0x8 MUL DUP6 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1AF4 JUMPI PUSH2 0x1AF4 PUSH2 0x2103 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 0x1AD6 JUMP JUMPDEST POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1B22 PUSH2 0x1CA2 JUMP JUMPDEST DUP2 MLOAD MLOAD DUP3 SWAP1 PUSH0 SUB PUSH2 0x1B46 JUMPI PUSH1 0x40 MLOAD PUSH4 0x9036D47 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0xFF DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 PUSH1 0x1 JUMPDEST DUP1 ISZERO PUSH2 0x1BC7 JUMPI PUSH2 0x1B65 DUP10 PUSH2 0x191E JUMP JUMPDEST SWAP6 POP DUP2 PUSH2 0x1B71 DUP2 PUSH2 0x23FE 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 0x1BC0 JUMPI PUSH1 0x20 DUP10 ADD MLOAD PUSH2 0x1B9C DUP11 DUP7 PUSH2 0xF80 JUMP JUMPDEST SWAP4 POP DUP1 DUP11 PUSH1 0x20 ADD MLOAD PUSH2 0x1BAE SWAP2 SWAP1 PUSH2 0x238A JUMP JUMPDEST PUSH2 0x1BB8 SWAP1 DUP5 PUSH2 0x23EB JUMP JUMPDEST SWAP3 POP POP PUSH2 0x1B56 JUMP JUMPDEST POP PUSH0 PUSH2 0x1B56 JUMP JUMPDEST PUSH1 0x7 PUSH1 0xFF DUP7 AND GT ISZERO PUSH2 0x1BF1 JUMPI PUSH1 0x40 MLOAD PUSH4 0xBD2AC879 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0xFF DUP7 AND PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x3C4 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 PUSH0 PUSH1 0x18 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO PUSH2 0x1C4F JUMPI POP PUSH0 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1C DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0xFF AND LT ISZERO PUSH2 0x1C7E JUMPI PUSH1 0x18 DUP3 PUSH1 0x60 ADD MLOAD PUSH2 0x1C70 SWAP2 SWAP1 PUSH2 0x239D 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 0x3C4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH2 0x100 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x60 PUSH1 0xC0 DUP3 ADD SWAP1 DUP2 MSTORE PUSH0 PUSH1 0xE0 DUP4 ADD MSTORE DUP2 SWAP1 DUP2 MSTORE PUSH0 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 0x1CFB JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1D10 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x1D1B DUP2 PUSH2 0x1CE7 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x1D2B DUP2 PUSH2 0x1CE7 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x1D4E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP4 CALLDATALOAD SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1D6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP5 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x1D7A JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1D8F JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP7 PUSH1 0x20 DUP3 DUP5 ADD ADD GT ISZERO PUSH2 0x1DA0 JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP7 PUSH1 0x20 SWAP2 SWAP1 SWAP2 ADD SWAP6 POP SWAP3 SWAP4 POP POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1DCB JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x1DB3 JUMP JUMPDEST POP POP PUSH0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x1DEA DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x1DB1 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 PUSH0 PUSH2 0x1E16 PUSH1 0xA0 DUP4 ADD DUP8 PUSH2 0x1DD3 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0x1E28 DUP2 DUP8 PUSH2 0x1DD3 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 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 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 0x1E8A JUMPI PUSH2 0x1E8A PUSH2 0x1E54 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 0x1E8A JUMPI PUSH2 0x1E8A PUSH2 0x1E54 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 0x1E8A JUMPI PUSH2 0x1E8A PUSH2 0x1E54 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 0x1EFC JUMPI PUSH2 0x1EFC PUSH2 0x1E54 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 0xF7B JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0xF7B JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xC0 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1F3A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1F42 PUSH2 0x1E68 JUMP JUMPDEST SWAP1 POP DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1F59 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH1 0x40 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x1F6A JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x1F72 PUSH2 0x1E90 JUMP JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1F87 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP7 SGT PUSH2 0x1F97 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x1FB0 JUMPI PUSH2 0x1FB0 PUSH2 0x1E54 JUMP JUMPDEST PUSH2 0x1FC3 PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD PUSH2 0x1ED4 JUMP JUMPDEST DUP2 DUP2 MSTORE DUP8 PUSH1 0x20 DUP4 DUP6 ADD ADD GT ISZERO PUSH2 0x1FD7 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 PUSH1 0x20 DUP5 ADD PUSH1 0x20 DUP4 ADD CALLDATACOPY PUSH0 PUSH1 0x20 SWAP3 DUP3 ADD DUP4 ADD MSTORE DUP4 MSTORE SWAP3 DUP4 ADD CALLDATALOAD DUP3 DUP5 ADD MSTORE POP DUP3 MSTORE PUSH2 0x2002 SWAP1 DUP4 ADD PUSH2 0x1F1A JUMP JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x2013 PUSH1 0x40 DUP4 ADD PUSH2 0x1F1A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE PUSH2 0x2024 PUSH1 0x60 DUP4 ADD PUSH2 0x1F1A JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH2 0x2035 PUSH1 0x80 DUP4 ADD PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x80 DUP3 ADD MSTORE PUSH2 0x2046 PUSH1 0xA0 DUP4 ADD PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0xA0 DUP3 ADD MSTORE SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2061 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x2076 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP3 ADD PUSH1 0xA0 DUP2 DUP6 SUB SLT ISZERO PUSH2 0x2087 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x208F PUSH2 0x1EB2 JUMP JUMPDEST DUP2 CALLDATALOAD PUSH2 0x100 DUP2 LT PUSH2 0x209E JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP3 ADD CALLDATALOAD PUSH1 0x14 DUP2 LT PUSH2 0x20B1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP3 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x20CC PUSH1 0x60 DUP4 ADD PUSH2 0x1F04 JUMP JUMPDEST PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP3 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x20E9 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x20F5 DUP7 DUP3 DUP6 ADD PUSH2 0x1F2A JUMP JUMPDEST PUSH1 0x80 DUP4 ADD MSTORE POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 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 PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x216E JUMPI PUSH1 0x5F NOT DUP8 DUP7 SUB ADD DUP5 MSTORE PUSH2 0x2159 DUP6 DUP4 MLOAD PUSH2 0x1DD3 JUMP JUMPDEST SWAP5 POP PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP2 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x1 ADD PUSH2 0x213D 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 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x2257 JUMPI DUP6 DUP4 SUB PUSH1 0x1F NOT ADD DUP6 MSTORE DUP2 SLOAD PUSH0 SWAP1 PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x21C1 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x21DF JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST DUP2 DUP8 MSTORE PUSH1 0x20 DUP8 ADD DUP2 DUP1 ISZERO PUSH2 0x21FA JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x2210 JUMPI PUSH2 0x223C JUMP JUMPDEST PUSH1 0xFF NOT DUP6 AND DUP3 MSTORE DUP4 ISZERO ISZERO PUSH1 0x5 SHL DUP3 ADD SWAP6 POP PUSH2 0x223C JUMP JUMPDEST PUSH0 DUP9 DUP2 MSTORE PUSH1 0x20 SWAP1 KECCAK256 PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x2236 JUMPI DUP2 SLOAD DUP5 DUP3 ADD MSTORE PUSH1 0x1 SWAP1 SWAP2 ADD SWAP1 PUSH1 0x20 ADD PUSH2 0x221A 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 0x2198 JUMP JUMPDEST POP SWAP1 SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2275 JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP MLOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 DUP2 AND DUP4 DUP3 AND ADD SWAP1 DUP2 GT ISZERO PUSH2 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x2290 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xFF DUP4 AND DUP1 PUSH2 0x22E9 JUMPI PUSH2 0x22E9 PUSH2 0x22C3 JUMP JUMPDEST DUP1 PUSH1 0xFF DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND PUSH1 0xFF DUP2 SUB PUSH2 0x230D JUMPI PUSH2 0x230D PUSH2 0x2290 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP4 AND DUP1 PUSH2 0x232E JUMPI PUSH2 0x232E PUSH2 0x22C3 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP5 AND DIV SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP4 MLOAD PUSH2 0x2354 DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x1DB1 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0x2368 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x1DB1 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 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x2290 JUMP JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x2290 JUMP JUMPDEST PUSH1 0xFF DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x2290 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 0x8F0 JUMPI PUSH2 0x8F0 PUSH2 0x2290 JUMP JUMPDEST PUSH0 DUP3 PUSH2 0x23E6 JUMPI PUSH2 0x23E6 PUSH2 0x22C3 JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xC35 JUMPI PUSH2 0xC35 PUSH2 0x2290 JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP3 ADD PUSH2 0x240F JUMPI PUSH2 0x240F PUSH2 0x2290 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID PUSH2 0x1647 CALLDATASIZE PC 0xE8 PUSH28 0x23E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58FF611647 CALLDATASIZE PC 0xE8 PUSH28 0x23E7F215D122C0048F3D7A669D8DF94A5565F0C95871C58F9A26469 PUSH17 0x667358221220B43BBDCDF1E6990AF6EF18 PUSH2 0xB380 0xDB REVERT BALANCE COINBASE 0xB2 0xB1 0xFB 0xDF MULMOD PUSH30 0x97179470F57636CD64736F6C634300081C00330000000000000000000000 ","sourceMap":"298:8305:30:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5894:1859;;;;;;;;;;-1:-1:-1;5894:1859:30;;;;;:::i;:::-;;:::i;:::-;;;942:25:51;;;930:2;915:18;5894:1859:30;;;;;;;;2590:3296;;;;;;;;;;-1:-1:-1;2590:3296:30;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;1837:745::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7485:31:51;;;7467:50;;7455:2;7440:18;1837:745:30;7315:208:51;5894:1859:30;6192:19;6243:79;;;-1:-1:-1;;;;;;;;;;;6243:79:30;;;;;;-1:-1:-1;;6351:64:30;;6333:1413;;6472:15;;;6485:1;6472:15;;;;;;;;;6442:27;;6472:15;;;;;;;;;;;;;;;;;;;;6442:45;;6519:82;6568:31;6519:18;:82::i;:::-;6502:11;6514:1;6502:14;;;;;;;;:::i;:::-;;;;;;:99;;;;6616:27;6646:43;-1:-1:-1;;;;;6646:80:30;;6749:11;6783:6;-1:-1:-1;;;;;;;;;;;8116:25:30;8007:152;6783:6;:38;;6646:194;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6616:224;;6889:9;-1:-1:-1;;;;;6869:52:30;;6947:9;6990:10;7019:298;;;;;;;;972:3;7019:298;;;;;;7076:6;-1:-1:-1;;;;;;;;;;;8116:25:30;8007:152;7076:6;:29;;:42;;;7019:298;;;;-1:-1:-1;;;;;;;;;;;7159:29:30;;:51;;;;-1:-1:-1;;;;;7159:51:30;;;7019:298;;;7336:169;;;;;;;;7398:4;7336:169;;780:7;7336:169;;;;;;;6869:651;;;;;;-1:-1:-1;;;;;;6869:651:30;;;7159:51;6869:651;;11037:25:51;;;;11102:13;;11117:6;11098:26;;;11078:18;;;11071:54;11171:15;;;11165:22;11161:35;11141:18;;;11134:63;11243:15;;;;11237:22;11233:47;;;11213:18;;;11206:75;11322:13;-1:-1:-1;;;;;11318:39:51;11297:19;;;11290:68;11399:22;11423:8;11395:37;11374:19;;;11367:66;11009:19;;6869:651:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7535:79;;;;-1:-1:-1;;;;;;;;;;;7535:79:30;;;;;;;;:93;;;7643:57;;;:44;:57;;;;;:91;;;6855:665;-1:-1:-1;;;6333:1413:30;5894:1859;;;;;:::o;2590:3296::-;2777:55;3053:62;;;:44;:62;;;;;;;2847:33;;;;2777:55;3053:62;3221:144;;;;-1:-1:-1;;;3221:144:30;;11835:2:51;3221:144:30;;;11817:21:51;11874:2;11854:18;;;11847:30;-1:-1:-1;;;11893:18:51;;;11886:46;11949:18;;3221:144:30;;;;;;;;;3482:80;;;;-1:-1:-1;;;;;;;;;;;3482:80:30;;;;;;:150;;3460:227;;;;-1:-1:-1;;;3460:227:30;;12180:2:51;3460:227:30;;;12162:21:51;12219:2;12199:18;;;12192:30;12258:28;12238:18;;;12231:56;12304:18;;3460:227:30;11978:350:51;3460:227:30;3749:46;3798:53;;;;3809:20;3798:53;:::i;:::-;3749:102;-1:-1:-1;3984:28:30;3952;;:60;;;;;;;;:::i;:::-;;3930:134;;;;-1:-1:-1;;;3930:134:30;;12667:2:51;3930:134:30;;;12649:21:51;12706:2;12686:18;;;12679:30;12745:26;12725:18;;;12718:54;12789:18;;3930:134:30;12465:348:51;3930:134:30;4223:27;4189:21;:30;;;:61;;;;;;;;:::i;:::-;;4167:132;;;;-1:-1:-1;;;4167:132:30;;13020:2:51;4167:132:30;;;13002:21:51;13059:2;13039:18;;;13032:30;-1:-1:-1;;;13078:18:51;;;13071:50;13138:18;;4167:132:30;12818:344:51;4167:132:30;4433:80;;;;-1:-1:-1;;;;;;;;;;;4433:80:30;;;;;-1:-1:-1;;4433:132:30;;4687:38;:21;:36;:38::i;:::-;4650:75;;5116:23;:9;5126:1;5116:12;;;;;;;;:::i;:::-;;;;;;;:21;:23::i;:::-;-1:-1:-1;;;;;5116:28:30;5143:1;5116:28;5108:65;;;;-1:-1:-1;;;5108:65:30;;13369:2:51;5108:65:30;;;13351:21:51;13408:2;13388:18;;;13381:30;13447:26;13427:18;;;13420:54;13491:18;;5108:65:30;13167:348:51;5108:65:30;5247:25;:9;5257:1;5247:12;;;;;;;;:::i;:::-;;;;;;;:23;:25::i;:::-;5225:47;;5303:25;:9;5313:1;5303:12;;;;;;;;:::i;:25::-;5283:45;;5355:122;5386:80;5426:25;:9;5436:1;5426:12;;;;;;;;:::i;:25::-;5386:21;:80::i;:::-;5355:16;:122::i;:::-;5339:138;;5488:32;5545:23;:9;5555:1;5545:12;;;;;;;;:::i;:23::-;5488:81;;5589:23;:9;5599:1;5589:12;;;;;;;;:::i;:23::-;5580:32;-1:-1:-1;5761:50:30;-1:-1:-1;;;;;;;;;;;5780:30:30;-1:-1:-1;;;;;5761:18:30;;;;-1:-1:-1;;;5780:30:30;;;5761:18;:50::i;:::-;5757:122;;;5861:6;-1:-1:-1;;;;;;;;;;;5828:29:30;;:39;;:29;;:39;;;;-1:-1:-1;;;;;5828:39:30;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;5828:39:30;;;;;-1:-1:-1;;;;;5828:39:30;;;;;;5757:122;3007:2879;;;2590:3296;;;;;;;;;:::o;1837:745::-;1966:6;1990:27;1966:6;2032:30;;:62;;;;;;;;:::i;:::-;;2028:151;;2125:42;:23;:40;:42::i;:::-;2111:56;;2028:151;2245:28;2211:30;;:62;;;;;;;;:::i;:::-;;:151;;;;-1:-1:-1;2294:68:30;-1:-1:-1;;;;;;;;;;;2331:30:30;2294:33;;;;-1:-1:-1;;;;;2294:36:30;;;;-1:-1:-1;;;2331:30:30;;;2294:36;:68::i;:::-;2211:195;;;;;2383:11;:18;2405:1;2383:23;2211:195;2189:259;;;;-1:-1:-1;;;2189:259:30;;14050:2:51;2189:259:30;;;14032:21:51;14089:2;14069:18;;;14062:30;-1:-1:-1;;;14108:18:51;;;14101:44;14162:18;;2189:259:30;13848:338:51;2189:259:30;2549:11;2561:1;2549:14;;;;;;;;:::i;:::-;;;;;;;2515:11;2527:1;2515:14;;;;;;;;:::i;:::-;;;;;;;2481:11;2493:1;2481: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;;14875:2:51;27976:146:48;;;14857:21:51;14914:2;14894:18;;;14887:30;-1:-1:-1;;;14933:18:51;;;14926:53;14996:18;;27976:146:48;14673: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;;15225:4:51;15213:17;;;1813:45:50;;;15195:36:51;15267:17;;;15247:18;;;15240:45;15168:18;;1813:45:50;15025: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;;15225:4:51;15213:17;;;1813:45:50;;;15195:36:51;15267:17;;;15247:18;;;15240:45;15168:18;;1813:45:50;15025: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;;14875:2:51;27976:146:48;;;14857:21:51;14914:2;14894:18;;;14887:30;-1:-1:-1;;;14933:18:51;;;14926:53;14996:18;;27976:146:48;14673: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;;15225:4:51;15213:17;;;1813:45:50;;;15195:36:51;15267:17;;;15247:18;;;15240:45;15168:18;;1813:45:50;15025: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;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;6407:27:50;-1:-1:-1;6446:7:50::1;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;;16454:4:51;16442:17;;9480:44:50;;;16424:36:51;16397:18;;9480:44:50;16280: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;;;15195:36:51;19516:16:50;15267:17:51;;15247:18;;;15240:45;15168:18;;19495:50:50;15025: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;-1:-1:-1;12574:24:49;-1:-1:-1;12629:12:49;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;;17035:2:51;51989:31:48;;;17017:21:51;17074:2;17054:18;;;17047:30;-1:-1:-1;;;17093:18:51;;;17086:51;17154:18;;51989:31:48;16833: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;;15225:4:51;15213:17;;;1813:45:50;;;15195:36:51;15267:17;;;15247:18;;;15240:45;15168:18;;1813:45:50;15025: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;-1:-1:-1::0;18544:29:50;-1:-1:-1;18587:7:50::1;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;;15225:4:51;15213:17;;;1813:45:50;;;15195:36:51;15267:17;;;15247:18;;;15240:45;15168:18;;1813:45:50;15025: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;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;7660:27:50;-1:-1:-1;7699:7:50::1;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;;15225:4:51;15213:17;;;7982:54:50::1;::::0;::::1;15195:36:51::0;1121:1:50::1;15247:18:51::0;;;15240:45;15168:18;;7982:54:50::1;15025: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;;17905:2:51;5669:49:50;;;17887:21:51;17944:2;17924:18;;;17917:30;17983:34;17963:18;;;17956:62;-1:-1:-1;;;18034:18:51;;;18027:37;18081:19;;5669:49:50;17703: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;;;;;18285:25:51;;;18326:18;;;18319:34;;;18258:18;;1036:31:49;18111: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;;;;;18285:25:51;;;18326:18;;;18319:34;;;18258:18;;1036:31:49;18111: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;;;;;18285:25:51;;;18326:18;;;18319:34;;;18258:18;;1036:31:49;18111: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;;;;;18285:25:51;;;18326:18;;;18319:34;;;18258:18;;1036:31:49;18111: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;-1:-1:-1;43873:7:48;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;;16454:4:51;16442:17;;3859:31:50::1;::::0;::::1;16424:36:51::0;16397:18;;3859:31:50::1;16280: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;;16454:4:51;16442:17;;;6041:49:50;;;16424:36:51;16397:18;;6041:49:50;16280: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:2664;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:1427;9020:8;9015:3;9012:17;9004:1427;;;9093:19;;;-1:-1:-1;;9089:33:51;9075:48;;9178:15;;9147:1;;9252;9248:17;;;;9304;;;9334:105;;9420:4;9410:8;9406:19;9394:31;;9334:105;9491:4;9481:8;9478:18;9458;9455:42;9452:185;;9547:10;9542:3;9538:20;9535:1;9528:31;9586:4;9583:1;9576:15;9618:4;9615:1;9608:15;9452:185;1778:19;;;1830:4;1821:14;;9744:18;9775:146;;;;9939:1;9934:382;;;;9737:579;;9775:146;-1:-1:-1;;9814:24:51;;9800:39;;9888:16;;9881:24;9878:1;9874:32;9863:44;;;-1:-1:-1;9775:146:51;;9934:382;7743:1;7736:14;;;7780:4;7767:18;;10051:1;10069:194;10085:8;10080:3;10077:17;10069:194;;;10183:14;;10166:15;;;10159:39;10243:1;10230:15;;;;10113:4;10104:14;10069:194;;;10287:15;;;-1:-1:-1;;9737:579:51;-1:-1:-1;;;10416:4:51;10405:16;;;;;-1:-1:-1;10339:3:51;;-1:-1:-1;;10381:1:51;10367:16;;;;9039:11;9004:1427;;;-1:-1:-1;10448:6:51;;7796:2664;-1:-1:-1;;;;;;;;7796:2664:51:o;10465:215::-;10566:6;10619:2;10607:9;10598:7;10594:23;10590:32;10587:52;;;10635:1;10632;10625:12;10587:52;-1:-1:-1;10658:16:51;;10465:215;-1:-1:-1;10465:215:51:o;12333:127::-;12394:10;12389:3;12385:20;12382:1;12375:31;12425:4;12422:1;12415:15;12449:4;12446:1;12439:15;13520:127;13581:10;13576:3;13572:20;13569:1;13562:31;13612:4;13609:1;13602:15;13636:4;13633:1;13626:15;13652:191;-1:-1:-1;;;;;13720:26:51;;;13748;;;13716:59;;13787:27;;13784:53;;;13817:18;;:::i;14191:127::-;14252:10;14247:3;14243:20;14240:1;14233:31;14283:4;14280:1;14273:15;14307:4;14304:1;14297:15;14323:165;14361:1;14395:4;14392:1;14388:12;14419:3;14409:37;;14426:18;;:::i;:::-;14478:3;14471:4;14468:1;14464:12;14460:22;14455:27;;;14323:165;;;;:::o;14493:175::-;14530:3;14574:4;14567:5;14563:16;14603:4;14594:7;14591:17;14588:43;;14611:18;;:::i;:::-;14660:1;14647:15;;14493:175;-1:-1:-1;;14493:175:51:o;15296:194::-;15335:1;-1:-1:-1;;;;;15366:1:51;15362:26;15407:3;15397:37;;15414:18;;:::i;:::-;15480:3;-1:-1:-1;;;;;15456:1:51;15452:26;15448:36;15443:41;;;15296:194;;;;:::o;15495:494::-;15672:3;15710:6;15704:13;15726:66;15785:6;15780:3;15773:4;15765:6;15761:17;15726:66;:::i;:::-;15855:13;;15814:16;;;;15877:70;15855:13;15814:16;15924:4;15912:17;;15877:70;:::i;:::-;15963:20;;15495:494;-1:-1:-1;;;;15495:494:51:o;15994:148::-;16082:4;16061:12;;;16075;;;16057:31;;16100:13;;16097:39;;;16116:18;;:::i;16147:128::-;16214:9;;;16235:11;;;16232:37;;;16249:18;;:::i;16677:151::-;16767:4;16760:12;;;16746;;;16742:31;;16785:14;;16782:40;;;16802:18;;:::i;17183:268::-;-1:-1:-1;;;;;17267:26:51;;;17295;;;17263:59;17342:36;;;;17397:24;;;17387:58;;17425:18;;:::i;17456:112::-;17488:1;17514;17504:35;;17519:18;;:::i;:::-;-1:-1:-1;17553:9:51;;17456:112::o;17573:125::-;17638:9;;;17659:10;;;17656:36;;;17672:18;;:::i;18364:135::-;18403:3;18424:17;;;18421:43;;18444:18;;:::i;:::-;-1:-1:-1;18491:1:51;18480:13;;18364:135::o;18504:127::-;18565:10;18560:3;18556:20;18553:1;18546:31;18596:4;18593:1;18586:15;18620:4;18617:1;18610: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\":\"shanghai\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/IWrappedWIT.sol\":{\"keccak256\":\"0x9b1118896b06db88c42326400552acb7a8d104c1cc0ad164ed45bfa28c10f323\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5093d5fd8dfb80093f52a0ca106657f29ccdaf9fe701b644f0e4513abc73a480\",\"dweb:/ipfs/QmSXubKdqqtcLPQ1geFgXtifxrwkAseMQTiULF4BBeadGH\"]},\"contracts/WrappedWITLib.sol\":{\"keccak256\":\"0xb6993eb216c5eb94ea444efd3fcd39964edf039c6c5e2a31facd526ffbb3b992\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a13666f4e1e0b6d4d6c1c473313c26096c592e8eda0c32119d8b8bcd07691d81\",\"dweb:/ipfs/QmYRXmNSA6nukNAWyXyxbJk58VJfVPwcCtyvuaLk2d692e\"]},\"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},"@_9707":{"entryPoint":null,"id":9707,"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":358,"id":1927,"parameterSlots":2,"returnSlots":1},"@toShortString_1829":{"entryPoint":408,"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":816,"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":554,"id":null,"parameterSlots":3,"returnSlots":0},"convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32":{"entryPoint":891,"id":null,"parameterSlots":1,"returnSlots":1},"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage":{"entryPoint":630,"id":null,"parameterSlots":2,"returnSlots":0},"extract_byte_array_length":{"entryPoint":498,"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":478,"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":"610160604052348015610010575f5ffd5b506040518060400160405280600b81526020016a15dc985c1c19590bd5d25560aa1b81525080604051806040016040528060018152602001603160f81b8152506040518060400160405280600b81526020016a15dc985c1c19590815d25560aa1b8152506040518060400160405280600381526020016215d25560ea1b815250816003908161009f9190610276565b5060046100ac8282610276565b506100bc91508390506005610166565b610120526100cb816006610166565b61014052815160208084019190912060e052815190820120610100524660a05261015760e05161010051604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201529081019290925260608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b60805250503060c0525061039e565b5f6020835110156101815761017a83610198565b9050610192565b8161018c8482610276565b5060ff90505b92915050565b5f5f829050601f815111156101cb578260405163305a27a960e01b81526004016101c29190610330565b60405180910390fd5b80516101d68261037b565b179392505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061020657607f821691505b60208210810361022457634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561027157805f5260205f20601f840160051c8101602085101561024f5750805b601f840160051c820191505b8181101561026e575f815560010161025b565b50505b505050565b81516001600160401b0381111561028f5761028f6101de565b6102a38161029d84546101f2565b8461022a565b6020601f8211600181146102d5575f83156102be5750848201515b5f19600385901b1c1916600184901b17845561026e565b5f84815260208120601f198516915b8281101561030457878501518255602094850194600190920191016102e4565b508482101561032157868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b602081525f82518060208401525f5b8181101561035c576020818601810151604086840101520161033f565b505f604082850101526040601f19601f83011684010191505092915050565b80516020808301519190811015610224575f1960209190910360031b1b16919050565b60805160a05160c05160e0516101005161012051610140516110b26103ef5f395f6108c101525f61089401525f61083d01525f61081501525f61077001525f61079a01525f6107c401526110b25ff3fe608060405234801561000f575f5ffd5b50600436106100fb575f3560e01c80633644e5151161009357806395d89b411161006357806395d89b4114610209578063a9059cbb14610211578063d505accf14610224578063dd62ed3e14610237575f5ffd5b80633644e515146101ab57806370a08231146101b35780637ecebe00146101db57806384b0196e146101ee575f5ffd5b806318bf5077116100ce57806318bf50771461016157806323b872dd146101765780632b8c49e314610189578063313ce5671461019c575f5ffd5b806301ffc9a7146100ff57806306fdde0314610127578063095ea7b31461013c57806318160ddd1461014f575b5f5ffd5b61011261010d366004610dc4565b61026f565b60405190151581526020015b60405180910390f35b61012f6102a5565b60405161011e9190610e35565b61011261014a366004610e62565b610335565b6002545b60405190815260200161011e565b61017461016f366004610e62565b61034c565b005b610112610184366004610e8a565b6103a4565b610174610197366004610e62565b6103c7565b6040516009815260200161011e565b610153610417565b6101536101c1366004610ec4565b6001600160a01b03165f9081526020819052604090205490565b6101536101e9366004610ec4565b610425565b6101f6610442565b60405161011e9796959493929190610edd565b61012f610484565b61011261021f366004610e62565b610493565b610174610232366004610f73565b6104a0565b610153610245366004610fe0565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f6001600160e01b03198216630cccc66560e21b148061029f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546102b490611011565b80601f01602080910402602001604051908101604052809291908181526020018280546102e090611011565b801561032b5780601f106103025761010080835404028352916020019161032b565b820191905f5260205f20905b81548152906001019060200180831161030e57829003601f168201915b5050505050905090565b5f336103428185856105db565b5060019392505050565b610355336105ed565b61035f828261061f565b60405181815233906001600160a01b038416907fde22baff038e3a3e08407cbdf617deed74e869a7ba517df611e33131c6e6ea04906020015b60405180910390a35050565b5f336103b1858285610657565b6103bc8585856106d3565b506001949350505050565b6103d0336105ed565b6103da8282610730565b60405181815233906001600160a01b038416907fb90795a66650155983e242cac3e1ac1a4dc26f8ed2987f3ce416a34e00111fd490602001610398565b5f610420610764565b905090565b6001600160a01b0381165f9081526007602052604081205461029f565b5f6060805f5f5f606061045361088d565b61045b6108ba565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546102b490611011565b5f336103428185856106d3565b834211156104c95760405163313c898160e11b8152600481018590526024015b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105148c6001600160a01b03165f90815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f61056e826108e7565b90505f61057d82878787610913565b9050896001600160a01b0316816001600160a01b0316146105c4576040516325c0072360e11b81526001600160a01b0380831660048301528b1660248201526044016104c0565b6105cf8a8a8a6105db565b50505050505050505050565b6105e8838383600161093f565b505050565b6001600160a01b0381166028602160991b011461061c576040516282b42960e81b815260040160405180910390fd5b50565b6001600160a01b0382166106485760405163ec442f0560e01b81525f60048201526024016104c0565b6106535f8383610a11565b5050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156106cd57818110156106bf57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104c0565b6106cd84848484035f61093f565b50505050565b6001600160a01b0383166106fc57604051634b637e8f60e11b81525f60048201526024016104c0565b6001600160a01b0382166107255760405163ec442f0560e01b81525f60048201526024016104c0565b6105e8838383610a11565b6001600160a01b03821661075957604051634b637e8f60e11b81525f60048201526024016104c0565b610653825f83610a11565b5f306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156107bc57507f000000000000000000000000000000000000000000000000000000000000000046145b156107e657507f000000000000000000000000000000000000000000000000000000000000000090565b610420604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b60606104207f00000000000000000000000000000000000000000000000000000000000000006005610b37565b60606104207f00000000000000000000000000000000000000000000000000000000000000006006610b37565b5f61029f6108f3610764565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f61092388888888610be0565b9250925092506109338282610ca8565b50909695505050505050565b6001600160a01b0384166109685760405163e602df0560e01b81525f60048201526024016104c0565b6001600160a01b03831661099157604051634a1406b160e11b81525f60048201526024016104c0565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106cd57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a0391815260200190565b60405180910390a350505050565b6001600160a01b038316610a3b578060025f828254610a309190611049565b90915550610aab9050565b6001600160a01b0383165f9081526020819052604090205481811015610a8d5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104c0565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610ac757600280548290039055610ae5565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b2a91815260200190565b60405180910390a3505050565b606060ff8314610b5157610b4a83610d60565b905061029f565b818054610b5d90611011565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8990611011565b8015610bd45780601f10610bab57610100808354040283529160200191610bd4565b820191905f5260205f20905b815481529060010190602001808311610bb757829003601f168201915b5050505050905061029f565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610c1957505f91506003905082610c9e565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610c6a573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b038116610c9557505f925060019150829050610c9e565b92505f91508190505b9450945094915050565b5f826003811115610cbb57610cbb611068565b03610cc4575050565b6001826003811115610cd857610cd8611068565b03610cf65760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610d0a57610d0a611068565b03610d2b5760405163fce698f760e01b8152600481018290526024016104c0565b6003826003811115610d3f57610d3f611068565b03610653576040516335e2f38360e21b8152600481018290526024016104c0565b60605f610d6c83610d9d565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f60ff8216601f81111561029f57604051632cd44ac360e21b815260040160405180910390fd5b5f60208284031215610dd4575f5ffd5b81356001600160e01b031981168114610deb575f5ffd5b9392505050565b5f81518084525f5b81811015610e1657602081850181015186830182015201610dfa565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f610deb6020830184610df2565b80356001600160a01b0381168114610e5d575f5ffd5b919050565b5f5f60408385031215610e73575f5ffd5b610e7c83610e47565b946020939093013593505050565b5f5f5f60608486031215610e9c575f5ffd5b610ea584610e47565b9250610eb360208501610e47565b929592945050506040919091013590565b5f60208284031215610ed4575f5ffd5b610deb82610e47565b60ff60f81b8816815260e060208201525f610efb60e0830189610df2565b8281036040840152610f0d8189610df2565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015610f62578351835260209384019390920191600101610f44565b50909b9a5050505050505050505050565b5f5f5f5f5f5f5f60e0888a031215610f89575f5ffd5b610f9288610e47565b9650610fa060208901610e47565b95506040880135945060608801359350608088013560ff81168114610fc3575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215610ff1575f5ffd5b610ffa83610e47565b915061100860208401610e47565b90509250929050565b600181811c9082168061102557607f821691505b60208210810361104357634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561029f57634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220d895cb27ca655fc0bca22d46d748b4ccfebedc1b70f152cde9fb70fc27d60b6164736f6c634300081c0033","opcodes":"PUSH2 0x160 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH0 PUSH0 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 0x9F SWAP2 SWAP1 PUSH2 0x276 JUMP JUMPDEST POP PUSH1 0x4 PUSH2 0xAC DUP3 DUP3 PUSH2 0x276 JUMP JUMPDEST POP PUSH2 0xBC SWAP2 POP DUP4 SWAP1 POP PUSH1 0x5 PUSH2 0x166 JUMP JUMPDEST PUSH2 0x120 MSTORE PUSH2 0xCB DUP2 PUSH1 0x6 PUSH2 0x166 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 0x157 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 PUSH0 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 0x39E JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP4 MLOAD LT ISZERO PUSH2 0x181 JUMPI PUSH2 0x17A DUP4 PUSH2 0x198 JUMP JUMPDEST SWAP1 POP PUSH2 0x192 JUMP JUMPDEST DUP2 PUSH2 0x18C DUP5 DUP3 PUSH2 0x276 JUMP JUMPDEST POP PUSH1 0xFF SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH0 DUP3 SWAP1 POP PUSH1 0x1F DUP2 MLOAD GT ISZERO PUSH2 0x1CB JUMPI DUP3 PUSH1 0x40 MLOAD PUSH4 0x305A27A9 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C2 SWAP2 SWAP1 PUSH2 0x330 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD PUSH2 0x1D6 DUP3 PUSH2 0x37B JUMP JUMPDEST OR SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x206 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x224 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x271 JUMPI DUP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x24F JUMPI POP DUP1 JUMPDEST PUSH1 0x1F DUP5 ADD PUSH1 0x5 SHR DUP3 ADD SWAP2 POP JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x26E JUMPI PUSH0 DUP2 SSTORE PUSH1 0x1 ADD PUSH2 0x25B JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP2 GT ISZERO PUSH2 0x28F JUMPI PUSH2 0x28F PUSH2 0x1DE JUMP JUMPDEST PUSH2 0x2A3 DUP2 PUSH2 0x29D DUP5 SLOAD PUSH2 0x1F2 JUMP JUMPDEST DUP5 PUSH2 0x22A JUMP JUMPDEST PUSH1 0x20 PUSH1 0x1F DUP3 GT PUSH1 0x1 DUP2 EQ PUSH2 0x2D5 JUMPI PUSH0 DUP4 ISZERO PUSH2 0x2BE JUMPI POP DUP5 DUP3 ADD MLOAD JUMPDEST PUSH0 NOT PUSH1 0x3 DUP6 SWAP1 SHL SHR NOT AND PUSH1 0x1 DUP5 SWAP1 SHL OR DUP5 SSTORE PUSH2 0x26E JUMP JUMPDEST PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 DUP2 KECCAK256 PUSH1 0x1F NOT DUP6 AND SWAP2 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x304 JUMPI DUP8 DUP6 ADD MLOAD DUP3 SSTORE PUSH1 0x20 SWAP5 DUP6 ADD SWAP5 PUSH1 0x1 SWAP1 SWAP3 ADD SWAP2 ADD PUSH2 0x2E4 JUMP JUMPDEST POP DUP5 DUP3 LT ISZERO PUSH2 0x321 JUMPI DUP7 DUP5 ADD MLOAD PUSH0 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 PUSH0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x35C JUMPI PUSH1 0x20 DUP2 DUP7 ADD DUP2 ADD MLOAD PUSH1 0x40 DUP7 DUP5 ADD ADD MSTORE ADD PUSH2 0x33F JUMP JUMPDEST POP PUSH0 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 0x224 JUMPI PUSH0 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 0x10B2 PUSH2 0x3EF PUSH0 CODECOPY PUSH0 PUSH2 0x8C1 ADD MSTORE PUSH0 PUSH2 0x894 ADD MSTORE PUSH0 PUSH2 0x83D ADD MSTORE PUSH0 PUSH2 0x815 ADD MSTORE PUSH0 PUSH2 0x770 ADD MSTORE PUSH0 PUSH2 0x79A ADD MSTORE PUSH0 PUSH2 0x7C4 ADD MSTORE PUSH2 0x10B2 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xFB JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3644E515 GT PUSH2 0x93 JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x63 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x211 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x237 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1AB JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x1DB JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x1EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18BF5077 GT PUSH2 0xCE JUMPI DUP1 PUSH4 0x18BF5077 EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x176 JUMPI DUP1 PUSH4 0x2B8C49E3 EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x19C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xFF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x127 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x14F JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x112 PUSH2 0x10D CALLDATASIZE PUSH1 0x4 PUSH2 0xDC4 JUMP JUMPDEST PUSH2 0x26F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x12F PUSH2 0x2A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11E SWAP2 SWAP1 PUSH2 0xE35 JUMP JUMPDEST PUSH2 0x112 PUSH2 0x14A CALLDATASIZE PUSH1 0x4 PUSH2 0xE62 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x11E JUMP JUMPDEST PUSH2 0x174 PUSH2 0x16F CALLDATASIZE PUSH1 0x4 PUSH2 0xE62 JUMP JUMPDEST PUSH2 0x34C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x112 PUSH2 0x184 CALLDATASIZE PUSH1 0x4 PUSH2 0xE8A JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0xE62 JUMP JUMPDEST PUSH2 0x3C7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x11E JUMP JUMPDEST PUSH2 0x153 PUSH2 0x417 JUMP JUMPDEST PUSH2 0x153 PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0xEC4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x153 PUSH2 0x1E9 CALLDATASIZE PUSH1 0x4 PUSH2 0xEC4 JUMP JUMPDEST PUSH2 0x425 JUMP JUMPDEST PUSH2 0x1F6 PUSH2 0x442 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11E SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xEDD JUMP JUMPDEST PUSH2 0x12F PUSH2 0x484 JUMP JUMPDEST PUSH2 0x112 PUSH2 0x21F CALLDATASIZE PUSH1 0x4 PUSH2 0xE62 JUMP JUMPDEST PUSH2 0x493 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x232 CALLDATASIZE PUSH1 0x4 PUSH2 0xF73 JUMP JUMPDEST PUSH2 0x4A0 JUMP JUMPDEST PUSH2 0x153 PUSH2 0x245 CALLDATASIZE PUSH1 0x4 PUSH2 0xFE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 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 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCCCC665 PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x29F 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 0x2B4 SWAP1 PUSH2 0x1011 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 0x2E0 SWAP1 PUSH2 0x1011 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x32B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x302 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x32B JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x30E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x342 DUP2 DUP6 DUP6 PUSH2 0x5DB JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x355 CALLER PUSH2 0x5ED JUMP JUMPDEST PUSH2 0x35F DUP3 DUP3 PUSH2 0x61F 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 PUSH0 CALLER PUSH2 0x3B1 DUP6 DUP3 DUP6 PUSH2 0x657 JUMP JUMPDEST PUSH2 0x3BC DUP6 DUP6 DUP6 PUSH2 0x6D3 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x3D0 CALLER PUSH2 0x5ED JUMP JUMPDEST PUSH2 0x3DA DUP3 DUP3 PUSH2 0x730 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 0x398 JUMP JUMPDEST PUSH0 PUSH2 0x420 PUSH2 0x764 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x29F JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 PUSH0 PUSH0 PUSH0 PUSH1 0x60 PUSH2 0x453 PUSH2 0x88D JUMP JUMPDEST PUSH2 0x45B PUSH2 0x8BA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 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 0x2B4 SWAP1 PUSH2 0x1011 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x342 DUP2 DUP6 DUP6 PUSH2 0x6D3 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x4C9 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 PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x514 DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 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 PUSH0 PUSH2 0x56E DUP3 PUSH2 0x8E7 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x57D DUP3 DUP8 DUP8 DUP8 PUSH2 0x913 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 0x5C4 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 0x4C0 JUMP JUMPDEST PUSH2 0x5CF DUP11 DUP11 DUP11 PUSH2 0x5DB JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x5E8 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x93F 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 0x61C 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 0x648 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH2 0x653 PUSH0 DUP4 DUP4 PUSH2 0xA11 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 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 PUSH0 NOT DUP2 LT ISZERO PUSH2 0x6CD JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x6BF 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 0x4C0 JUMP JUMPDEST PUSH2 0x6CD DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x93F JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6FC JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x725 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH2 0x5E8 DUP4 DUP4 DUP4 PUSH2 0xA11 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x759 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH2 0x653 DUP3 PUSH0 DUP4 PUSH2 0xA11 JUMP JUMPDEST PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x7BC JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x7E6 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x420 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 PUSH0 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 0x420 PUSH32 0x0 PUSH1 0x5 PUSH2 0xB37 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x420 PUSH32 0x0 PUSH1 0x6 PUSH2 0xB37 JUMP JUMPDEST PUSH0 PUSH2 0x29F PUSH2 0x8F3 PUSH2 0x764 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 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x923 DUP9 DUP9 DUP9 DUP9 PUSH2 0xBE0 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x933 DUP3 DUP3 PUSH2 0xCA8 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 0x968 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x991 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 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 0x6CD 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 0xA03 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 0xA3B JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xA30 SWAP2 SWAP1 PUSH2 0x1049 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xAAB SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA8D 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 0x4C0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 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 0xAC7 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0xAE5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 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 0xB2A 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 0xB51 JUMPI PUSH2 0xB4A DUP4 PUSH2 0xD60 JUMP JUMPDEST SWAP1 POP PUSH2 0x29F JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0xB5D SWAP1 PUSH2 0x1011 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 0xB89 SWAP1 PUSH2 0x1011 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xBD4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBAB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xBD4 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xBB7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x29F JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xC19 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0xC9E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 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 0xC6A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xC95 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0xC9E JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xCBB JUMPI PUSH2 0xCBB PUSH2 0x1068 JUMP JUMPDEST SUB PUSH2 0xCC4 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xCD8 JUMPI PUSH2 0xCD8 PUSH2 0x1068 JUMP JUMPDEST SUB PUSH2 0xCF6 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 0xD0A JUMPI PUSH2 0xD0A PUSH2 0x1068 JUMP JUMPDEST SUB PUSH2 0xD2B JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD3F JUMPI PUSH2 0xD3F PUSH2 0x1068 JUMP JUMPDEST SUB PUSH2 0x653 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0xD6C DUP4 PUSH2 0xD9D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH0 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 PUSH0 PUSH1 0xFF DUP3 AND PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x29F JUMPI PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDD4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xDEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE16 JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0xDFA JUMP JUMPDEST POP PUSH0 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 PUSH0 PUSH2 0xDEB PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xDF2 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE73 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xE7C DUP4 PUSH2 0xE47 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xE9C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xEA5 DUP5 PUSH2 0xE47 JUMP JUMPDEST SWAP3 POP PUSH2 0xEB3 PUSH1 0x20 DUP6 ADD PUSH2 0xE47 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xED4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xDEB DUP3 PUSH2 0xE47 JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0xEFB PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0xDF2 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0xF0D DUP2 DUP10 PUSH2 0xDF2 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 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xF62 JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0xF44 JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xF89 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xF92 DUP9 PUSH2 0xE47 JUMP JUMPDEST SWAP7 POP PUSH2 0xFA0 PUSH1 0x20 DUP10 ADD PUSH2 0xE47 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 0xFC3 JUMPI PUSH0 PUSH0 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 PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFF1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xFFA DUP4 PUSH2 0xE47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1008 PUSH1 0x20 DUP5 ADD PUSH2 0xE47 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1025 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1043 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x29F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD8 SWAP6 0xCB 0x27 0xCA PUSH6 0x5FC0BCA22D46 0xD7 BASEFEE 0xB4 0xCC INVALID 0xBE 0xDC SHL PUSH17 0xF152CDE9FB70FC27D60B6164736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"396:1006:31:-:0;;;608: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;396: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;:::-;396:1006:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DOMAIN_SEPARATOR_1556":{"entryPoint":1047,"id":1556,"parameterSlots":0,"returnSlots":1},"@_EIP712Name_4074":{"entryPoint":2189,"id":4074,"parameterSlots":0,"returnSlots":1},"@_EIP712Version_4086":{"entryPoint":2234,"id":4086,"parameterSlots":0,"returnSlots":1},"@_approve_1216":{"entryPoint":1499,"id":1216,"parameterSlots":3,"returnSlots":0},"@_approve_1276":{"entryPoint":2367,"id":1276,"parameterSlots":4,"returnSlots":0},"@_buildDomainSeparator_4004":{"entryPoint":null,"id":4004,"parameterSlots":0,"returnSlots":1},"@_burn_1198":{"entryPoint":1840,"id":1198,"parameterSlots":2,"returnSlots":0},"@_checkTokenBridge_9722":{"entryPoint":1517,"id":9722,"parameterSlots":1,"returnSlots":0},"@_domainSeparatorV4_3983":{"entryPoint":1892,"id":3983,"parameterSlots":0,"returnSlots":1},"@_hashTypedDataV4_4020":{"entryPoint":2279,"id":4020,"parameterSlots":1,"returnSlots":1},"@_mint_1165":{"entryPoint":1567,"id":1165,"parameterSlots":2,"returnSlots":0},"@_msgSender_1631":{"entryPoint":null,"id":1631,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_1324":{"entryPoint":1623,"id":1324,"parameterSlots":3,"returnSlots":0},"@_throwError_3859":{"entryPoint":3240,"id":3859,"parameterSlots":2,"returnSlots":0},"@_transfer_1055":{"entryPoint":1747,"id":1055,"parameterSlots":3,"returnSlots":0},"@_update_1132":{"entryPoint":2577,"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":821,"id":976,"parameterSlots":2,"returnSlots":1},"@balanceOf_911":{"entryPoint":null,"id":911,"parameterSlots":1,"returnSlots":1},"@byteLength_1887":{"entryPoint":3485,"id":1887,"parameterSlots":1,"returnSlots":1},"@crosschainBurn_139":{"entryPoint":967,"id":139,"parameterSlots":2,"returnSlots":0},"@crosschainMint_115":{"entryPoint":844,"id":115,"parameterSlots":2,"returnSlots":0},"@decimals_9732":{"entryPoint":null,"id":9732,"parameterSlots":0,"returnSlots":1},"@eip712Domain_4062":{"entryPoint":1090,"id":4062,"parameterSlots":0,"returnSlots":7},"@name_871":{"entryPoint":677,"id":871,"parameterSlots":0,"returnSlots":1},"@nonces_1546":{"entryPoint":1061,"id":1546,"parameterSlots":1,"returnSlots":1},"@nonces_1676":{"entryPoint":null,"id":1676,"parameterSlots":1,"returnSlots":1},"@permit_1529":{"entryPoint":1184,"id":1529,"parameterSlots":7,"returnSlots":0},"@recover_3810":{"entryPoint":2323,"id":3810,"parameterSlots":4,"returnSlots":1},"@supportsInterface_4196":{"entryPoint":null,"id":4196,"parameterSlots":1,"returnSlots":1},"@supportsInterface_91":{"entryPoint":623,"id":91,"parameterSlots":1,"returnSlots":1},"@symbol_880":{"entryPoint":1156,"id":880,"parameterSlots":0,"returnSlots":1},"@toStringWithFallback_1954":{"entryPoint":2871,"id":1954,"parameterSlots":2,"returnSlots":1},"@toString_1855":{"entryPoint":3424,"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":932,"id":1008,"parameterSlots":3,"returnSlots":1},"@transfer_935":{"entryPoint":1171,"id":935,"parameterSlots":2,"returnSlots":1},"@tryRecover_3774":{"entryPoint":3040,"id":3774,"parameterSlots":4,"returnSlots":3},"abi_decode_address":{"entryPoint":3655,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":3780,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":4064,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":3722,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":3955,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":3682,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_bytes4":{"entryPoint":3524,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_string":{"entryPoint":3570,"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":3805,"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":3637,"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":4169,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":4113,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x21":{"entryPoint":4200,"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":1988}],"3883":[{"length":32,"start":1946}],"3885":[{"length":32,"start":1904}],"3887":[{"length":32,"start":2069}],"3889":[{"length":32,"start":2109}],"3892":[{"length":32,"start":2196}],"3895":[{"length":32,"start":2241}]},"linkReferences":{},"object":"608060405234801561000f575f5ffd5b50600436106100fb575f3560e01c80633644e5151161009357806395d89b411161006357806395d89b4114610209578063a9059cbb14610211578063d505accf14610224578063dd62ed3e14610237575f5ffd5b80633644e515146101ab57806370a08231146101b35780637ecebe00146101db57806384b0196e146101ee575f5ffd5b806318bf5077116100ce57806318bf50771461016157806323b872dd146101765780632b8c49e314610189578063313ce5671461019c575f5ffd5b806301ffc9a7146100ff57806306fdde0314610127578063095ea7b31461013c57806318160ddd1461014f575b5f5ffd5b61011261010d366004610dc4565b61026f565b60405190151581526020015b60405180910390f35b61012f6102a5565b60405161011e9190610e35565b61011261014a366004610e62565b610335565b6002545b60405190815260200161011e565b61017461016f366004610e62565b61034c565b005b610112610184366004610e8a565b6103a4565b610174610197366004610e62565b6103c7565b6040516009815260200161011e565b610153610417565b6101536101c1366004610ec4565b6001600160a01b03165f9081526020819052604090205490565b6101536101e9366004610ec4565b610425565b6101f6610442565b60405161011e9796959493929190610edd565b61012f610484565b61011261021f366004610e62565b610493565b610174610232366004610f73565b6104a0565b610153610245366004610fe0565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b5f6001600160e01b03198216630cccc66560e21b148061029f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546102b490611011565b80601f01602080910402602001604051908101604052809291908181526020018280546102e090611011565b801561032b5780601f106103025761010080835404028352916020019161032b565b820191905f5260205f20905b81548152906001019060200180831161030e57829003601f168201915b5050505050905090565b5f336103428185856105db565b5060019392505050565b610355336105ed565b61035f828261061f565b60405181815233906001600160a01b038416907fde22baff038e3a3e08407cbdf617deed74e869a7ba517df611e33131c6e6ea04906020015b60405180910390a35050565b5f336103b1858285610657565b6103bc8585856106d3565b506001949350505050565b6103d0336105ed565b6103da8282610730565b60405181815233906001600160a01b038416907fb90795a66650155983e242cac3e1ac1a4dc26f8ed2987f3ce416a34e00111fd490602001610398565b5f610420610764565b905090565b6001600160a01b0381165f9081526007602052604081205461029f565b5f6060805f5f5f606061045361088d565b61045b6108ba565b604080515f80825260208201909252600f60f81b9b939a50919850469750309650945092509050565b6060600480546102b490611011565b5f336103428185856106d3565b834211156104c95760405163313c898160e11b8152600481018590526024015b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105148c6001600160a01b03165f90815260076020526040902080546001810190915590565b6040805160208101969096526001600160a01b0394851690860152929091166060840152608083015260a082015260c0810186905260e0016040516020818303038152906040528051906020012090505f61056e826108e7565b90505f61057d82878787610913565b9050896001600160a01b0316816001600160a01b0316146105c4576040516325c0072360e11b81526001600160a01b0380831660048301528b1660248201526044016104c0565b6105cf8a8a8a6105db565b50505050505050505050565b6105e8838383600161093f565b505050565b6001600160a01b0381166028602160991b011461061c576040516282b42960e81b815260040160405180910390fd5b50565b6001600160a01b0382166106485760405163ec442f0560e01b81525f60048201526024016104c0565b6106535f8383610a11565b5050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198110156106cd57818110156106bf57604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016104c0565b6106cd84848484035f61093f565b50505050565b6001600160a01b0383166106fc57604051634b637e8f60e11b81525f60048201526024016104c0565b6001600160a01b0382166107255760405163ec442f0560e01b81525f60048201526024016104c0565b6105e8838383610a11565b6001600160a01b03821661075957604051634b637e8f60e11b81525f60048201526024016104c0565b610653825f83610a11565b5f306001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156107bc57507f000000000000000000000000000000000000000000000000000000000000000046145b156107e657507f000000000000000000000000000000000000000000000000000000000000000090565b610420604080517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60208201527f0000000000000000000000000000000000000000000000000000000000000000918101919091527f000000000000000000000000000000000000000000000000000000000000000060608201524660808201523060a08201525f9060c00160405160208183030381529060405280519060200120905090565b60606104207f00000000000000000000000000000000000000000000000000000000000000006005610b37565b60606104207f00000000000000000000000000000000000000000000000000000000000000006006610b37565b5f61029f6108f3610764565b8360405161190160f01b8152600281019290925260228201526042902090565b5f5f5f5f61092388888888610be0565b9250925092506109338282610ca8565b50909695505050505050565b6001600160a01b0384166109685760405163e602df0560e01b81525f60048201526024016104c0565b6001600160a01b03831661099157604051634a1406b160e11b81525f60048201526024016104c0565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156106cd57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610a0391815260200190565b60405180910390a350505050565b6001600160a01b038316610a3b578060025f828254610a309190611049565b90915550610aab9050565b6001600160a01b0383165f9081526020819052604090205481811015610a8d5760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016104c0565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216610ac757600280548290039055610ae5565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b2a91815260200190565b60405180910390a3505050565b606060ff8314610b5157610b4a83610d60565b905061029f565b818054610b5d90611011565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8990611011565b8015610bd45780601f10610bab57610100808354040283529160200191610bd4565b820191905f5260205f20905b815481529060010190602001808311610bb757829003601f168201915b5050505050905061029f565b5f80807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0841115610c1957505f91506003905082610c9e565b604080515f808252602082018084528a905260ff891692820192909252606081018790526080810186905260019060a0016020604051602081039080840390855afa158015610c6a573d5f5f3e3d5ffd5b5050604051601f1901519150506001600160a01b038116610c9557505f925060019150829050610c9e565b92505f91508190505b9450945094915050565b5f826003811115610cbb57610cbb611068565b03610cc4575050565b6001826003811115610cd857610cd8611068565b03610cf65760405163f645eedf60e01b815260040160405180910390fd5b6002826003811115610d0a57610d0a611068565b03610d2b5760405163fce698f760e01b8152600481018290526024016104c0565b6003826003811115610d3f57610d3f611068565b03610653576040516335e2f38360e21b8152600481018290526024016104c0565b60605f610d6c83610d9d565b6040805160208082528183019092529192505f91906020820181803683375050509182525060208101929092525090565b5f60ff8216601f81111561029f57604051632cd44ac360e21b815260040160405180910390fd5b5f60208284031215610dd4575f5ffd5b81356001600160e01b031981168114610deb575f5ffd5b9392505050565b5f81518084525f5b81811015610e1657602081850181015186830182015201610dfa565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f610deb6020830184610df2565b80356001600160a01b0381168114610e5d575f5ffd5b919050565b5f5f60408385031215610e73575f5ffd5b610e7c83610e47565b946020939093013593505050565b5f5f5f60608486031215610e9c575f5ffd5b610ea584610e47565b9250610eb360208501610e47565b929592945050506040919091013590565b5f60208284031215610ed4575f5ffd5b610deb82610e47565b60ff60f81b8816815260e060208201525f610efb60e0830189610df2565b8281036040840152610f0d8189610df2565b606084018890526001600160a01b038716608085015260a0840186905283810360c0850152845180825260208087019350909101905f5b81811015610f62578351835260209384019390920191600101610f44565b50909b9a5050505050505050505050565b5f5f5f5f5f5f5f60e0888a031215610f89575f5ffd5b610f9288610e47565b9650610fa060208901610e47565b95506040880135945060608801359350608088013560ff81168114610fc3575f5ffd5b9699959850939692959460a0840135945060c09093013592915050565b5f5f60408385031215610ff1575f5ffd5b610ffa83610e47565b915061100860208401610e47565b90509250929050565b600181811c9082168061102557607f821691505b60208210810361104357634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561029f57634e487b7160e01b5f52601160045260245ffd5b634e487b7160e01b5f52602160045260245ffdfea2646970667358221220d895cb27ca655fc0bca22d46d748b4ccfebedc1b70f152cde9fb70fc27d60b6164736f6c634300081c0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 PUSH0 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xFB JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3644E515 GT PUSH2 0x93 JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x63 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x211 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x237 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x3644E515 EQ PUSH2 0x1AB JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1B3 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x1DB JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x1EE JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x18BF5077 GT PUSH2 0xCE JUMPI DUP1 PUSH4 0x18BF5077 EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x176 JUMPI DUP1 PUSH4 0x2B8C49E3 EQ PUSH2 0x189 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x19C JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xFF JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x127 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x13C JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x14F JUMPI JUMPDEST PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0x112 PUSH2 0x10D CALLDATASIZE PUSH1 0x4 PUSH2 0xDC4 JUMP JUMPDEST PUSH2 0x26F JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x12F PUSH2 0x2A5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11E SWAP2 SWAP1 PUSH2 0xE35 JUMP JUMPDEST PUSH2 0x112 PUSH2 0x14A CALLDATASIZE PUSH1 0x4 PUSH2 0xE62 JUMP JUMPDEST PUSH2 0x335 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x11E JUMP JUMPDEST PUSH2 0x174 PUSH2 0x16F CALLDATASIZE PUSH1 0x4 PUSH2 0xE62 JUMP JUMPDEST PUSH2 0x34C JUMP JUMPDEST STOP JUMPDEST PUSH2 0x112 PUSH2 0x184 CALLDATASIZE PUSH1 0x4 PUSH2 0xE8A JUMP JUMPDEST PUSH2 0x3A4 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x197 CALLDATASIZE PUSH1 0x4 PUSH2 0xE62 JUMP JUMPDEST PUSH2 0x3C7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x11E JUMP JUMPDEST PUSH2 0x153 PUSH2 0x417 JUMP JUMPDEST PUSH2 0x153 PUSH2 0x1C1 CALLDATASIZE PUSH1 0x4 PUSH2 0xEC4 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x153 PUSH2 0x1E9 CALLDATASIZE PUSH1 0x4 PUSH2 0xEC4 JUMP JUMPDEST PUSH2 0x425 JUMP JUMPDEST PUSH2 0x1F6 PUSH2 0x442 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11E SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xEDD JUMP JUMPDEST PUSH2 0x12F PUSH2 0x484 JUMP JUMPDEST PUSH2 0x112 PUSH2 0x21F CALLDATASIZE PUSH1 0x4 PUSH2 0xE62 JUMP JUMPDEST PUSH2 0x493 JUMP JUMPDEST PUSH2 0x174 PUSH2 0x232 CALLDATASIZE PUSH1 0x4 PUSH2 0xF73 JUMP JUMPDEST PUSH2 0x4A0 JUMP JUMPDEST PUSH2 0x153 PUSH2 0x245 CALLDATASIZE PUSH1 0x4 PUSH2 0xFE0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH0 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 PUSH0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0xCCCC665 PUSH1 0xE2 SHL EQ DUP1 PUSH2 0x29F 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 0x2B4 SWAP1 PUSH2 0x1011 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 0x2E0 SWAP1 PUSH2 0x1011 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x32B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x302 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x32B JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x30E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x342 DUP2 DUP6 DUP6 PUSH2 0x5DB JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH2 0x355 CALLER PUSH2 0x5ED JUMP JUMPDEST PUSH2 0x35F DUP3 DUP3 PUSH2 0x61F 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 PUSH0 CALLER PUSH2 0x3B1 DUP6 DUP3 DUP6 PUSH2 0x657 JUMP JUMPDEST PUSH2 0x3BC DUP6 DUP6 DUP6 PUSH2 0x6D3 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x3D0 CALLER PUSH2 0x5ED JUMP JUMPDEST PUSH2 0x3DA DUP3 DUP3 PUSH2 0x730 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 0x398 JUMP JUMPDEST PUSH0 PUSH2 0x420 PUSH2 0x764 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH2 0x29F JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 PUSH0 PUSH0 PUSH0 PUSH1 0x60 PUSH2 0x453 PUSH2 0x88D JUMP JUMPDEST PUSH2 0x45B PUSH2 0x8BA JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 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 0x2B4 SWAP1 PUSH2 0x1011 JUMP JUMPDEST PUSH0 CALLER PUSH2 0x342 DUP2 DUP6 DUP6 PUSH2 0x6D3 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x4C9 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 PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x514 DUP13 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH0 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 PUSH0 PUSH2 0x56E DUP3 PUSH2 0x8E7 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x57D DUP3 DUP8 DUP8 DUP8 PUSH2 0x913 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 0x5C4 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 0x4C0 JUMP JUMPDEST PUSH2 0x5CF DUP11 DUP11 DUP11 PUSH2 0x5DB JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x5E8 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x93F 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 0x61C 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 0x648 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH2 0x653 PUSH0 DUP4 DUP4 PUSH2 0xA11 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH0 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 PUSH0 NOT DUP2 LT ISZERO PUSH2 0x6CD JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x6BF 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 0x4C0 JUMP JUMPDEST PUSH2 0x6CD DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x93F JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x6FC JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x725 JUMPI PUSH1 0x40 MLOAD PUSH4 0xEC442F05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH2 0x5E8 DUP4 DUP4 DUP4 PUSH2 0xA11 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x759 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4B637E8F PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH2 0x653 DUP3 PUSH0 DUP4 PUSH2 0xA11 JUMP JUMPDEST PUSH0 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ DUP1 ISZERO PUSH2 0x7BC JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x7E6 JUMPI POP PUSH32 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x420 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 PUSH0 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 0x420 PUSH32 0x0 PUSH1 0x5 PUSH2 0xB37 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x420 PUSH32 0x0 PUSH1 0x6 PUSH2 0xB37 JUMP JUMPDEST PUSH0 PUSH2 0x29F PUSH2 0x8F3 PUSH2 0x764 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 PUSH0 PUSH0 PUSH0 PUSH0 PUSH2 0x923 DUP9 DUP9 DUP9 DUP9 PUSH2 0xBE0 JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x933 DUP3 DUP3 PUSH2 0xCA8 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 0x968 JUMPI PUSH1 0x40 MLOAD PUSH4 0xE602DF05 PUSH1 0xE0 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x991 JUMPI PUSH1 0x40 MLOAD PUSH4 0x4A1406B1 PUSH1 0xE1 SHL DUP2 MSTORE PUSH0 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH0 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 0x6CD 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 0xA03 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 0xA3B JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xA30 SWAP2 SWAP1 PUSH2 0x1049 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP PUSH2 0xAAB SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 DUP2 LT ISZERO PUSH2 0xA8D 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 0x4C0 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH0 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 0xAC7 JUMPI PUSH1 0x2 DUP1 SLOAD DUP3 SWAP1 SUB SWAP1 SSTORE PUSH2 0xAE5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH0 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 0xB2A 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 0xB51 JUMPI PUSH2 0xB4A DUP4 PUSH2 0xD60 JUMP JUMPDEST SWAP1 POP PUSH2 0x29F JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0xB5D SWAP1 PUSH2 0x1011 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 0xB89 SWAP1 PUSH2 0x1011 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xBD4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xBAB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xBD4 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xBB7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH2 0x29F JUMP JUMPDEST PUSH0 DUP1 DUP1 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 GT ISZERO PUSH2 0xC19 JUMPI POP PUSH0 SWAP2 POP PUSH1 0x3 SWAP1 POP DUP3 PUSH2 0xC9E JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH0 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 0xC6A JUMPI RETURNDATASIZE PUSH0 PUSH0 RETURNDATACOPY RETURNDATASIZE PUSH0 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 0xC95 JUMPI POP PUSH0 SWAP3 POP PUSH1 0x1 SWAP2 POP DUP3 SWAP1 POP PUSH2 0xC9E JUMP JUMPDEST SWAP3 POP PUSH0 SWAP2 POP DUP2 SWAP1 POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xCBB JUMPI PUSH2 0xCBB PUSH2 0x1068 JUMP JUMPDEST SUB PUSH2 0xCC4 JUMPI POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xCD8 JUMPI PUSH2 0xCD8 PUSH2 0x1068 JUMP JUMPDEST SUB PUSH2 0xCF6 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 0xD0A JUMPI PUSH2 0xD0A PUSH2 0x1068 JUMP JUMPDEST SUB PUSH2 0xD2B JUMPI PUSH1 0x40 MLOAD PUSH4 0xFCE698F7 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x3 DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0xD3F JUMPI PUSH2 0xD3F PUSH2 0x1068 JUMP JUMPDEST SUB PUSH2 0x653 JUMPI PUSH1 0x40 MLOAD PUSH4 0x35E2F383 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 DUP2 ADD DUP3 SWAP1 MSTORE PUSH1 0x24 ADD PUSH2 0x4C0 JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0xD6C DUP4 PUSH2 0xD9D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE SWAP2 SWAP3 POP PUSH0 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 PUSH0 PUSH1 0xFF DUP3 AND PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x29F JUMPI PUSH1 0x40 MLOAD PUSH4 0x2CD44AC3 PUSH1 0xE2 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xDD4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0xDEB JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE16 JUMPI PUSH1 0x20 DUP2 DUP6 ADD DUP2 ADD MLOAD DUP7 DUP4 ADD DUP3 ADD MSTORE ADD PUSH2 0xDFA JUMP JUMPDEST POP PUSH0 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 PUSH0 PUSH2 0xDEB PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xDF2 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0xE5D JUMPI PUSH0 PUSH0 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE73 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xE7C DUP4 PUSH2 0xE47 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xE9C JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xEA5 DUP5 PUSH2 0xE47 JUMP JUMPDEST SWAP3 POP PUSH2 0xEB3 PUSH1 0x20 DUP6 ADD PUSH2 0xE47 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xED4 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xDEB DUP3 PUSH2 0xE47 JUMP JUMPDEST PUSH1 0xFF PUSH1 0xF8 SHL DUP9 AND DUP2 MSTORE PUSH1 0xE0 PUSH1 0x20 DUP3 ADD MSTORE PUSH0 PUSH2 0xEFB PUSH1 0xE0 DUP4 ADD DUP10 PUSH2 0xDF2 JUMP JUMPDEST DUP3 DUP2 SUB PUSH1 0x40 DUP5 ADD MSTORE PUSH2 0xF0D DUP2 DUP10 PUSH2 0xDF2 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 PUSH0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xF62 JUMPI DUP4 MLOAD DUP4 MSTORE PUSH1 0x20 SWAP4 DUP5 ADD SWAP4 SWAP1 SWAP3 ADD SWAP2 PUSH1 0x1 ADD PUSH2 0xF44 JUMP JUMPDEST POP SWAP1 SWAP12 SWAP11 POP POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0xF89 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xF92 DUP9 PUSH2 0xE47 JUMP JUMPDEST SWAP7 POP PUSH2 0xFA0 PUSH1 0x20 DUP10 ADD PUSH2 0xE47 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 0xFC3 JUMPI PUSH0 PUSH0 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 PUSH0 PUSH0 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xFF1 JUMPI PUSH0 PUSH0 REVERT JUMPDEST PUSH2 0xFFA DUP4 PUSH2 0xE47 JUMP JUMPDEST SWAP2 POP PUSH2 0x1008 PUSH1 0x20 DUP5 ADD PUSH2 0xE47 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x1025 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1043 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x29F JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD8 SWAP6 0xCB 0x27 0xCA PUSH6 0x5FC0BCA22D46 0xD7 BASEFEE 0xB4 0xCC INVALID 0xBE 0xDC SHL PUSH17 0xF152CDE9FB70FC27D60B6164736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"396: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;3979:186::-;;;;;;:::i;:::-;;:::i;2830:97::-;2908:12;;2830:97;;;1756:25:51;;;1744:2;1729:18;2830:97:7;1610:177:51;1336:178:1;;;;;;:::i;:::-;;:::i;:::-;;4757:244:7;;;;;;:::i;:::-;;:::i;1611:184:1:-;;;;;;:::i;:::-;;:::i;1315:84:31:-;;;1390:1;2313:36:51;;2301:2;2286:18;1315:84:31;2171:184:51;2659:112:9;;;:::i;2985:116:7:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3076:18:7;3050:7;3076:18;;;;;;;;;;;;2985:116;2409:143:9;;;;;;:::i;:::-;;:::i;5243:557:19:-;;;:::i;:::-;;;;;;;;;;;;;:::i;1962:93:7:-;;;:::i;3296:178::-;;;;;;:::i;:::-;;:::i;1683:672:9:-;;;;;;:::i;:::-;;:::i;3532:140:7:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3638:18:7;;;3612:7;3638:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3532:140;1026:213:1;1128:4;-1:-1:-1;;;;;;1151:41:1;;-1:-1:-1;;;1151:41:1;;:81;;-1:-1:-1;;;;;;;;;;862: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;3979:186::-;4052:4;735:10:12;4106:31:7;735:10:12;4122:7:7;4131:5;4106:8;:31::i;:::-;-1:-1:-1;4154:4:7;;3979:186;-1:-1:-1;;;3979: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;4757:244:7:-;4844:4;735:10:12;4900:37:7;4916:4;735:10:12;4931:5:7;4900:15;:37::i;:::-;4947:26;4957:4;4963:2;4967:5;4947:9;:26::i;:::-;-1:-1:-1;4990:4:7;;4757:244;-1:-1:-1;;;;4757: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;2659:112:9;2718:7;2744:20;:18;:20::i;:::-;2737:27;;2659:112;:::o;2409:143::-;-1:-1:-1;;;;;624:14:13;;2500:7:9;624:14:13;;;:7;:14;;;;;;2526:19:9;538:107:13;5243:557:19;5341:13;5368:18;5400:21;5435:15;5464:25;5503:12;5529:27;5632:13;:11;:13::i;:::-;5659:16;:14;:16::i;:::-;5767;;;5751:1;5767:16;;;;;;;;;-1:-1:-1;;;5581:212:19;;;-1:-1:-1;5581:212:19;;-1:-1:-1;5689:13:19;;-1:-1:-1;5724:4:19;;-1:-1:-1;5751:1:19;-1:-1:-1;5767:16:19;-1:-1:-1;5581:212:19;-1:-1:-1;5243:557:19:o;1962:93:7:-;2009:13;2041:7;2034:14;;;;;:::i;3296:178::-;3365:4;735:10:12;3419:27:7;735:10:12;3436:2:7;3440:5;3419:9;:27::i;1683:672:9:-;1904:8;1886:15;:26;1882:97;;;1935:33;;-1:-1:-1;;;1935:33:9;;;;;1756:25:51;;;1729:18;;1935:33:9;;;;;;;;1882:97;1989:18;1024:95;2048:5;2055:7;2064:5;2071:16;2081:5;-1:-1:-1;;;;;1121:14:13;819:7;1121:14;;;:7;:14;;;;;:16;;;;;;;;;759:395;2071:16:9;2020: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;;2020:78:9;;;;;;;;;;;;2010:89;;;;;;1989:110;;2110:12;2125:28;2142:10;2125:16;:28::i;:::-;2110:43;;2164:14;2181:28;2195:4;2201:1;2204;2207;2181:13;:28::i;:::-;2164:45;;2233:5;-1:-1:-1;;;;;2223:15:9;:6;-1:-1:-1;;;;;2223:15:9;;2219:88;;2261:35;;-1:-1:-1;;;2261:35:9;;-1:-1:-1;;;;;6450:32:51;;;2261:35:9;;;6432:51:51;6519:32;;6499:18;;;6492:60;6405:18;;2261:35:9;6258:300:51;2219:88:9;2317:31;2326:5;2333:7;2342:5;2317:8;:31::i;:::-;1872:483;;;1683:672;;;;;;;:::o;8707:128:7:-;8791:37;8800:5;8807:7;8816:5;8823:4;8791:8;:37::i;:::-;8707:128;;;:::o;912:145:31:-;-1:-1:-1;;;;;993:33:31;;-1:-1:-1;;;;;993:33:31;989:60;;1035:14;;-1:-1:-1;;;1035:14:31;;;;;;;;;;;989:60;912:145;:::o;7439:208:7:-;-1:-1:-1;;;;;7509:21:7;;7505:91;;7553:32;;-1:-1:-1;;;7553:32:7;;7582:1;7553:32;;;6709:51:51;6682:18;;7553:32:7;6563:203:51;7505:91:7;7605:35;7621:1;7625:7;7634:5;7605:7;:35::i;:::-;7439:208;;:::o;10396:476::-;-1:-1:-1;;;;;3638:18:7;;;10495:24;3638:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;10561:36:7;;10557:309;;;10636:5;10617:16;:24;10613:130;;;10668:60;;-1:-1:-1;;;10668:60:7;;-1:-1:-1;;;;;6991:32:51;;10668:60:7;;;6973:51:51;7040:18;;;7033:34;;;7083:18;;;7076:34;;;6946:18;;10668:60:7;6771:345:51;10613:130:7;10784:57;10793:5;10800:7;10828:5;10809:16;:24;10835:5;10784:8;:57::i;:::-;10485:387;10396:476;;;:::o;5374:300::-;-1:-1:-1;;;;;5457:18:7;;5453:86;;5498:30;;-1:-1:-1;;;5498:30:7;;5525:1;5498:30;;;6709:51:51;6682:18;;5498:30:7;6563:203:51;5453:86:7;-1:-1:-1;;;;;5552:16:7;;5548:86;;5591:32;;-1:-1:-1;;;5591:32:7;;5620:1;5591:32;;;6709:51:51;6682:18;;5591:32:7;6563:203:51;5548:86:7;5643:24;5651:4;5657:2;5661:5;5643:7;:24::i;7965:206::-;-1:-1:-1;;;;;8035:21:7;;8031:89;;8079:30;;-1:-1:-1;;;8079:30:7;;8106:1;8079:30;;;6709:51:51;6682:18;;8079:30:7;6563:203:51;8031:89:7;8129:35;8137:7;8154:1;8158:5;8129: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;;6120:126;6166:13;6198:41;:5;6225:13;6198:26;:41::i;6572:135::-;6621:13;6653:47;:8;6683:16;6653: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;9682:432:7:-;-1:-1:-1;;;;;9794:19:7;;9790:89;;9836:32;;-1:-1:-1;;;9836:32:7;;9865:1;9836:32;;;6709:51:51;6682:18;;9836:32:7;6563:203:51;9790:89:7;-1:-1:-1;;;;;9892:21:7;;9888:90;;9936:31;;-1:-1:-1;;;9936:31:7;;9964:1;9936:31;;;6709:51:51;6682:18;;9936:31:7;6563:203:51;9888:90:7;-1:-1:-1;;;;;9987:18:7;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10032:76;;;;10082:7;-1:-1:-1;;;;;10066:31:7;10075:5;-1:-1:-1;;;;;10066:31:7;;10091:5;10066:31;;;;1756:25:51;;1744:2;1729:18;;1610:177;10066:31:7;;;;;;;;9682:432;;;;:::o;5989:1107::-;-1:-1:-1;;;;;6078:18:7;;6074:540;;6230:5;6214:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6074:540:7;;-1:-1:-1;6074:540:7;;-1:-1:-1;;;;;6288:15:7;;6266:19;6288:15;;;;;;;;;;;6321:19;;;6317:115;;;6367:50;;-1:-1:-1;;;6367:50:7;;-1:-1:-1;;;;;6991:32:51;;6367:50:7;;;6973:51:51;7040:18;;;7033:34;;;7083:18;;;7076:34;;;6946:18;;6367:50:7;6771:345:51;6317:115:7;-1:-1:-1;;;;;6552:15:7;;:9;:15;;;;;;;;;;6570:19;;;;6552:37;;6074:540;-1:-1:-1;;;;;6628:16:7;;6624:425;;6791:12;:21;;;;;;;6624:425;;;-1:-1:-1;;;;;7002:13:7;;:9;:13;;;;;;;;;;:22;;;;;;6624:425;7079:2;-1:-1:-1;;;;;7064:25:7;7073:4;-1:-1:-1;;;;;7064:25:7;;7083:5;7064:25;;;;1756::51;;1744:2;1729:18;;1610:177;7064:25:7;;;;;;;;5989: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\":\"See {IERC20-allowance}.\"},\"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\":\"See {IERC20-balanceOf}.\"},\"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\":\"See {IERC165-supportsInterface}.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `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\":\"shanghai\",\"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\":\"0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a\",\"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP\"]},\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x880da465c203cec76b10d72dbd87c80f387df4102274f23eea1f9c9b0918792b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://399594cd8bb0143bc9e55e0f1d071d0d8c850a394fb7a319d50edd55d9ed822b\",\"dweb:/ipfs/QmbPZzgtT6LEm9CMqWfagQFwETbV1ztpECBB1DtQHrKiRz\"]},\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":{\"keccak256\":\"0x41f6b3b9e030561e7896dbef372b499cc8d418a80c3884a4d65a68f2fdc7493a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://80b0992a11b2fd1f75ced2971696d07bbd1d19ce6761dd50d8b6d48aa435f42a\",\"dweb:/ipfs/QmZDe5xd2gXHjVEjv9t8C1KQ68K5T8qFwdinwQgmP3rF3x\"]},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xe06a3f08a987af6ad2e1c1e774405d4fe08f1694b67517438b467cecf0da0ef7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://df6f0c459663c9858b6cba2cda1d14a7d05a985bed6d2de72bd8e78c25ee79db\",\"dweb:/ipfs/QmeTTxZ7qVk9rjEv2R4CpCwdf8UMCcRqDNMvzNxHc3Fnn9\"]},\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol\":{\"keccak256\":\"0xaa7f0646f49ebe2606eeca169f85c56451bbaeeeb06265fa076a03369a25d1d3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ee931d4e832385765967efe6366dcc6d00d6a2d794f9c66ee38283c03882de9c\",\"dweb:/ipfs/QmR6SkuJGYxpQeLz38rBdghqaWqEPfzUsL9kBoXgEXKtbD\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0x70f2f713b13b7ce4610bcd0ac9fec0f3cc43693b043abcb8dc40a42a726eb330\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c13d13304ac79a83ab1c30168967d19e2203342ebbd6a9bbce4db7550522dcbf\",\"dweb:/ipfs/QmeN5jKMN2vw5bhacr6tkg78afbTTZUeaacNHqjWt4Ew1r\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"keccak256\":\"0x27dbc90e5136ffe46c04f7596fc2dbcc3acebd8d504da3d93fdb8496e6de04f6\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea8b92e4245d75a5579c10f22f118f7b4ba07c57341f181f0b2a85ff8663de3\",\"dweb:/ipfs/Qme3Ss5ByjmkxxkMdLpyu7fQ1PCtjNFH1wEFszt2BZePiG\"]},\"@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\":\"0x81c274a60a7ae232ae3dc9ff3a4011b4849a853c13b0832cd3351bb1bb2f0dae\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9da0c20dc74358a2a76330818f3bac9d1e2ce3371aec847b9cbf5d147fbae4f6\",\"dweb:/ipfs/QmeczhmnFv1hbXKGLwbYXY6Rrytc9a5A2YaRi5QMMgjPnb\"]},\"@openzeppelin/contracts/utils/cryptography/ECDSA.sol\":{\"keccak256\":\"0x69f54c02b7d81d505910ec198c11ed4c6a728418a868b906b4a0cf29946fda84\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8e25e4bdb7ae1f21d23bfee996e22736fc0ab44cfabedac82a757b1edc5623b9\",\"dweb:/ipfs/QmQdWQvB6JCP9ZMbzi8EvQ1PTETqkcTWrbcVurS7DKpa5n\"]},\"@openzeppelin/contracts/utils/cryptography/EIP712.sol\":{\"keccak256\":\"0x0c60057e7351874f086db8dc9291b7ada9ad62cb7725befd2991430d04a74572\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://33cdfd1fc36410d45046f88ff9864350146b194736c32834baa38d99b843ffbe\",\"dweb:/ipfs/QmdVmqgFKjgEBURy4KUwWDA6J1LEg1BKcHcXsx4nkeHAD2\"]},\"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol\":{\"keccak256\":\"0x26670fef37d4adf55570ba78815eec5f31cb017e708f61886add4fc4da665631\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://b16d45febff462bafd8a5669f904796a835baf607df58a8461916d3bf4f08c59\",\"dweb:/ipfs/QmU2eJFpjmT4vxeJWJyLeQb8Xht1kdB8Y6MKLDPFA9WPux\"]},\"@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0xddce8e17e3d3f9ed818b4f4c4478a8262aab8b11ed322f1bf5ed705bb4bd97fa\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8084aa71a4cc7d2980972412a88fe4f114869faea3fefa5436431644eb5c0287\",\"dweb:/ipfs/Qmbqfs5dRdPvHVKY8kTaeyc65NdqXRQwRK7h9s5UJEhD1p\"]},\"@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x79796192ec90263f21b464d5bc90b777a525971d3de8232be80d9c4f9fb353b8\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://f6fda447a62815e8064f47eff0dd1cf58d9207ad69b5d32280f8d7ed1d1e4621\",\"dweb:/ipfs/QmfDRc7pxfaXB2Dh9np5Uf29Na3pQ7tafRS684wd3GLjVL\"]},\"@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\":\"0x219210ae5346737bc86476fbb3a43ab83969dbf6a13175eb3f71facea4d98230\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://3add6c57be09d8efc2c2bcf5c4a4ea61d79ddefa8f0d0e4032a7e41baff92150\",\"dweb:/ipfs/QmQoMXHDhAuAY764mHP2NKSr5tweHT5Ni6FvwL9wmzF2Nz\"]}},\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212208aeb5c6af97fcb76859f4ab1d882554ed23c94f86e8eb9253eb2f7e34422eaaf64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP11 0xEB TLOAD PUSH11 0xF97FCB76859F4AB1D88255 0x4E 0xD2 EXTCODECOPY SWAP5 0xF8 PUSH15 0x8EB9253EB2F7E34422EAAF64736F6C PUSH4 0x4300081C STOP CALLER ","sourceMap":"211:13199:46:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;211:13199:46;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea26469706673582212208aeb5c6af97fcb76859f4ab1d882554ed23c94f86e8eb9253eb2f7e34422eaaf64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP11 0xEB TLOAD PUSH11 0xF97FCB76859F4AB1D88255 0x4E 0xD2 EXTCODECOPY SWAP5 0xF8 PUSH15 0x8EB9253EB2F7E34422EAAF64736F6C PUSH4 0x4300081C STOP CALLER ","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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220d6be0ba6c46740a4b048d5134e8b00db84fd0044b50e93e859ec0a298b34489a64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD6 0xBE SIGNEXTEND 0xA6 0xC4 PUSH8 0x40A4B048D5134E8B STOP 0xDB DUP5 REVERT STOP PREVRANDAO 0xB5 0xE SWAP4 0xE8 MSIZE 0xEC EXP 0x29 DUP12 CALLVALUE BASEFEE SWAP11 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"299:10679:47:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;299:10679:47;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220d6be0ba6c46740a4b048d5134e8b00db84fd0044b50e93e859ec0a298b34489a64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD6 0xBE SIGNEXTEND 0xA6 0xC4 PUSH8 0x40A4B048D5134E8B STOP 0xDB DUP5 REVERT STOP PREVRANDAO 0xB5 0xE SWAP4 0xE8 MSIZE 0xEC EXP 0x29 DUP12 CALLVALUE BASEFEE SWAP11 PUSH5 0x736F6C6343 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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220c592fc63ff7ada7ebbeee1294bce33559046c3144bc08f997968a4bab06bf8ba64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC5 SWAP3 0xFC PUSH4 0xFF7ADA7E 0xBB 0xEE 0xE1 0x29 0x4B 0xCE CALLER SSTORE SWAP1 CHAINID 0xC3 EQ 0x4B 0xC0 DUP16 SWAP10 PUSH26 0x68A4BAB06BF8BA64736F6C634300081C00330000000000000000 ","sourceMap":"151:52659:48:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;151:52659:48;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220c592fc63ff7ada7ebbeee1294bce33559046c3144bc08f997968a4bab06bf8ba64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC5 SWAP3 0xFC PUSH4 0xFF7ADA7E 0xBB 0xEE 0xE1 0x29 0x4B 0xCE CALLER SSTORE SWAP1 CHAINID 0xC3 EQ 0x4B 0xC0 DUP16 SWAP10 PUSH26 0x68A4BAB06BF8BA64736F6C634300081C00330000000000000000 ","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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220098756d8a16b9759b0a24a6db989c6ce646f665090a996ed3cff3985e4fcdfe864736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD DUP8 JUMP 0xD8 LOG1 PUSH12 0x9759B0A24A6DB989C6CE646F PUSH7 0x5090A996ED3CFF CODECOPY DUP6 0xE4 0xFC 0xDF 0xE8 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","sourceMap":"644:26479:49:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;644:26479:49;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220098756d8a16b9759b0a24a6db989c6ce646f665090a996ed3cff3985e4fcdfe864736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 MULMOD DUP8 JUMP 0xD8 LOG1 PUSH12 0x9759B0A24A6DB989C6CE646F PUSH7 0x5090A996ED3CFF CODECOPY DUP6 0xE4 0xFC 0xDF 0xE8 PUSH5 0x736F6C6343 STOP ADDMOD SHR STOP CALLER ","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\":\"shanghai\",\"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":"60556032600b8282823980515f1a607314602657634e487b7160e01b5f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220577f5caba1acdc0f4b52ff6a6208d520719c3ed21d64eb907441177729c72b3f64736f6c634300081c0033","opcodes":"PUSH1 0x55 PUSH1 0x32 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x26 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPI PUSH32 0x5CABA1ACDC0F4B52FF6A6208D520719C3ED21D64EB907441177729C72B3F6473 PUSH16 0x6C634300081C00330000000000000000 ","sourceMap":"536:19028:50:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;536:19028:50;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"730000000000000000000000000000000000000000301460806040525f5ffdfea2646970667358221220577f5caba1acdc0f4b52ff6a6208d520719c3ed21d64eb907441177729c72b3f64736f6c634300081c0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 JUMPI PUSH32 0x5CABA1ACDC0F4B52FF6A6208D520719C3ED21D64EB907441177729C72B3F6473 PUSH16 0x6C634300081C00330000000000000000 ","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\":\"shanghai\",\"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}"}}}}}